]> git.mxchange.org Git - friendica.git/blob - include/cronjobs.php
Merge develop into 0308-Notifications-restructure
[friendica.git] / include / cronjobs.php
1 <?php
2 if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) {
3         $directory = dirname($_SERVER["argv"][0]);
4
5         if (substr($directory, 0, 1) != "/")
6                 $directory = $_SERVER["PWD"]."/".$directory;
7
8         $directory = realpath($directory."/..");
9
10         chdir($directory);
11 }
12
13 require_once("boot.php");
14
15
16 function cronjobs_run(&$argv, &$argc){
17         global $a, $db;
18
19         if(is_null($a)) {
20                 $a = new App;
21         }
22
23         if(is_null($db)) {
24                 @include(".htconfig.php");
25                 require_once("include/dba.php");
26                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
27                 unset($db_host, $db_user, $db_pass, $db_data);
28         };
29
30
31         require_once('include/session.php');
32         require_once('include/datetime.php');
33         require_once('include/ostatus.php');
34         require_once('include/post_update.php');
35         require_once('mod/nodeinfo.php');
36
37         load_config('config');
38         load_config('system');
39
40         $a->set_baseurl(get_config('system','url'));
41
42         // No parameter set? So return
43         if ($argc <= 1)
44                 return;
45
46         // Check OStatus conversations
47         // Check only conversations with mentions (for a longer time)
48         if ($argv[1] == 'ostatus_mentions') {
49                 ostatus::check_conversations(true);
50                 return;
51         }
52
53         // Check every conversation
54         if ($argv[1] == 'ostatus_conversations') {
55                 ostatus::check_conversations(false);
56                 return;
57         }
58
59         // Call possible post update functions
60         // see include/post_update.php for more details
61         if ($argv[1] == 'post_update') {
62                 post_update();
63                 return;
64         }
65
66         // update nodeinfo data
67         if ($argv[1] == 'nodeinfo') {
68                 nodeinfo_cron();
69                 return;
70         }
71
72         return;
73 }
74
75 if (array_search(__file__,get_included_files())===0){
76         cronjobs_run($_SERVER["argv"],$_SERVER["argc"]);
77         killme();
78 }