aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dfrn_request.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2010-12-20 00:27:00 -0800
committerFriendika <info@friendika.com>2010-12-20 00:27:00 -0800
commit878067101f09b20014fab4c7f1265656528575d8 (patch)
tree4362be3bf61a16acbf76b6a98c65520fd2ef9c09 /mod/dfrn_request.php
parent2632c2313069ff418737ecf0f8f6885f02d3e5b1 (diff)
downloadvolse-hubzilla-878067101f09b20014fab4c7f1265656528575d8.tar.gz
volse-hubzilla-878067101f09b20014fab4c7f1265656528575d8.tar.bz2
volse-hubzilla-878067101f09b20014fab4c7f1265656528575d8.zip
block connection/friend request spam
Diffstat (limited to 'mod/dfrn_request.php')
-rw-r--r--mod/dfrn_request.php29
1 files changed, 23 insertions, 6 deletions
diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php
index 9c8064db5..6cefdd28e 100644
--- a/mod/dfrn_request.php
+++ b/mod/dfrn_request.php
@@ -217,17 +217,34 @@ function dfrn_request_post(&$a) {
return;
}
- $nickname = $a->profile['nickname'];
- $notify_flags = $a->profile['notify-flags'];
- $uid = $a->profile['uid'];
-
+ $nickname = $a->profile['nickname'];
+ $notify_flags = $a->profile['notify-flags'];
+ $uid = $a->profile['uid'];
+ $maxreq = intval($a->profile['maxreq']);
$contact_record = null;
- $failed = false;
- $parms = null;
+ $failed = false;
+ $parms = null;
if( x($_POST,'dfrn_url')) {
+ /**
+ * Block friend request spam
+ */
+
+ if($maxreq) {
+ $r = q("SELECT * FROM `intro` WHERE `datetime` > '%s' AND `uid` = %d",
+ dbesc(datetime_convert('UTC','UTC','now - 24 hours')),
+ intval($uid)
+ );
+ if(count($r) > $maxreq) {
+ notice( $a->profile['name'] . t(' has received too many connection requests today.') . EOL);
+ notice( t('Spam protection measures have been invoked.') . EOL);
+ notice( t('Friends are advised to please try again in 24 hours.') . EOL);
+ return;
+ }
+ }
+
$url = trim($_POST['dfrn_url']);
if(! strlen($url)) {
notice( t("Invalid locator") . EOL );