Misc changes to url_from_contact_guid

- Rename url_from_fcontact_guid to url_from_fcontact_guid
- Use network name constant
- Standards
This commit is contained in:
Hypolite Petovan 2016-12-20 14:33:33 -05:00
parent a99532707b
commit b631442760
1 changed files with 4 additions and 4 deletions

View File

@ -711,10 +711,10 @@ class Diaspora {
* *
* @return string the contact url or null * @return string the contact url or null
*/ */
public static function url_from_fcontact_guid($fcontact_guid) { public static function url_from_contact_guid($fcontact_guid) {
logger("fcontact guid is ".$fcontact_guid, LOGGER_DEBUG); logger("fcontact guid is ".$fcontact_guid, LOGGER_DEBUG);
$r = q("SELECT `url` FROM `fcontact` WHERE `guid` = '%s' AND `network` = 'dspr' AND `url` != ''", $r = q("SELECT `url` FROM `fcontact` WHERE `guid` = '%s' AND `network` = '" . NETWORK_DIASPORA . "' AND `url` != ''",
$fcontact_guid); $fcontact_guid);
if (dbm::is_result($r)) { if (dbm::is_result($r)) {
@ -866,11 +866,11 @@ class Diaspora {
// 0 => '[url=/people/0123456789abcdef]Foo Bar[/url]' // 0 => '[url=/people/0123456789abcdef]Foo Bar[/url]'
// 1 => '0123456789abcdef' // 1 => '0123456789abcdef'
// 2 => 'Foo Bar' // 2 => 'Foo Bar'
$handle = self::url_from_fcontact_guid($match[1]); $handle = self::url_from_contact_guid($match[1]);
if ($handle) { if ($handle) {
$return = '@[url='.$handle.']'.$match[2].'[/url]'; $return = '@[url='.$handle.']'.$match[2].'[/url]';
}else { } else {
// No local match, restoring absolute remote URL from author scheme and host // No local match, restoring absolute remote URL from author scheme and host
$author_url = parse_url($author_link); $author_url = parse_url($author_link);
$return = '[url='.$author_url['scheme'].'://'.$author_url['host'].'/people/'.$match[1].']'.$match[2].'[/url]'; $return = '[url='.$author_url['scheme'].'://'.$author_url['host'].'/people/'.$match[1].']'.$match[2].'[/url]';