Merge branch '3.6-rc'
[friendica-addons.git] / blackout / blackout.php
1 <?php
2 /**
3  * Name: blackout
4  * Description: Blackout your ~friendica node during a given period, requires PHP >= 5.3
5  * License: MIT
6  * Version: 1.0
7  * Author: Tobias Diekershoff <https://f.diekershoff.de/~tobias>
8  *
9  * About
10  * =====
11  *
12  * This addon will allow you to enter a date/time period during which
13  * all your ~friendica visitors from the web will be redirected to a page
14  * you can configure in the admin panel as well.
15  *
16  * Calls to the API and the communication with other ~friendica nodes is
17  * not effected from this addon.
18  *
19  * If you enter a period the current date would be affected none of the
20  * currently logged in users will be effected as well. But if they log
21  * out they can't login again. That way you dear admin can double check
22  * the entered time periode and fix typos without having to hack the
23  * database directly.
24  *
25  * Requirements
26  * ============
27  *
28  * THIS ADDON REQUIRES PHP VERSION 5.3 OR HIGHER.
29  *
30  * License
31  * =======
32  *
33  * Permission is hereby granted, free of charge, to any person obtaining a copy
34  * of this software and associated documentation files (the "Software"), to deal
35  * in the Software without restriction, including without limitation the rights
36  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
37  * copies of the Software, and to permit persons to whom the Software is
38  * furnished to do so, subject to the following conditions:
39  * 
40  * The above copyright notice and this permission notice shall be included in
41  * all copies or substantial portions of the Software.
42  * 
43  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
44  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
45  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
46  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
47  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
48  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
49  * THE SOFTWARE.
50  */
51
52 use Friendica\Core\Config;
53 use Friendica\Core\Addon;
54 use Friendica\Core\L10n;
55
56 function blackout_install() {
57     Addon::registerHook('page_header', 'addon/blackout/blackout.php', 'blackout_redirect');
58 }
59
60 function blackout_uninstall() {
61     Addon::unregisterHook('page_header', 'addon/blackout/blackout.php', 'blackout_redirect');
62 }
63 function blackout_redirect ($a, $b) {
64     // if we have a logged in user, don't throw her out
65     if (local_user()) {
66         return true;
67     }
68
69         if (! (version_compare(PHP_VERSION, '5.3.0') >= 0))
70                 return true;
71
72     // else...
73     $mystart = get_config('blackout','begindate');
74     $myend   = get_config('blackout','enddate');
75     $myurl   = get_config('blackout','url');
76     $now = time();
77     $date1 = DateTime::createFromFormat('Y-m-d G:i', $mystart);
78     $date2 = DateTime::createFromFormat('Y-m-d G:i', $myend);
79     if ( $date1 && $date2 ) {
80         $date1 = DateTime::createFromFormat('Y-m-d G:i', $mystart)->format('U');
81         $date2 = DateTime::createFromFormat('Y-m-d G:i', $myend)->format('U');
82     } else {
83            $date1 = 0;
84            $date2 = 0;
85     }
86     if (( $date1 <= $now ) && ( $now <= $date2 )) {
87         logger('redirecting user to blackout page');
88         goaway($myurl);
89     }
90 }
91
92 function blackout_addon_admin(&$a, &$o) {
93     $mystart = Config::get('blackout','begindate');
94     if (! is_string($mystart)) { $mystart = "YYYY-MM-DD:hhmm"; }
95     $myend   = get_config('blackout','enddate');
96     if (! is_string($myend)) { $myend = "YYYY-MM-DD:hhmm"; }
97     $myurl   = get_config('blackout','url');
98     if (! is_string($myurl)) { $myurl = "http://www.example.com"; }
99     $t = get_markup_template( "admin.tpl", "addon/blackout/" );
100
101    $o = replace_macros($t, [
102         '$submit' => L10n::t('Save Settings'),
103         '$rurl' => ["rurl", "Redirect URL", $myurl, "all your visitors from the web will be redirected to this URL"],
104         '$startdate' => ["startdate", "Begin of the Blackout<br />(YYYY-MM-DD hh:mm)", $mystart, "format is <em>YYYY</em> year, <em>MM</em> month, <em>DD</em> day, <em>hh</em> hour and <em>mm</em> minute"],
105         '$enddate' => ["enddate", "End of the Blackout<br />(YYYY-MM-DD hh:mm)", $myend, ""],
106
107     ));
108     $date1 = DateTime::createFromFormat('Y-m-d G:i', $mystart);
109     $date2 = DateTime::createFromFormat('Y-m-d G:i', $myend);
110     if ($date2 < $date1) {
111         $o = "<div style='border: 2px solid #f00; bakckground: #b00; text-align: center; padding: 10px; margin: 30px;'>The end-date is prior to the start-date of the blackout, you should fix this.</div>" . $o;
112     } else {
113         $o = '<p>Please double check that the current settings for the blackout. Begin will be <strong>'.$mystart.'</strong> and it will end <strong>'.$myend.'</strong>.</p>' . $o;
114     }
115 }
116 function blackout_addon_admin_post (&$a) {
117     $begindate = trim($_POST['startdate']);
118     $enddate = trim($_POST['enddate']);
119     $url = trim($_POST['rurl']);
120     set_config('blackout','begindate',$begindate);
121     set_config('blackout','enddate',$enddate);
122     set_config('blackout','url',$url);
123 }