zoneclearFeedServer/cron-script.php

94 lines
1.9 KiB
PHP

#!/usr/bin/env php
<?php
# This file is highly based cron-script.php
# From Dotclear extension called planet
# By Olivier Meunier and contributors
# Licensed under the GPL version 2.0 license
$opts = getopt('d:c:b:u:h');
function zchelp($status = 0)
{
echo
"Options: \n" .
" -h shows this help\n" .
" -d DotClear root path\n" .
" -c DotClear conf path\n" .
" -b Blog ID\n" .
" -u User ID\n\n";
exit($status);
}
if (isset($opts['h'])) {
zchelp();
}
$dc_root = null;
$dc_conf = null;
$blog_id = null;
if (isset($opts['d'])) {
$dc_root = $opts['d'];
} elseif (isset($_SERVER['DC_ROOT'])) {
$dc_root = $_SERVER['DC_ROOT'];
}
if (isset($opts['c'])) {
$dc_conf = realpath($opts['c']);
} elseif (isset($_SERVER['DC_RC_PATH'])) {
$dc_conf = realpath($_SERVER['DC_RC_PATH']);
}
if (isset($opts['b'])) {
$blog_id = $opts['b'];
} elseif (isset($_SERVER['DC_BLOG_ID'])) {
$blog_id = $opts['DC_BLOG_ID'];
}
if (!$dc_root || !is_dir($dc_root)) {
fwrite(STDERR, "DotClear root path is not defined\n\n");
zchelp(1);
}
if (!$dc_conf || !is_readable($dc_conf)) {
fwrite(STDERR, "DotClear configuration not found\n\n");
zchelp(1);
}
if (!$blog_id) {
fwrite(STDERR, "Blog ID is not defined\n\n");
zchelp(1);
}
$_SERVER['DC_RC_PATH'] = $dc_conf;
unset($dc_conf);
define('DC_BLOG_ID', $blog_id);
unset($blog_id);
require $dc_root . '/inc/prepend.php';
unset($dc_root);
dcCore::app()->setBlog(DC_BLOG_ID);
if (dcCore::app()->blog->id == null) {
fwrite(STDERR, "Blog is not defined\n");
exit(1);
}
if (!isset($opts['u']) || !dcCore::app()->auth->checkUser($opts['u'])) {
fwrite(STDERR, "Unable to set user\n");
exit(1);
}
dcCore::app()->plugins->loadModules(DC_PLUGINS_ROOT);
dcCore::app()->blog->settings->addNamespace('zoneclearFeedServer');
try {
$zc = new zoneclearFeedServer();
$zc->checkFeedsUpdate();
} catch (Exception $e) {
fwrite(STDERR, $e->getMessage() . "\n");
exit(1);
}