2011-06-27 07:57:08 +02:00
|
|
|
<?php
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-06-27 07:57:08 +02:00
|
|
|
function fsuggest_post(&$a) {
|
|
|
|
|
|
|
|
if(! local_user()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($a->argc != 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
$contact_id = intval($a->argv[1]);
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
if(! count($r)) {
|
|
|
|
notice( t('Contact not found.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$contact = $r[0];
|
|
|
|
|
|
|
|
$new_contact = intval($_POST['suggest']);
|
|
|
|
|
|
|
|
$hash = random_string();
|
|
|
|
|
|
|
|
$note = escape_tags(trim($_POST['note']));
|
|
|
|
|
|
|
|
if($new_contact) {
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($new_contact),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
if(count($r)) {
|
|
|
|
|
|
|
|
$x = q("INSERT INTO `fsuggest` ( `uid`,`cid`,`name`,`url`,`request`,`photo`,`note`,`created`)
|
|
|
|
VALUES ( %d, %d, '%s','%s','%s','%s','%s','%s')",
|
|
|
|
intval(local_user()),
|
|
|
|
intval($contact_id),
|
2016-02-07 15:11:34 +01:00
|
|
|
dbesc($r[0]['name']),
|
|
|
|
dbesc($r[0]['url']),
|
|
|
|
dbesc($r[0]['request']),
|
|
|
|
dbesc($r[0]['photo']),
|
|
|
|
dbesc($hash),
|
2011-06-27 07:57:08 +02:00
|
|
|
dbesc(datetime_convert())
|
|
|
|
);
|
|
|
|
$r = q("SELECT `id` FROM `fsuggest` WHERE `note` = '%s' AND `uid` = %d LIMIT 1",
|
|
|
|
dbesc($hash),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
if(count($r)) {
|
|
|
|
$fsuggest_id = $r[0]['id'];
|
2014-03-11 23:52:32 +01:00
|
|
|
q("UPDATE `fsuggest` SET `note` = '%s' WHERE `id` = %d AND `uid` = %d",
|
2011-06-27 07:57:08 +02:00
|
|
|
dbesc($note),
|
|
|
|
intval($fsuggest_id),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
2016-08-01 07:48:43 +02:00
|
|
|
proc_run(PRIORITY_HIGH, 'include/notifier.php', 'suggest', $fsuggest_id);
|
2011-06-27 07:57:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
info( t('Friend suggestion sent.') . EOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2016-02-05 21:52:39 +01:00
|
|
|
}
|
2011-06-27 07:57:08 +02:00
|
|
|
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-06-27 07:57:08 +02:00
|
|
|
function fsuggest_content(&$a) {
|
|
|
|
|
|
|
|
require_once('include/acl_selectors.php');
|
|
|
|
|
|
|
|
if(! local_user()) {
|
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if($a->argc != 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
$contact_id = intval($a->argv[1]);
|
|
|
|
|
|
|
|
$r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
if(! count($r)) {
|
|
|
|
notice( t('Contact not found.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$contact = $r[0];
|
|
|
|
|
|
|
|
$o = '<h3>' . t('Suggest Friends') . '</h3>';
|
|
|
|
|
2011-06-27 12:09:45 +02:00
|
|
|
$o .= '<div id="fsuggest-desc" >' . sprintf( t('Suggest a friend for %s'), $contact['name']) . '</div>';
|
2011-06-27 07:57:08 +02:00
|
|
|
|
2011-06-27 12:09:45 +02:00
|
|
|
$o .= '<form id="fsuggest-form" action="fsuggest/' . $contact_id . '" method="post" >';
|
2011-06-27 07:57:08 +02:00
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
$o .= contact_selector('suggest','suggest-select', false,
|
2011-06-27 12:03:58 +02:00
|
|
|
array('size' => 4, 'exclude' => $contact_id, 'networks' => 'DFRN_ONLY', 'single' => true));
|
2011-06-27 07:57:08 +02:00
|
|
|
|
|
|
|
|
2011-06-28 01:18:06 +02:00
|
|
|
$o .= '<div id="fsuggest-submit-wrapper"><input id="fsuggest-submit" type="submit" name="submit" value="' . t('Submit') . '" /></div>';
|
2011-06-27 07:57:08 +02:00
|
|
|
$o .= '</form>';
|
|
|
|
|
|
|
|
return $o;
|
2014-03-11 23:52:32 +01:00
|
|
|
}
|