xref: /plugin/publish/action/mail.php (revision 4f5c41dbbc82a54ccf394d4ced65a14581293477)
1698cf656SMichael Große<?php
2698cf656SMichael Große/**
3698cf656SMichael Große * @license GNU General Public License, version 2
4698cf656SMichael Große */
5698cf656SMichael Große
6698cf656SMichael Große
7698cf656SMichael Großeif (!defined('DOKU_INC')) die();
8698cf656SMichael Große
9698cf656SMichael Große
10698cf656SMichael Große/**
11698cf656SMichael Große * Class action_plugin_publish_mail
12698cf656SMichael Große *
13698cf656SMichael Große * @author Michael Große <grosse@cosmocode.de>
14698cf656SMichael Große */
15698cf656SMichael Großeclass action_plugin_publish_mail extends DokuWiki_Action_Plugin {
16698cf656SMichael Große
17a9071e04SMichael Große    /**
18a9071e04SMichael Große     * @var helper_plugin_publish
19a9071e04SMichael Große     */
20a9071e04SMichael Große    private $hlp;
21a9071e04SMichael Große
22a9071e04SMichael Große    function __construct() {
23a9071e04SMichael Große        $this->hlp = plugin_load('helper','publish');
24a9071e04SMichael Große    }
25a9071e04SMichael Große
26698cf656SMichael Große    public function register(Doku_Event_Handler $controller) {
27698cf656SMichael Große
28698cf656SMichael Große        $controller->register_hook('IO_WIKIPAGE_WRITE', 'AFTER', $this, 'send_change_mail', array());
29698cf656SMichael Große    }
30698cf656SMichael Große
31*4f5c41dbSMichael Große    /**
32*4f5c41dbSMichael Große     * send an email to inform about a changed page
33*4f5c41dbSMichael Große     *
34*4f5c41dbSMichael Große     * @param $event
35*4f5c41dbSMichael Große     * @param $param
36*4f5c41dbSMichael Große     * @return bool|mixed
37*4f5c41dbSMichael Große     */
38698cf656SMichael Große    function send_change_mail(&$event, $param) {
39698cf656SMichael Große        global $ID;
40698cf656SMichael Große        global $ACT;
41698cf656SMichael Große        global $INFO;
42698cf656SMichael Große        $data = pageinfo();
43698cf656SMichael Große
44698cf656SMichael Große        if ($ACT != 'save') {
45698cf656SMichael Große            return true;
46698cf656SMichael Große        }
478bc37331SMichael Große
488bc37331SMichael Große        // IO_WIKIPAGE_WRITE is always called twice when saving a page. This makes sure to only send the mail once.
49698cf656SMichael Große        if (!$event->data[3]) {
50698cf656SMichael Große            return true;
51698cf656SMichael Große        }
52698cf656SMichael Große
538bc37331SMichael Große        // Does the publish plugin apply to this page?
548bc37331SMichael Große        if (!$this->hlp->isActive($ID)) {
558bc37331SMichael Große            return true;
568bc37331SMichael Große        }
578bc37331SMichael Große
588bc37331SMichael Große        //are we supposed to send change-mails at all?
598bc37331SMichael Große        if (!$this->getConf('send_mail_on_change')) {
608bc37331SMichael Große            return true;
618bc37331SMichael Große        }
628bc37331SMichael Große
63698cf656SMichael Große        // get mail receiver
64698cf656SMichael Große        $receiver = $this->getConf('apr_mail_receiver');
65698cf656SMichael Große
66698cf656SMichael Große        // get mail sender
67698cf656SMichael Große        $sender = $data['userinfo']['mail'];
68698cf656SMichael Große
69698cf656SMichael Große        if ($sender == $receiver) {
709e614880SMichael Große            dbglog('[publish plugin]: Mail not send. Sender and receiver are identical.');
719e614880SMichael Große            return true;
72698cf656SMichael Große        }
73698cf656SMichael Große
74698cf656SMichael Große        if ($INFO['isadmin'] == '1') {
759e614880SMichael Große            dbglog('[publish plugin]: Mail not send. Sender is admin.');
769e614880SMichael Große            return true;
77698cf656SMichael Große        }
78698cf656SMichael Große
79698cf656SMichael Große        // get mail subject
80698cf656SMichael Große        $timestamp = $data['lastmod'];
81*4f5c41dbSMichael Große        $datum = dformat("d.m.Y",$timestamp);
82*4f5c41dbSMichael Große        $uhrzeit = dformat("H:i",$timestamp);
83698cf656SMichael Große        $subject = $this->getLang('apr_mail_subject') . ': ' . $ID . ' - ' . $datum . ' ' . $uhrzeit;
84698cf656SMichael Große        dbglog($subject);
85698cf656SMichael Große
86e6206222SMichael Große        $body = $this->create_mail_body('change');
87698cf656SMichael Große
8812699d35SMichael Große        dbglog('mail_send?');
8912699d35SMichael Große        $returnStatus = mail_send($receiver, $subject, $body, $sender);
9012699d35SMichael Große        dbglog($returnStatus);
9112699d35SMichael Große        dbglog($body);
9212699d35SMichael Große        return $returnStatus;
93698cf656SMichael Große    }
94698cf656SMichael Große
95e6206222SMichael Große    /**
96e6206222SMichael Große     * Create the body of mails to inform about a changed or an approved page
97e6206222SMichael Große     *
98e6206222SMichael Große     * @param string $action Must either be "change" or "approve"
99e6206222SMichael Große     * @return bool|string
100e6206222SMichael Große     * @internal param $pageinfo
101e6206222SMichael Große     */
102e6206222SMichael Große    public function create_mail_body($action) {
103e6206222SMichael Große        global $ID;
1048ff23e7fSMichael Große        global $conf;
105e6206222SMichael Große        $pageinfo = pageinfo();
106bc4555caSMichael Große
1078ff23e7fSMichael Große        // get mail text
1088ff23e7fSMichael Große        $body = $this->getLang('mail_greeting') . "\n";
1098ff23e7fSMichael Große        $rev = $pageinfo['lastmod'];
1108ff23e7fSMichael Große
111bc4555caSMichael Große        if ($action === 'change') {
112bc4555caSMichael Große            $body .= $this->getLang('mail_new_suggestiopns') . "\n\n";
113bc4555caSMichael Große
1148ff23e7fSMichael Große            //If there is no approved revision show the diff to the revision before. Otherwise show the diff to the last approved revision.
1158ff23e7fSMichael Große            if($this->hlp->hasApprovals($pageinfo['meta'])) {
1168ff23e7fSMichael Große                $body .= $this->getLang('mail_changes_to_approved_rev') . "\n\n";
117e6206222SMichael Große                $difflink = $this->hlp->getDifflink($ID, $this->hlp->getLatestApprovedRevision($ID), $rev);
1188ff23e7fSMichael Große            } else {
1198ff23e7fSMichael Große                $body .= $this->getLang('mail_changes_to_previous_rev') . "\n\n";
120e6206222SMichael Große                $changelog = new PageChangelog($ID);
1218ff23e7fSMichael Große                $prevrev = $changelog->getRelativeRevision($rev, -1);
122e6206222SMichael Große                $difflink = $this->hlp->getDifflink($ID, $prevrev, $rev);
1238ff23e7fSMichael Große            }
1248ff23e7fSMichael Große            $body = str_replace('@CHANGES@', $difflink, $body);
125e6206222SMichael Große            $apprejlink = $this->apprejlink($ID, $rev);
126bc4555caSMichael Große            $body = str_replace('@URL@', $apprejlink, $body);
127bc4555caSMichael Große        } elseif ($action === 'approve') {
128bc4555caSMichael Große            $body .= $this->getLang('mail_approved') . "\n\n";
129e6206222SMichael Große            $apprejlink = $this->apprejlink($ID, $rev);
130bc4555caSMichael Große            $body = str_replace('@URL@', $apprejlink, $body);
131bc4555caSMichael Große        } else {
132bc4555caSMichael Große            return false;
133bc4555caSMichael Große        }
134bc4555caSMichael Große
135bc4555caSMichael Große        $body .= $this->getLang('mail_dw_signature');
1368ff23e7fSMichael Große
1378ff23e7fSMichael Große        $body = str_replace('@DOKUWIKIURL@', DOKU_URL, $body);
1388ff23e7fSMichael Große        $body = str_replace('@FULLNAME@', $pageinfo['userinfo']['name'], $body);
1398ff23e7fSMichael Große        $body = str_replace('@TITLE@', $conf['title'], $body);
1408ff23e7fSMichael Große
1418ff23e7fSMichael Große        return $body;
1428ff23e7fSMichael Große    }
1438ff23e7fSMichael Große
1448ff23e7fSMichael Große
1459e614880SMichael Große
1469e614880SMichael Große    /**
1479e614880SMichael Große     * Send approve-mail to editor of the now approved revision
1489e614880SMichael Große     *
1499e614880SMichael Große     * @return mixed
1509e614880SMichael Große     */
15119a54b91SMichael Große    public function send_approve_mail() {
15219a54b91SMichael Große        global $ID;
15319a54b91SMichael Große        global $REV;
1548cd8852aSMichael Große
1558cd8852aSMichael Große        /** @var DokuWiki_Auth_Plugin $auth */
1568cd8852aSMichael Große        global $auth;
157698cf656SMichael Große        $data = pageinfo();
15819a54b91SMichael Große
15919a54b91SMichael Große        // get mail receiver
1608cd8852aSMichael Große        $changelog = new PageChangelog($ID);
1618cd8852aSMichael Große        $revinfo = $changelog->getRevisionInfo($REV);
1628cd8852aSMichael Große        $userinfo = $auth->getUserData($revinfo['user']);
1638cd8852aSMichael Große        $receiver = $userinfo['mail'];
164bc4555caSMichael Große
16519a54b91SMichael Große        // get mail sender
16619a54b91SMichael Große        $sender = $data['userinfo']['mail'];
167bc4555caSMichael Große
16819a54b91SMichael Große        // get mail subject
16919a54b91SMichael Große        $subject = $this->getLang('apr_mail_app_subject');
170698cf656SMichael Große
171bc4555caSMichael Große        // get mail text
172e6206222SMichael Große        $body = $this->create_mail_body('approve');
17319a54b91SMichael Große
17419a54b91SMichael Große        return mail_send($receiver, $subject, $body, $sender);
175698cf656SMichael Große    }
176698cf656SMichael Große
177698cf656SMichael Große    /**
178698cf656SMichael Große     * erzeugt den Link auf die edit-Seite
179698cf656SMichael Große     *
180698cf656SMichael Große     * @param $id
181698cf656SMichael Große     * @param $rev
182846d3071SMichael Große     * @return string
183698cf656SMichael Große     */
184698cf656SMichael Große    function apprejlink($id, $rev) {
185698cf656SMichael Große
186698cf656SMichael Große        $options = array(
187698cf656SMichael Große             'rev'=> $rev,
188698cf656SMichael Große        );
189846d3071SMichael Große        $apprejlink = wl($id, $options, true, '&');
190698cf656SMichael Große
191846d3071SMichael Große        return $apprejlink;
192698cf656SMichael Große    }
193698cf656SMichael Große
194698cf656SMichael Große}
195