Fix: In the contact search you had been able to delete your own contact
This commit is contained in:
parent
e2f5350e61
commit
d616bb7564
|
@ -45,6 +45,14 @@ function contacts_init(App $a)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DBM::is_result($contact)) {
|
if (DBM::is_result($contact)) {
|
||||||
|
if ($contact['self']) {
|
||||||
|
if (($a->argc == 3) && intval($a->argv[1]) && ($a->argv[2] == "posts")) {
|
||||||
|
goaway('profile/' . $contact['nick']);
|
||||||
|
} else {
|
||||||
|
goaway('profile/' . $contact['nick'] . '?tab=profile');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$a->data['contact'] = $contact;
|
$a->data['contact'] = $contact;
|
||||||
|
|
||||||
if (($a->data['contact']['network'] != "") && ($a->data['contact']['network'] != NETWORK_DFRN)) {
|
if (($a->data['contact']['network'] != "") && ($a->data['contact']['network'] != NETWORK_DFRN)) {
|
||||||
|
@ -940,6 +948,13 @@ function _contact_detail_for_template($rr)
|
||||||
$sparkle = '';
|
$sparkle = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($rr['self']) {
|
||||||
|
$dir_icon = 'images/larrow.gif';
|
||||||
|
$alt_text = L10n::t('This is you');
|
||||||
|
$url = $rr['url'];
|
||||||
|
$sparkle = '';
|
||||||
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'img_hover' => L10n::t('Visit %s\'s profile [%s]', $rr['name'], $rr['url']),
|
'img_hover' => L10n::t('Visit %s\'s profile [%s]', $rr['name'], $rr['url']),
|
||||||
'edit_hover' => L10n::t('Edit contact'),
|
'edit_hover' => L10n::t('Edit contact'),
|
||||||
|
|
|
@ -15,6 +15,7 @@ use Friendica\Model\Profile;
|
||||||
use Friendica\Network\Probe;
|
use Friendica\Network\Probe;
|
||||||
use Friendica\Protocol\PortableContact;
|
use Friendica\Protocol\PortableContact;
|
||||||
use Friendica\Util\Network;
|
use Friendica\Util\Network;
|
||||||
|
use Friendica\Database\DBM;
|
||||||
|
|
||||||
require_once 'mod/contacts.php';
|
require_once 'mod/contacts.php';
|
||||||
|
|
||||||
|
@ -113,32 +114,28 @@ function dirfind_content(App $a, $prefix = "") {
|
||||||
|
|
||||||
/// @TODO These 2 SELECTs are not checked on validity with DBM::is_result()
|
/// @TODO These 2 SELECTs are not checked on validity with DBM::is_result()
|
||||||
$count = q("SELECT count(*) AS `total` FROM `gcontact`
|
$count = q("SELECT count(*) AS `total` FROM `gcontact`
|
||||||
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl`
|
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = 0
|
||||||
AND `contact`.`network` = `gcontact`.`network`
|
WHERE NOT `gcontact`.`hide` AND `gcontact`.`network` IN ('%s', '%s', '%s') AND
|
||||||
AND `contact`.`uid` = %d AND NOT `contact`.`blocked`
|
((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR
|
||||||
AND NOT `contact`.`pending` AND `contact`.`rel` IN ('%s', '%s')
|
(`gcontact`.`updated` >= `gcontact`.`last_failure`)) AND
|
||||||
WHERE (`contact`.`id` > 0 OR (NOT `gcontact`.`hide` AND `gcontact`.`network` IN ('%s', '%s', '%s') AND
|
(`gcontact`.`url` LIKE '%s' OR `gcontact`.`name` LIKE '%s' OR
|
||||||
((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)))) AND
|
`gcontact`.`location` LIKE '%s' OR `gcontact`.`addr` LIKE '%s' OR
|
||||||
(`gcontact`.`url` LIKE '%s' OR `gcontact`.`name` LIKE '%s' OR `gcontact`.`location` LIKE '%s' OR
|
`gcontact`.`about` LIKE '%s' OR `gcontact`.`keywords` LIKE '%s') $extra_sql",
|
||||||
`gcontact`.`addr` LIKE '%s' OR `gcontact`.`about` LIKE '%s' OR `gcontact`.`keywords` LIKE '%s') $extra_sql",
|
|
||||||
intval(local_user()), dbesc(CONTACT_IS_SHARING), dbesc(CONTACT_IS_FRIEND),
|
|
||||||
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
|
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
|
||||||
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
|
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
|
||||||
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)));
|
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)));
|
||||||
|
|
||||||
$results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`photo`, `gcontact`.`network`, `gcontact`.`keywords`, `gcontact`.`addr`
|
$results = q("SELECT `gcontact`.`nurl`
|
||||||
FROM `gcontact`
|
FROM `gcontact`
|
||||||
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl`
|
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = 0
|
||||||
AND `contact`.`network` = `gcontact`.`network`
|
WHERE NOT `gcontact`.`hide` AND `gcontact`.`network` IN ('%s', '%s', '%s') AND
|
||||||
AND `contact`.`uid` = %d AND NOT `contact`.`blocked`
|
((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR
|
||||||
AND NOT `contact`.`pending` AND `contact`.`rel` IN ('%s', '%s')
|
(`gcontact`.`updated` >= `gcontact`.`last_failure`)) AND
|
||||||
WHERE (`contact`.`id` > 0 OR (NOT `gcontact`.`hide` AND `gcontact`.`network` IN ('%s', '%s', '%s') AND
|
(`gcontact`.`url` LIKE '%s' OR `gcontact`.`name` LIKE '%s' OR
|
||||||
((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)))) AND
|
`gcontact`.`location` LIKE '%s' OR `gcontact`.`addr` LIKE '%s' OR
|
||||||
(`gcontact`.`url` LIKE '%s' OR `gcontact`.`name` LIKE '%s' OR `gcontact`.`location` LIKE '%s' OR
|
`gcontact`.`about` LIKE '%s' OR `gcontact`.`keywords` LIKE '%s') $extra_sql
|
||||||
`gcontact`.`addr` LIKE '%s' OR `gcontact`.`about` LIKE '%s' OR `gcontact`.`keywords` LIKE '%s') $extra_sql
|
|
||||||
GROUP BY `gcontact`.`nurl`
|
GROUP BY `gcontact`.`nurl`
|
||||||
ORDER BY `gcontact`.`updated` DESC LIMIT %d, %d",
|
ORDER BY `gcontact`.`updated` DESC LIMIT %d, %d",
|
||||||
intval(local_user()), dbesc(CONTACT_IS_SHARING), dbesc(CONTACT_IS_FRIEND),
|
|
||||||
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
|
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
|
||||||
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
|
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
|
||||||
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
|
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
|
||||||
|
@ -148,14 +145,14 @@ function dirfind_content(App $a, $prefix = "") {
|
||||||
$j->items_page = $perpage;
|
$j->items_page = $perpage;
|
||||||
$j->page = $a->pager['page'];
|
$j->page = $a->pager['page'];
|
||||||
foreach ($results AS $result) {
|
foreach ($results AS $result) {
|
||||||
if (PortableContact::alternateOStatusUrl($result["url"])) {
|
if (PortableContact::alternateOStatusUrl($result["nurl"])) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$result = Contact::getDetailsByURL($result["url"], local_user(), $result);
|
$result = Contact::getDetailsByURL($result["nurl"], local_user());
|
||||||
|
|
||||||
if ($result["name"] == "") {
|
if ($result["name"] == "") {
|
||||||
$urlparts = parse_url($result["url"]);
|
$urlparts = parse_url($result["nurl"]);
|
||||||
$result["name"] = end(explode("/", $urlparts["path"]));
|
$result["name"] = end(explode("/", $urlparts["path"]));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -204,11 +201,10 @@ function dirfind_content(App $a, $prefix = "") {
|
||||||
if ($jj->cid > 0) {
|
if ($jj->cid > 0) {
|
||||||
$connlnk = "";
|
$connlnk = "";
|
||||||
$conntxt = "";
|
$conntxt = "";
|
||||||
$contact = q("SELECT * FROM `contact` WHERE `id` = %d",
|
$contact = dba::selectFirst('contact', [], ['id' => $jj->cid]);
|
||||||
intval($jj->cid));
|
if (DBM::is_result($contact)) {
|
||||||
if ($contact) {
|
$photo_menu = Contact::photoMenu($contact);
|
||||||
$photo_menu = Contact::photoMenu($contact[0]);
|
$details = _contact_detail_for_template($contact);
|
||||||
$details = _contact_detail_for_template($contact[0]);
|
|
||||||
$alt_text = $details['alt_text'];
|
$alt_text = $details['alt_text'];
|
||||||
} else {
|
} else {
|
||||||
$photo_menu = [];
|
$photo_menu = [];
|
||||||
|
|
|
@ -514,7 +514,7 @@ class Contact extends BaseObject
|
||||||
}
|
}
|
||||||
|
|
||||||
$sparkle = false;
|
$sparkle = false;
|
||||||
if ($contact['network'] === NETWORK_DFRN) {
|
if (($contact['network'] === NETWORK_DFRN) && !$contact['self']) {
|
||||||
$sparkle = true;
|
$sparkle = true;
|
||||||
$profile_link = System::baseUrl() . '/redir/' . $contact['id'];
|
$profile_link = System::baseUrl() . '/redir/' . $contact['id'];
|
||||||
} else {
|
} else {
|
||||||
|
@ -531,18 +531,21 @@ class Contact extends BaseObject
|
||||||
$profile_link = $profile_link . '?url=profile';
|
$profile_link = $profile_link . '?url=profile';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (in_array($contact['network'], [NETWORK_DFRN, NETWORK_DIASPORA])) {
|
if (in_array($contact['network'], [NETWORK_DFRN, NETWORK_DIASPORA]) && !$contact['self']) {
|
||||||
$pm_url = System::baseUrl() . '/message/new/' . $contact['id'];
|
$pm_url = System::baseUrl() . '/message/new/' . $contact['id'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($contact['network'] == NETWORK_DFRN) {
|
if (($contact['network'] == NETWORK_DFRN) && !$contact['self']) {
|
||||||
$poke_link = System::baseUrl() . '/poke/?f=&c=' . $contact['id'];
|
$poke_link = System::baseUrl() . '/poke/?f=&c=' . $contact['id'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$contact_url = System::baseUrl() . '/contacts/' . $contact['id'];
|
$contact_url = System::baseUrl() . '/contacts/' . $contact['id'];
|
||||||
|
|
||||||
$posts_link = System::baseUrl() . '/contacts/' . $contact['id'] . '/posts';
|
$posts_link = System::baseUrl() . '/contacts/' . $contact['id'] . '/posts';
|
||||||
$contact_drop_link = System::baseUrl() . '/contacts/' . $contact['id'] . '/drop?confirm=1';
|
|
||||||
|
if (!$contact['self']) {
|
||||||
|
$contact_drop_link = System::baseUrl() . '/contacts/' . $contact['id'] . '/drop?confirm=1';
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Menu array:
|
* Menu array:
|
||||||
|
|
Loading…
Reference in a new issue