aboutsummaryrefslogtreecommitdiffstats
path: root/include/follow.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-08-31 19:30:35 -0700
committerfriendica <info@friendica.com>2014-08-31 19:30:35 -0700
commit89d5c42df16ccef9c6c849a98d37e58bbf3dd49a (patch)
tree7b281ec4e1ce55c55644172dbebb40989aa2c9c8 /include/follow.php
parentd4005142898b4a0d58b015c6b10ee122270f3ea3 (diff)
downloadvolse-hubzilla-89d5c42df16ccef9c6c849a98d37e58bbf3dd49a.tar.gz
volse-hubzilla-89d5c42df16ccef9c6c849a98d37e58bbf3dd49a.tar.bz2
volse-hubzilla-89d5c42df16ccef9c6c849a98d37e58bbf3dd49a.zip
service class check for feeds. Note limit is account based, not channel based.
Diffstat (limited to 'include/follow.php')
-rw-r--r--include/follow.php54
1 files changed, 33 insertions, 21 deletions
diff --git a/include/follow.php b/include/follow.php
index 1ef355208..8f14a5062 100644
--- a/include/follow.php
+++ b/include/follow.php
@@ -17,7 +17,7 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
$a = get_app();
$is_red = false;
-
+ $is_http = ((strpos($url,'://') !== false) ? true : false);
if(! allowed_url($url)) {
$result['message'] = t('Channel is blocked on this site.');
@@ -29,13 +29,29 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
return $result;
}
+
+ // check service class limits
+
+ $r = q("select count(*) as total from abook where abook_channel = %d and not (abook_flags & %d) ",
+ intval($uid),
+ intval(ABOOK_FLAG_SELF)
+ );
+ if($r)
+ $total_channels = $r[0]['total'];
+
+ if(! service_class_allows($uid,'total_channels',$total_channels)) {
+ $result['message'] = upgrade_message();
+ return $result;
+ }
+
+
$arr = array('url' => $url, 'channel' => array());
call_hooks('follow', $arr);
if($arr['channel']['success'])
$ret = $arr['channel'];
- elseif(strpos($url,'://') === false)
+ elseif($is_http)
$ret = zot_finger($url,$channel);
if($ret && $ret['success']) {
@@ -61,20 +77,6 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
if(array_key_exists('connect_url',$j) && (! $confirm))
goaway(zid($j['connect_url']));
- // check service class limits
-
- $r = q("select count(*) as total from abook where abook_channel = %d and not (abook_flags & %d) ",
- intval($uid),
- intval(ABOOK_FLAG_SELF)
- );
- if($r)
- $total_channels = $r[0]['total'];
-
- if(! service_class_allows($uid,'total_channels',$total_channels)) {
- $result['message'] = upgrade_message();
- return $result;
- }
-
// do we have an xchan and hubloc?
// If not, create them.
@@ -120,7 +122,6 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
$my_perms = 0;
$their_perms = 0;
$xchan_hash = '';
- $is_http = false;
$r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' limit 1",
dbesc($url),
@@ -132,9 +133,8 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
if(strpos($url,'@')) {
$r = discover_by_webbie($url);
}
- elseif(strpos($url,'://')) {
+ elseif($is_http) {
$r = discover_by_url($url);
- $is_http = true;
}
if($r) {
$r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' limit 1",
@@ -148,7 +148,6 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
$their_perms = 0;
$my_perms = PERMS_W_STREAM|PERMS_W_MAIL;
}
-
}
if(! $xchan_hash) {
@@ -175,7 +174,20 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false)
$hash = $r[0]['channel_hash'];
$default_group = $r[0]['channel_default_group'];
}
-
+
+ if($is_http) {
+ $r = q("select count(*) as total from abook where abook_account = %d and abook_network = 'rss'",
+ intval($aid)
+ );
+ if($r)
+ $total_feeds = $r[0]['total'];
+
+ if(! service_class_allows($uid,'total_feeds',$total_feeds)) {
+ $result['message'] = upgrade_message();
+ return $result;
+ }
+ }
+
if($hash == $xchan_hash) {
$result['message'] = t('Cannot connect to yourself.');
return $result;