From eb5e6aae7273fef06a06f983fe78aaad737aa729 Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Tue, 26 Oct 2010 19:01:16 -0700 Subject: [PATCH] a few more fsw tweaks --- include/items.php | 12 ++++++++---- include/notifier.php | 2 +- include/poller.php | 1 - include/salmon.php | 7 ++++--- mod/contacts.php | 3 ++- mod/salmon.php | 11 +++++++++-- view/acl_selectors.php | 12 ++++++++---- view/contact_edit.tpl | 1 + view/contact_selectors.php | 7 +++++-- view/magicsig.tpl | 2 +- view/theme/default/style.css | 11 +++++++++-- 11 files changed, 48 insertions(+), 21 deletions(-) diff --git a/include/items.php b/include/items.php index 6cdf5f0f5b..fa07727de1 100644 --- a/include/items.php +++ b/include/items.php @@ -935,8 +935,12 @@ function consume_feed($xml,$importer,$contact, &$hub) { if(! is_array($contact)) return; - if($contact['network'] === 'stat' && strlen($datarray['title'])) - unset($datarray['title']); + if($contact['network'] === 'stat') { + if(strlen($datarray['title'])) + unset($datarray['title']); + if(($contact['rel'] == REL_VIP) || ($contact['rel'] == REL_BUD)) + $datarray['last-child'] = 1; + } $datarray['parent-uri'] = $item_id; $datarray['uid'] = $importer['uid']; $datarray['contact-id'] = $contact['id']; @@ -960,7 +964,7 @@ function new_follower($importer,$contact,$datarray,$item) { if(is_array($contact)) { if($contact['network'] == 'stat' && $contact['rel'] == REL_FAN) { - $q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1", + $r = q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d AND `uid` = %d LIMIT 1", intval(REL_BUD), intval($contact['id']), intval($importer['uid']) @@ -1010,7 +1014,7 @@ function new_follower($importer,$contact,$datarray,$item) { function lose_follower($importer,$contact,$datarray,$item) { - if($contact['rel'] == REL_BUD) { + if(($contact['rel'] == REL_BUD) || ($contact['rel'] == REL_FAN)) { q("UPDATE `contact` SET `rel` = %d WHERE `id` = %d LIMIT 1", intval(REL_FAN), intval($contact['id']) diff --git a/include/notifier.php b/include/notifier.php index 9e4a7102e8..069f3bdf2e 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -72,7 +72,7 @@ killme(); } - $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`page-flags` + $r = q("SELECT `contact`.*, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`, `user`.`page-flags` FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid` WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1", intval($uid) diff --git a/include/poller.php b/include/poller.php index e8bdc94a30..e08d76508b 100644 --- a/include/poller.php +++ b/include/poller.php @@ -14,7 +14,6 @@ require_once('datetime.php'); require_once('simplepie/simplepie.inc'); require_once('include/items.php'); - require_once('include/Contact.php'); $debugging = get_config('system','debugging'); diff --git a/include/salmon.php b/include/salmon.php index de0ea3802d..e93ec23d76 100644 --- a/include/salmon.php +++ b/include/salmon.php @@ -136,7 +136,7 @@ EOT; $signature = base64url_encode($rsa->sign($data . $precomputed)); - $signature2 = base64url_encode($rsa->sign($data)); + $signature2 = base64url_encode($rsa->sign($data)); $salmon_tpl = load_view_file('view/magicsig.tpl'); $salmon = replace_macros($salmon_tpl,array( @@ -154,7 +154,7 @@ EOT; )); $a = get_app(); - $return_code = trim($a->get_curl_code); + $return_code = trim($a->get_curl_code()); // check for success, e.g. 2xx @@ -177,7 +177,8 @@ EOT; 'Content-type: application/magic-envelope+xml', 'Content-length: ' . strlen($salmon) )); - $return_code = trim($a->get_curl_code); + $return_code = trim($a->get_curl_code()); + } return; diff --git a/mod/contacts.php b/mod/contacts.php index 9360637150..beb1f1ecb8 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -196,10 +196,11 @@ function contacts_content(&$a) { '$last_update' => (($r[0]['last-update'] == '0000-00-00 00:00:00') ? t('Never') : datetime_convert('UTC',date_default_timezone_get(),$r[0]['last-update'],'D, j M Y, g:i A')), - '$profile_select' => contact_profile_assign($r[0]['profile-id']), + '$profile_select' => contact_profile_assign($r[0]['profile-id'],(($r[0]['network'] !== 'dfrn') ? true : false)), '$contact_id' => $r[0]['id'], '$block_text' => (($r[0]['blocked']) ? t('Unblock this contact') : t('Block this contact') ), '$ignore_text' => (($r[0]['readonly']) ? t('Unignore this contact') : t('Ignore this contact') ), + '$insecure' => (($r[0]['network'] === 'dfrn') ? '' : load_view_file('view/insecure_net.tpl')), '$blocked' => (($r[0]['blocked']) ? '
' . t('Currently blocked') . '
' : ''), '$ignored' => (($r[0]['readonly']) ? '
' . t('Currently ignored') . '
' : ''), '$rating' => contact_reputation($r[0]['rating']), diff --git a/mod/salmon.php b/mod/salmon.php index 74377f9e94..54353132ad 100644 --- a/mod/salmon.php +++ b/mod/salmon.php @@ -195,8 +195,8 @@ function salmon_post(&$a) { * */ - $r = q("SELECT * FROM `contact` WHERE `network` = 'stat' AND ( `url` = '%s' OR `lrdd` = '%s') AND `uid` = %d - AND `readonly` = 0 LIMIT 1", + $r = q("SELECT * FROM `contact` WHERE `network` = 'stat' AND ( `url` = '%s' OR `lrdd` = '%s') + AND `uid` = %d LIMIT 1", dbesc($author_link), dbesc($author_link), intval($importer['uid']) @@ -206,6 +206,13 @@ function salmon_post(&$a) { file_put_contents('salmon.out',"\n" . 'Author unknown to us.' . "\n", FILE_APPEND); } + if((count($r)) && ($r[0]['readonly'])) { + if($debugging) + file_put_contents('salmon.out',"\n" . 'Ignoring this author.' . "\n", FILE_APPEND); + salmon_return(200); + // NOTREACHED + } + require_once('include/items.php'); diff --git a/view/acl_selectors.php b/view/acl_selectors.php index b5f2dcfea0..32a3fff22e 100644 --- a/view/acl_selectors.php +++ b/view/acl_selectors.php @@ -49,11 +49,11 @@ function contact_select($selname, $selclass, $preselected = false, $size = 4, $p $o .= "\r\n"; $r = q("SELECT `id`, `profile-name` FROM `profile` WHERE `uid` = %d", intval($_SESSION['uid'])); diff --git a/view/magicsig.tpl b/view/magicsig.tpl index 6707493ca7..622e7c5a27 100644 --- a/view/magicsig.tpl +++ b/view/magicsig.tpl @@ -5,5 +5,5 @@ $data $encoding $algorithm -$signature +$signature diff --git a/view/theme/default/style.css b/view/theme/default/style.css index 191f2d50f6..17e619dea2 100644 --- a/view/theme/default/style.css +++ b/view/theme/default/style.css @@ -1288,9 +1288,8 @@ input#dfrn-url { margin-left: 50px; } -#block-message, #ignore-message { +#block-message, #ignore-message, #profile-edit-insecure { margin-top: 20px; - width: 180px; color: #FF0000; font-size: 1.1em; border: 1px solid #FF8888; @@ -1298,6 +1297,14 @@ input#dfrn-url { padding: 10px; } +#block-message, #ignore-message { + width: 180px; +} + +#profile-edit-insecure { + width: 600px; +} + .profile-tabs { float: left; padding: 4px;