]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - scripts/xmppconfirmhandler.php
217481d658827af8758558dd962401fa38f75df1
[quix0rs-gnu-social.git] / scripts / xmppconfirmhandler.php
1 #!/usr/bin/env php
2 <?php
3 /*
4  * Laconica - a distributed open-source microblogging tool
5  * Copyright (C) 2008, 2009, Control Yourself, Inc.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 # Abort if called from a web server
22 if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
23     print "This script must be run from the command line\n";
24     exit();
25 }
26
27 define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
28 define('LACONICA', true);
29
30 // Preset the server at the command line
31
32 $server = ($argc > 2) ? $argv[2] : null;
33 $path   = ($argc > 3) ? $argv[3] : null;
34
35 require_once(INSTALLDIR . '/lib/common.php');
36 require_once(INSTALLDIR . '/lib/jabber.php');
37 require_once(INSTALLDIR . '/lib/xmppqueuehandler.php');
38
39 set_error_handler('common_error_handler');
40
41 define('CLAIM_TIMEOUT', 1200);
42
43 class XmppConfirmHandler extends XmppQueueHandler
44 {
45
46     var $_id = 'confirm';
47
48     function class_name()
49     {
50         return 'XmppConfirmHandler';
51     }
52
53     function run()
54     {
55         if (!$this->start()) {
56             return false;
57         }
58         $this->log(LOG_INFO, 'checking for queued confirmations');
59         do {
60             $confirm = $this->next_confirm();
61             if ($confirm) {
62                 $this->log(LOG_INFO, 'Sending confirmation for ' . $confirm->address);
63                 $user = User::staticGet($confirm->user_id);
64                 if (!$user) {
65                     $this->log(LOG_WARNING, 'Confirmation for unknown user ' . $confirm->user_id);
66                     continue;
67                 }
68                 $success = jabber_confirm_address($confirm->code,
69                                                   $user->nickname,
70                                                   $confirm->address);
71                 if (!$success) {
72                     $this->log(LOG_ERR, 'Confirmation failed for ' . $confirm->address);
73                     # Just let the claim age out; hopefully things work then
74                     continue;
75                 } else {
76                     $this->log(LOG_INFO, 'Confirmation sent for ' . $confirm->address);
77                     # Mark confirmation sent; need a dupe so we don't have the WHERE clause
78                     $dupe = Confirm_address::staticGet('code', $confirm->code);
79                     if (!$dupe) {
80                         common_log(LOG_WARNING, 'Could not refetch confirm', __FILE__);
81                         continue;
82                     }
83                     $orig = clone($dupe);
84                     $dupe->sent = $dupe->claimed;
85                     $result = $dupe->update($orig);
86                     if (!$result) {
87                         common_log_db_error($dupe, 'UPDATE', __FILE__);
88                         # Just let the claim age out; hopefully things work then
89                         continue;
90                     }
91                     $dupe->free();
92                     unset($dupe);
93                 }
94                 $user->free();
95                 unset($user);
96                 $confirm->free();
97                 unset($confirm);
98                 $this->idle(0);
99             } else {
100 #                $this->clear_old_confirm_claims();
101                 $this->idle(10);
102             }
103         } while (true);
104         if (!$this->finish()) {
105             return false;
106         }
107         return true;
108     }
109
110     function next_confirm()
111     {
112         $confirm = new Confirm_address();
113         $confirm->whereAdd('claimed IS null');
114         $confirm->whereAdd('sent IS null');
115         # XXX: eventually we could do other confirmations in the queue, too
116         $confirm->address_type = 'jabber';
117         $confirm->orderBy('modified DESC');
118         $confirm->limit(1);
119         if ($confirm->find(true)) {
120             $this->log(LOG_INFO, 'Claiming confirmation for ' . $confirm->address);
121                 # working around some weird DB_DataObject behaviour
122             $confirm->whereAdd(''); # clears where stuff
123             $original = clone($confirm);
124             $confirm->claimed = common_sql_now();
125             $result = $confirm->update($original);
126             if ($result) {
127                 $this->log(LOG_INFO, 'Succeeded in claim! '. $result);
128                 return $confirm;
129             } else {
130                 $this->log(LOG_INFO, 'Failed in claim!');
131                 return false;
132             }
133         }
134         return null;
135     }
136
137     function clear_old_confirm_claims()
138     {
139         $confirm = new Confirm();
140         $confirm->claimed = null;
141         $confirm->whereAdd('now() - claimed > '.CLAIM_TIMEOUT);
142         $confirm->update(DB_DATAOBJECT_WHEREADD_ONLY);
143         $confirm->free();
144         unset($confirm);
145     }
146 }
147
148 // Abort immediately if xmpp is not enabled, otherwise the daemon chews up
149 // lots of CPU trying to connect to unconfigured servers
150 if (common_config('xmpp','enabled')==false) {
151     print "Aborting daemon - xmpp is disabled\n";
152     exit();
153 }
154
155 ini_set("max_execution_time", "0");
156 ini_set("max_input_time", "0");
157 set_time_limit(0);
158 mb_internal_encoding('UTF-8');
159
160 $resource = ($argc > 1) ? $argv[1] : (common_config('xmpp', 'resource').'-confirm');
161
162 $handler = new XmppConfirmHandler($resource);
163
164 $handler->runOnce();
165