Merge branch '3.6-rc'
[friendica-addons.git] / testdrive / testdrive.php
1 <?php
2 /**
3  * Name: testdrive
4  * Description: Sample Friendica addon for creating a test drive Friendica site with automatic account expiration.
5  * Version: 1.0
6  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
7  */
8
9 use Friendica\Core\Addon;
10 use Friendica\Core\Config;
11 use Friendica\Core\L10n;
12 use Friendica\Model\User;
13 use Friendica\Util\DateTimeFormat;
14
15 function testdrive_install() {
16
17         Addon::registerHook('register_account', 'addon/testdrive/testdrive.php', 'testdrive_register_account');
18         Addon::registerHook('cron', 'addon/testdrive/testdrive.php', 'testdrive_cron');
19         Addon::registerHook('enotify','addon/testdrive/testdrive.php', 'testdrive_enotify');
20         Addon::registerHook('globaldir_update','addon/testdrive/testdrive.php', 'testdrive_globaldir_update');
21
22 }
23
24
25 function testdrive_uninstall() {
26
27         Addon::unregisterHook('register_account', 'addon/testdrive/testdrive.php', 'testdrive_register_account');
28         Addon::unregisterHook('cron', 'addon/testdrive/testdrive.php', 'testdrive_cron');
29         Addon::unregisterHook('enotify','addon/testdrive/testdrive.php', 'testdrive_enotify');
30         Addon::unregisterHook('globaldir_update','addon/testdrive/testdrive.php', 'testdrive_globaldir_update');
31
32 }
33
34 function testdrive_globaldir_update($a,&$b) {
35         $b['url'] = '';
36 }
37
38 function testdrive_register_account($a,$b) {
39
40         $uid = $b;
41
42         $days = get_config('testdrive','expiredays');
43         if(! $days)
44                 return;
45
46         $r = q("UPDATE user set account_expires_on = '%s' where uid = %d",
47                 dbesc(DateTimeFormat::convert('now +' . $days . ' days')),
48                 intval($uid)
49         );
50
51 };
52
53
54 function testdrive_cron($a,$b) {
55         require_once('include/enotify.php');
56
57         $r = q("select * from user where account_expires_on < UTC_TIMESTAMP() + INTERVAL 5 DAY and
58                 expire_notification_sent = '0000-00-00 00:00:00' ");
59
60         if(count($r)) {
61                 foreach($r as $rr) {
62                         notification(array(
63                                 'uid' => $rr['uid'],
64                                 'type' => NOTIFY_SYSTEM,
65                                 'system_type' => 'testdrive_expire',
66                                 'language'     => $rr['language'],
67                                 'to_name'      => $rr['username'],
68                                 'to_email'     => $rr['email'],
69                                 'source_name'  => L10n::t('Administrator'),
70                                 'source_link'  => $a->get_baseurl(),
71                                 'source_photo' => $a->get_baseurl() . '/images/person-80.jpg',
72                         ));
73
74                         q("update user set expire_notification_sent = '%s' where uid = %d",
75                                 dbesc(DateTimeFormat::utcNow()),
76                                 intval($rr['uid'])
77                         );
78
79                 }
80         }
81
82         $r = q("select * from user where account_expired = 1 and account_expires_on < UTC_TIMESTAMP() - INTERVAL 5 DAY ");
83         if(count($r)) {
84                 require_once('include/Contact.php');
85                 foreach($r as $rr)
86                         user_remove($rr['uid']);
87
88         }
89
90 }
91
92 function testdrive_enotify(&$a, &$b) {
93     if (x($b, 'params') && $b['params']['type'] == NOTIFY_SYSTEM
94                 && x($b['params'], 'system_type') && $b['params']['system_type'] === 'testdrive_expire') {
95         $b['itemlink'] = $a->get_baseurl();
96         $b['epreamble'] = $b['preamble'] = L10n::t('Your account on %s will expire in a few days.', Config::get('system', 'sitename'));
97         $b['subject'] = L10n::t('Your Friendica test account is about to expire.');
98         $b['body'] = L10n::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());
99     }
100 }