Use short form array syntax everywhere
[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 plugin 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 plugin.
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
54 function blackout_install() {
55     register_hook('page_header', 'addon/blackout/blackout.php', 'blackout_redirect');
56 }
57
58 function blackout_uninstall() {
59     unregister_hook('page_header', 'addon/blackout/blackout.php', 'blackout_redirect');
60 }
61 function blackout_redirect ($a, $b) {
62     // if we have a logged in user, don't throw her out
63     if (local_user()) {
64         return true;
65     }
66
67         if (! (version_compare(PHP_VERSION, '5.3.0') >= 0))
68                 return true;
69
70     // else...
71     $mystart = Config::get('blackout','begindate');
72     $myend   = Config::get('blackout','enddate');
73     $myurl   = Config::get('blackout','url');
74     $now = time();
75     $date1 = DateTime::createFromFormat('Y-m-d G:i', $mystart);
76     $date2 = DateTime::createFromFormat('Y-m-d G:i', $myend);
77     if ( $date1 && $date2 ) {
78         $date1 = DateTime::createFromFormat('Y-m-d G:i', $mystart)->format('U');
79         $date2 = DateTime::createFromFormat('Y-m-d G:i', $myend)->format('U');
80     } else {
81            $date1 = 0;
82            $date2 = 0;
83     }
84     if (( $date1 <= $now ) && ( $now <= $date2 )) {
85         logger('redirecting user to blackout page');
86         goaway($myurl);
87     }
88 }
89
90 function blackout_plugin_admin(&$a, &$o) {
91     $mystart = Config::get('blackout','begindate');
92     if (! is_string($mystart)) { $mystart = "YYYY-MM-DD:hhmm"; }
93     $myend   = Config::get('blackout','enddate');
94     if (! is_string($myend)) { $myend = "YYYY-MM-DD:hhmm"; }
95     $myurl   = Config::get('blackout','url');
96     if (! is_string($myurl)) { $myurl = "http://www.example.com"; }
97     $t = get_markup_template( "admin.tpl", "addon/blackout/" );
98
99    $o = replace_macros($t, [
100         '$submit' => t('Save Settings'),
101         '$rurl' => ["rurl", "Redirect URL", $myurl, "all your visitors from the web will be redirected to this URL"],
102         '$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"],
103         '$enddate' => ["enddate", "End of the Blackout<br />(YYYY-MM-DD hh:mm)", $myend, ""],
104
105     ]);
106     $date1 = DateTime::createFromFormat('Y-m-d G:i', $mystart);
107     $date2 = DateTime::createFromFormat('Y-m-d G:i', $myend);
108     if ($date2 < $date1) {
109         $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;
110     } else {
111         $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;
112     }
113 }
114 function blackout_plugin_admin_post (&$a) {
115     $begindate = trim($_POST['startdate']);
116     $enddate = trim($_POST['enddate']);
117     $url = trim($_POST['rurl']);
118     Config::set('blackout','begindate',$begindate);
119     Config::set('blackout','enddate',$enddate);
120     Config::set('blackout','url',$url);
121 }