10 sub userinfo_retrieve () { #{{{
11 my $userinfo=eval{ Storable::lock_retrieve("$config{wikistatedir}/userdb") };
15 sub userinfo_store ($) { #{{{
18 my $newfile="$config{wikistatedir}/userdb.new";
19 my $oldmask=umask(077);
20 my $ret=Storable::lock_store($userinfo, $newfile);
22 if (defined $ret && $ret) {
23 if (! rename($newfile, "$config{wikistatedir}/userdb")) {
31 sub userinfo_get ($$) { #{{{
35 my $userinfo=userinfo_retrieve();
36 if (! defined $userinfo ||
37 ! exists $userinfo->{$user} || ! ref $userinfo->{$user} ||
38 ! exists $userinfo->{$user}->{$field}) {
41 return $userinfo->{$user}->{$field};
44 sub userinfo_set ($$$) { #{{{
49 my $userinfo=userinfo_retrieve();
50 if (! defined $userinfo ||
51 ! exists $userinfo->{$user} || ! ref $userinfo->{$user}) {
55 $userinfo->{$user}->{$field}=$value;
56 return userinfo_store($userinfo);
59 sub userinfo_setall ($$) { #{{{
63 my $userinfo=userinfo_retrieve();
64 if (! defined $userinfo) {
67 $userinfo->{$user}=$info;
68 return userinfo_store($userinfo);
71 sub is_admin ($) { #{{{
74 return grep { $_ eq $user_name } @{$config{adminuser}};
77 sub get_banned_users () { #{{{
79 my $userinfo=userinfo_retrieve();
80 foreach my $user (keys %{$userinfo}) {
81 push @ret, $user if $userinfo->{$user}->{banned};
86 sub set_banned_users (@) { #{{{
87 my %banned=map { $_ => 1 } @_;
88 my $userinfo=userinfo_retrieve();
89 foreach my $user (keys %{$userinfo}) {
90 $userinfo->{$user}->{banned} = $banned{$user};
92 return userinfo_store($userinfo);
95 sub commit_notify_list ($@) { #{{{
99 foreach my $file (@_) {
100 push @pages, grep { $pagesources{$_} eq $file } keys %pagesources;
104 my $userinfo=userinfo_retrieve();
105 foreach my $user (keys %{$userinfo}) {
106 next if $user eq $committer;
107 if (exists $userinfo->{$user}->{subscriptions} &&
108 length $userinfo->{$user}->{subscriptions} &&
109 exists $userinfo->{$user}->{email} &&
110 length $userinfo->{$user}->{email} &&
111 grep { pagespec_match($_, $userinfo->{$user}->{subscriptions}, "") } @pages) {
112 push @ret, $userinfo->{$user}->{email};
118 sub send_commit_mails ($$$@) { #{{{
119 my $messagesub=shift;
122 my @changed_pages=@_;
124 return unless @changed_pages;
126 my @email_recipients=commit_notify_list($user, @changed_pages);
127 if (@email_recipients) {
128 # TODO: if a commit spans multiple pages, this will send
129 # subscribers a diff that might contain pages they did not
130 # sign up for. Should separate the diff per page and
131 # reassemble into one mail with just the pages subscribed to.
132 my $diff=$diffsub->();
133 my $message=$messagesub->();
136 if (@changed_pages > 2) {
137 $pagelist="$changed_pages[0] $changed_pages[1] ...";
140 $pagelist.=join(" ", @changed_pages);
142 #translators: The three variables are the name of the wiki,
143 #translators: A list of one or more pages that were changed,
144 #translators: And the name of the user making the change.
145 #translators: This is used as the subject of a commit email.
146 my $subject=sprintf(gettext("update of %s's %s by %s"),
147 $config{wikiname}, $pagelist, $user);
149 my $template=template("notifymail.tmpl");
151 wikiname => $config{wikiname},
157 # Daemonize, in case the mail sending takes a while.
158 defined(my $pid = fork) or error("Can't fork: $!");
160 setsid() or error("Can't start a new session: $!");
162 open STDIN, '/dev/null';
163 open STDOUT, '>/dev/null';
164 open STDERR, '>&STDOUT' or error("Can't dup stdout: $!");
166 unlockwiki(); # don't need to keep a lock on the wiki
168 eval q{use Mail::Sendmail};
170 foreach my $email (@email_recipients) {
173 From => "$config{wikiname} <$config{adminemail}>",
175 Message => $template->output,
179 exit 0; # daemon process done