]> git.mxchange.org Git - friendica-addons.git/blob - testdrive/testdrive.php
Use short form array syntax everywhere
[friendica-addons.git] / testdrive / testdrive.php
1 <?php
2
3 /**
4  * Name: testdrive
5  * Description: Sample Friendica plugin/addon for creating a test drive Friendica site with automatic account expiration.
6  * Version: 1.0
7  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
8  */
9
10 use Friendica\Core\Config;
11 use Friendica\Model\User;
12
13
14 function testdrive_install() {
15
16         register_hook('register_account', 'addon/testdrive/testdrive.php', 'testdrive_register_account');
17         register_hook('cron', 'addon/testdrive/testdrive.php', 'testdrive_cron');
18         register_hook('enotify','addon/testdrive/testdrive.php', 'testdrive_enotify');
19         register_hook('globaldir_update','addon/testdrive/testdrive.php', 'testdrive_globaldir_update');
20
21 }
22
23
24 function testdrive_uninstall() {
25
26         unregister_hook('register_account', 'addon/testdrive/testdrive.php', 'testdrive_register_account');
27         unregister_hook('cron', 'addon/testdrive/testdrive.php', 'testdrive_cron');
28         unregister_hook('enotify','addon/testdrive/testdrive.php', 'testdrive_enotify');
29         unregister_hook('globaldir_update','addon/testdrive/testdrive.php', 'testdrive_globaldir_update');
30
31 }
32
33 function testdrive_globaldir_update($a,&$b) {
34         $b['url'] = '';
35 }
36
37 function testdrive_register_account($a,$b) {
38
39         $uid = $b;
40
41         $days = Config::get('testdrive','expiredays');
42         if(! $days)
43                 return;
44
45         $r = q("UPDATE user set account_expires_on = '%s' where uid = %d",
46                 dbesc(datetime_convert('UTC','UTC','now +' . $days . ' days')),
47                 intval($uid)
48         );
49
50 };
51
52
53 function testdrive_cron($a,$b) {
54         require_once('include/enotify.php');
55
56         $r = q("select * from user where account_expires_on < UTC_TIMESTAMP() + INTERVAL 5 DAY and
57                 expire_notification_sent = '0000-00-00 00:00:00' ");
58
59         if(count($r)) {
60                 foreach($r as $rr) {
61                         notification([
62                                 'uid' => $rr['uid'],
63                                 'type' => NOTIFY_SYSTEM,
64                                 'system_type' => 'testdrive_expire',
65                                 'language'     => $rr['language'],
66                                 'to_name'      => $rr['username'],
67                                 'to_email'     => $rr['email'],
68                                 'source_name'  => t('Administrator'),
69                                 'source_link'  => $a->get_baseurl(),
70                                 'source_photo' => $a->get_baseurl() . '/images/person-80.jpg',
71                         ]);
72
73                         q("update user set expire_notification_sent = '%s' where uid = %d",
74                                 dbesc(datetime_convert()),
75                                 intval($rr['uid'])
76                         );
77
78                 }
79         }
80
81         $r = q("select * from user where account_expired = 1 and account_expires_on < UTC_TIMESTAMP() - INTERVAL 5 DAY ");
82         if(count($r)) {
83                 foreach($r as $rr) {
84                         User::remove($rr['uid']);
85                 }
86         }
87 }
88
89 function testdrive_enotify(&$a, &$b) {
90     if (x($b, 'params') && $b['params']['type'] == NOTIFY_SYSTEM
91                 && x($b['params'], 'system_type') && $b['params']['system_type'] === 'testdrive_expire') {
92         $b['itemlink'] = $a->get_baseurl();
93         $b['epreamble'] = $b['preamble'] = sprintf( t('Your account on %s will expire in a few days.'), Config::get('system','sitename'));
94         $b['subject'] = t('Your Friendica test account is about to expire.');
95         $b['body'] = sprintf( t("Hi %1\$s,\n\nYour test account on %2\$s will expire in less than five days. We hope you enjoyed this test drive and use this opportunity to find a permanent Friendica website for your integrated social communications. A list of public sites is available at %s/siteinfo - and for more information on setting up your own Friendica server please see the Friendica project website at http://friendica.com."), $b['params']['to_name'], "[url=".$app->config["system"]["url"]."]".$app->config["sitename"]."[/url]", get_server());
96     }
97 }