diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-14 19:16:25 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-14 19:16:25 -0700 |
commit | 97b990c9bf0c08e9088ea8dea54177c044eaa6ad (patch) | |
tree | 4354a2ea87c4cf7a83d16f233fdf2233a95a89b0 /include/checksites.php | |
parent | 8fb4f376702ad3d4417bb2c4d8937a9911cb56ca (diff) | |
download | volse-hubzilla-97b990c9bf0c08e9088ea8dea54177c044eaa6ad.tar.gz volse-hubzilla-97b990c9bf0c08e9088ea8dea54177c044eaa6ad.tar.bz2 volse-hubzilla-97b990c9bf0c08e9088ea8dea54177c044eaa6ad.zip |
site checking stuff
Diffstat (limited to 'include/checksites.php')
-rw-r--r-- | include/checksites.php | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/include/checksites.php b/include/checksites.php new file mode 100644 index 000000000..ab91dc768 --- /dev/null +++ b/include/checksites.php @@ -0,0 +1,63 @@ +<?php /** @file */ + +require_once('boot.php'); +require_once('include/cli_startup.php'); +require_once('include/zot.php'); +require_once('include/hubloc.php'); + + + +function checksites_run($argv, $argc){ + + + cli_startup(); + $a = get_app(); + + logger('checksites: start'); + + if(($argc > 1) && ($argv[1])) + $site_id = $argv[1]; + + if($site_id) + $sql_options = " and site_url = '" . dbesc($argv[1]) . "' "; + + $days = intval(get_config('system','sitecheckdays')); + if($days < 1) + $days = 30; + + + $r = q("select * from site where site_dead = 0 and site_update < %s - INTERVAL %s $sql_options ", + db_utcnow(), db_quoteinterval($days . ' DAY') + ); + + + if(! $r) + return; + + foreach($r as $rr) { + if(! strcasecmp($rr['site_url'],z_root())) + continue; + + $x = ping_site($rr['site_url']); + if($x['success']) { + logger('checksites: ' . $rr['site_url']); + q("update site set site_update = '%s' where site_url = '%s' ", + dbesc(datetime_convert()), + dbesc($rr['site_url']) + ); + } + else { + logger('marking dead site: ' . $x['message']); + q("update site set site_dead = 1 where site_url = '%s' ", + dbesc($rr['site_url']) + ); + } + } + + return; +} + +if (array_search(__file__,get_included_files())===0){ + checksites_run($argv,$argc); + killme(); +} |