mirror of
https://github.com/twisterarmy/twister-phpbot.git
synced 2025-09-03 01:32:25 +00:00
remove debug and env-specific codes
This commit is contained in:
parent
7cd0222966
commit
48748d3885
@ -1,15 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
set_time_limit(0);
|
|
||||||
mb_internal_encoding('UTF-8');
|
mb_internal_encoding('UTF-8');
|
||||||
chdir(__DIR__);
|
|
||||||
|
|
||||||
function debugLog($msg)
|
|
||||||
{
|
|
||||||
file_put_contents('./logrss.txt', "$msg\n", FILE_APPEND);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**/debugLog("\n\n\n=== " . date("Y-m-d H:i:s") . "===");
|
|
||||||
|
|
||||||
// Load RSS feed
|
// Load RSS feed
|
||||||
$feed_uri = 'http://habrahabr.ru/rss/hubs/new/';
|
$feed_uri = 'http://habrahabr.ru/rss/hubs/new/';
|
||||||
@ -22,8 +13,6 @@ $twister = new TwisterPost('habr_ru');
|
|||||||
|
|
||||||
// Set path to twisterd directory
|
// Set path to twisterd directory
|
||||||
$twister->twisterPath = '.' . DIRECTORY_SEPARATOR . 'twister-win32-bundle' . DIRECTORY_SEPARATOR;
|
$twister->twisterPath = '.' . DIRECTORY_SEPARATOR . 'twister-win32-bundle' . DIRECTORY_SEPARATOR;
|
||||||
// Note: we use custom rpc port for twister
|
|
||||||
$twister->rpcport = 40001;
|
|
||||||
|
|
||||||
// Initialise RSS database
|
// Initialise RSS database
|
||||||
require_once 'habrrssdb.php';
|
require_once 'habrrssdb.php';
|
||||||
@ -42,10 +31,7 @@ foreach ($rss->channel->item as $item) {
|
|||||||
|
|
||||||
$msg = $twister->prettyPrint($title, $link, isset($item->category) ? $item->category : null);
|
$msg = $twister->prettyPrint($title, $link, isset($item->category) ? $item->category : null);
|
||||||
|
|
||||||
/**/debugLog($msg);
|
|
||||||
if ($twister->postMessage($msg)) {
|
if ($twister->postMessage($msg)) {
|
||||||
$db->setPublished($id);
|
$db->setPublished($id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**/debugLog('=== Done ===');
|
|
Loading…
x
Reference in New Issue
Block a user