summaryrefslogtreecommitdiff
path: root/plugins/newmail_notifier/newmail_notifier.php
blob: a72d728dcb2e7da67b27ac36c717ebac432100d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php

/**
 * New Mail Notifier plugin
 *
 * Supports two methods of notification:
 * 1. Basic - focus browser window and change favicon
 * 2. Sound - play wav file
 *
 * @version 0.2
 * @author Aleksander Machniak <alec@alec.pl>
 *
 *
 * Copyright (C) 2011, Kolab Systems AG
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

class newmail_notifier extends rcube_plugin
{
    public $task = 'mail|settings';

    private $rc;

    /**
     * Plugin initialization
     */
    function init()
    {
        $this->rc = rcmail::get_instance();

        // Preferences hooks
        if ($this->rc->task == 'settings') {
            $this->add_hook('preferences_list', array($this, 'prefs_list'));
            $this->add_hook('preferences_save', array($this, 'prefs_save'));
        }
        else { // if ($this->rc->task == 'mail') {
            $this->add_hook('new_messages', array($this, 'notify'));
            // add script when not in ajax and not in frame
            if (is_a($this->rc->output, 'rcube_template') && empty($_REQUEST['_framed'])) {
                $this->include_script('newmail_notifier.js');
            }
        }
    }

    /**
     * Handler for user preferences form (preferences_list hook)
     */
    function prefs_list($args)
    {
        if ($args['section'] != 'mailbox') {
            return $args;
        }

        // Load configuration
        $this->load_config();

        // Load localization and configuration
        $this->add_texts('localization/');

        // Check that configuration is not disabled
        $dont_override  = (array) $this->rc->config->get('dont_override', array());
        $basic_override = in_array('newmail_notifier_basic', $dont_override);
        $sound_override = in_array('newmail_notifier_sound', $dont_override);

        if (!$basic_override) {
            $field_id = '_newmail_notifier_basic';
            $input    = new html_checkbox(array('name' => $field_id, 'id' => $field_id, 'value' => 1));
            $args['blocks']['new_message']['options']['newmail_notifier_basic'] = array(
                'title' => html::label($field_id, Q($this->gettext('basic'))),
                'content' => $input->show($this->rc->config->get('newmail_notifier_basic')),
            );
        }

        if (!$sound_override) {
            $field_id = '_newmail_notifier_sound';
            $input    = new html_checkbox(array('name' => $field_id, 'id' => $field_id, 'value' => 1));
            $args['blocks']['new_message']['options']['newmail_notifier_sound'] = array(
                'title' => html::label($field_id, Q($this->gettext('sound'))),
                'content' => $input->show($this->rc->config->get('newmail_notifier_sound')),
            );
        }

        return $args;
    }

    /**
     * Handler for user preferences save (preferences_save hook)
     */
    function prefs_save($args)
    {
        if ($args['section'] != 'mailbox') {
            return $args;
        }

        // Load configuration
        $this->load_config();

        // Check that configuration is not disabled
        $dont_override  = (array) $this->rc->config->get('dont_override', array());
        $basic_override = in_array('newmail_notifier_basic', $dont_override);
        $sound_override = in_array('newmail_notifier_sound', $dont_override);

        if (!$basic_override) {
            $key = 'newmail_notifier_basic';
            $args['prefs'][$key] = get_input_value('_'.$key, RCUBE_INPUT_POST) ? true : false;
        }
        if (!$sound_override) {
            $key = 'newmail_notifier_sound';
            $args['prefs'][$key] = get_input_value('_'.$key, RCUBE_INPUT_POST) ? true : false;
        }

        return $args;
    }

    /**
     * Handler for new message action (new_messages hook)
     */
    function notify($args)
    {
        // Load configuration
        $this->load_config();

        $basic = $this->rc->config->get('newmail_notifier_basic');
        $sound = $this->rc->config->get('newmail_notifier_sound');

        if ($basic || $sound) {
            $this->rc->output->command('plugin.newmail_notifier',
                array('basic' => $basic, 'sound' => $sound));
        }

        return $args;
    }
}