]> git.mxchange.org Git - friendica-addons.git/blob - testdrive/testdrive.php
SV addon translation update THX Kristoffer Grundström
[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\App;
10 use Friendica\Core\Hook;
11 use Friendica\Core\Search;
12 use Friendica\Database\DBA;
13 use Friendica\DI;
14 use Friendica\Model\Notification;
15 use Friendica\Model\User;
16 use Friendica\Core\Config\Util\ConfigFileLoader;
17 use Friendica\Util\DateTimeFormat;
18
19 function testdrive_install() {
20
21         Hook::register('load_config',      'addon/testdrive/testdrive.php', 'testdrive_load_config');
22         Hook::register('register_account', 'addon/testdrive/testdrive.php', 'testdrive_register_account');
23         Hook::register('cron', 'addon/testdrive/testdrive.php', 'testdrive_cron');
24         Hook::register('enotify','addon/testdrive/testdrive.php', 'testdrive_enotify');
25         Hook::register('globaldir_update','addon/testdrive/testdrive.php', 'testdrive_globaldir_update');
26
27 }
28
29 function testdrive_load_config(App $a, ConfigFileLoader $loader)
30 {
31         $a->getConfigCache()->load($loader->loadAddonConfig('testdrive'));
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 = DI::config()->get('testdrive','expiredays');
43         if(! $days)
44                 return;
45
46         DBA::update('user', ['account_expires_on' => DateTimeFormat::convert('now +' . $days . ' days')], ['uid' => $uid]);
47 };
48
49
50 function testdrive_cron($a,$b) {
51         $users = DBA::selectToArray('user', [], ["`account_expires_on` < ? AND `expire_notification_sent` <= ?",
52         DateTimeFormat::utc('now + 5 days'), DBA::NULL_DATETIME]);
53         foreach($users as $rr) {
54                 DI::notify()->createFromArray([
55                         'type' => Notification\Type::SYSTEM,
56                         'uid' => $rr['uid'],
57                         'system_type' => 'testdrive_expire',
58                         'source_name'  => DI::l10n()->t('Administrator'),
59                         'source_link'  => DI::baseUrl()->get(),
60                         'source_photo' => DI::baseUrl()->get() . '/images/person-80.jpg',
61                 ]);
62
63                 DBA::update('user', ['expire_notification_sent' => DateTimeFormat::utcNow()], ['uid' => $rr['uid']]);
64         }
65
66         $users = DBA::selectToArray('user', [], ["`account_expired` AND `account_expires_on` < ?", DateTimeFormat::utc('now - 5 days')]);
67         foreach($users as $rr) {
68                 User::remove($rr['uid']);
69         }
70 }
71
72 function testdrive_enotify(&$a, &$b) {
73     if (!empty($b['params']) && $b['params']['type'] == Notification\Type::SYSTEM
74                 && !empty($b['params']['system_type']) && $b['params']['system_type'] === 'testdrive_expire') {
75         $b['itemlink'] = DI::baseUrl()->get();
76         $b['epreamble'] = $b['preamble'] = DI::l10n()->t('Your account on %s will expire in a few days.', DI::config()->get('system', 'sitename'));
77         $b['subject'] = DI::l10n()->t('Your Friendica test account is about to expire.');
78         $b['body'] = DI::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 https://friendi.ca.", $b['params']['to_name'], "[url=".DI::config()->get('system', 'url')."]".DI::config()->get('config', 'sitename')."[/url]", Search::getGlobalDirectory());
79     }
80 }