summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-22 17:03:31 +0300
committerAndrew Dolgov <[email protected]>2010-11-22 17:03:31 +0300
commitb3009bcdde6e652ba5cd82a12161d6bd573ea155 (patch)
tree04a3a17609bedf9b81c6332b799ab15a8db3d4ab
parentff3e303af72c9b57e9bfcab32b34569bf0754c55 (diff)
add separate update method for Twitter, select it as default when subscribing to twitter.com feeds
-rw-r--r--backend.php3
-rw-r--r--functions.php37
2 files changed, 25 insertions, 15 deletions
diff --git a/backend.php b/backend.php
index c57f57709..c64ceaa97 100644
--- a/backend.php
+++ b/backend.php
@@ -131,7 +131,8 @@
$update_methods = array(
0 => __("Default"),
1 => __("Magpie"),
- 2 => __("SimplePie"));
+ 2 => __("SimplePie"),
+ 3 => __("Twitter OAuth"));
if (DEFAULT_UPDATE_METHOD == "1") {
$update_methods[0] .= ' (SimplePie)';
diff --git a/functions.php b/functions.php
index b84881427..99db938ba 100644
--- a/functions.php
+++ b/functions.php
@@ -582,17 +582,23 @@
$auth_login = db_fetch_result($result, 0, "auth_login");
$auth_pass = db_fetch_result($result, 0, "auth_pass");
- if (DEFAULT_UPDATE_METHOD == "1") {
- $use_simplepie = $update_method != 1;
- } else {
- $use_simplepie = $update_method == 2;
- }
+ if ($update_method == 0)
+ $update_method = DEFAULT_UPDATE_METHOD + 1;
+
+ // 1 - Magpie
+ // 2 - SimplePie
+ // 3 - Twitter OAuth
+
+ if ($update_method == 2)
+ $use_simplepie = true;
+ else
+ $use_simplepie = false;
if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
- _debug("use simplepie: $use_simplepie (feed setting: $update_method)\n");
+ _debug("update method: $update_method (feed setting: $update_method) (use simplepie: $use_simplepie)\n");
}
- if (!$use_simplepie) {
+ if ($update_method == 1) {
$auth_login = urlencode($auth_login);
$auth_pass = urlencode($auth_pass);
}
@@ -605,7 +611,7 @@
$feed = db_escape_string($feed);
- if ($auth_login && $auth_pass) {
+ if ($auth_login && $auth_pass && $updated != 3) {
$url_parts = array();
preg_match("/(^[^:]*):\/\/(.*)/", $fetch_url, $url_parts);
@@ -631,10 +637,9 @@
} else {
- if (strpos($fetch_url, '://twitter.com') !== false) {
+ if ($update_method == 3) {
$rss = fetch_twitter_rss($link, $fetch_url, $owner_uid);
- $use_simplepie = false;
- } else if (!$use_simplepie) {
+ } else if ($update_method == 1) {
$rss = @fetch_rss($fetch_url);
} else {
if (!is_dir(SIMPLEPIE_CACHE_DIR)) {
@@ -679,7 +684,7 @@
$feed = db_escape_string($feed);
- if ($use_simplepie) {
+ if ($update_method == 2) {
$fetch_ok = !$rss->error();
} else {
$fetch_ok = !!$rss;
@@ -2901,6 +2906,8 @@
if (!$url || !validate_feed_url($url)) return 2;
+ $update_method = 0;
+
if (strpos($url, '://twitter.com') === false) {
if (!fetch_file_contents($url)) return 5;
@@ -2918,6 +2925,8 @@
} else {
if (!fetch_twitter_rss($link, $url, $_SESSION['uid']))
return 5;
+
+ $update_method = 3;
}
if ($cat_id == "0" || !$cat_id) {
$cat_qpart = "NULL";
@@ -2932,9 +2941,9 @@
if (db_num_rows($result) == 0) {
$result = db_query($link,
"INSERT INTO ttrss_feeds
- (owner_uid,feed_url,title,cat_id, auth_login,auth_pass)
+ (owner_uid,feed_url,title,cat_id, auth_login,auth_pass,update_method)
VALUES ('".$_SESSION["uid"]."', '$url',
- '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass')");
+ '[Unknown]', $cat_qpart, '$auth_login', '$auth_pass', '$update_method')");
$result = db_query($link,
"SELECT id FROM ttrss_feeds WHERE feed_url = '$url'