give orphans a second chance, linkify naked links
This commit is contained in:
parent
16ba93a5b1
commit
7db4a0dd2e
4 changed files with 55 additions and 33 deletions
|
@ -17,10 +17,15 @@ function bbcode($Text) {
|
||||||
$MAILSearchString = $URLSearchString . " a-zA-Z0-9\.@";
|
$MAILSearchString = $URLSearchString . " a-zA-Z0-9\.@";
|
||||||
|
|
||||||
// Perform URL Search
|
// Perform URL Search
|
||||||
|
|
||||||
|
$Text = preg_replace("/[^\]\=](http\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]*)/", ' <a href="$1" >$1</a>', $Text);
|
||||||
|
$Text = preg_replace("/[^\]\=](https\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]*)/", ' <a href="$1" >$1</a>', $Text);
|
||||||
|
|
||||||
$Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/", '<a href="$1" >$1</a>', $Text);
|
$Text = preg_replace("/\[url\]([$URLSearchString]*)\[\/url\]/", '<a href="$1" >$1</a>', $Text);
|
||||||
$Text = preg_replace("(\[url\=([$URLSearchString]*)\](.+?)\[/url\])", '<a href="$1" >$2</a>', $Text);
|
$Text = preg_replace("(\[url\=([$URLSearchString]*)\](.+?)\[/url\])", '<a href="$1" >$2</a>', $Text);
|
||||||
//$Text = preg_replace("(\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[/url\])", '<a href="$1" target="_blank">$2</a>', $Text);
|
//$Text = preg_replace("(\[url\=([$URLSearchString]*)\]([$URLSearchString]*)\[/url\])", '<a href="$1" target="_blank">$2</a>', $Text);
|
||||||
|
|
||||||
|
|
||||||
// Perform MAIL Search
|
// Perform MAIL Search
|
||||||
$Text = preg_replace("(\[mail\]([$MAILSearchString]*)\[/mail\])", '<a href="mailto:$1">$1</a>', $Text);
|
$Text = preg_replace("(\[mail\]([$MAILSearchString]*)\[/mail\])", '<a href="mailto:$1">$1</a>', $Text);
|
||||||
$Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.+?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $Text);
|
$Text = preg_replace("/\[mail\=([$MAILSearchString]*)\](.+?)\[\/mail\]/", '<a href="mailto:$1">$2</a>', $Text);
|
||||||
|
|
|
@ -546,9 +546,41 @@ function item_store($arr) {
|
||||||
$arr['object'] = ((x($arr,'object')) ? trim($arr['object']) : '');
|
$arr['object'] = ((x($arr,'object')) ? trim($arr['object']) : '');
|
||||||
$arr['target-type'] = ((x($arr,'target-type')) ? notags(trim($arr['target-type'])) : '');
|
$arr['target-type'] = ((x($arr,'target-type')) ? notags(trim($arr['target-type'])) : '');
|
||||||
$arr['target'] = ((x($arr,'target')) ? trim($arr['target']) : '');
|
$arr['target'] = ((x($arr,'target')) ? trim($arr['target']) : '');
|
||||||
|
$arr['allow_cid'] = ((x($arr,'allow_cid')) ? trim($arr['allow_cid']) : '');
|
||||||
|
$arr['allow_gid'] = ((x($arr,'allow_gid')) ? trim($arr['allow_gid']) : '');
|
||||||
|
$arr['deny_cid'] = ((x($arr,'deny_cid')) ? trim($arr['deny_cid']) : '');
|
||||||
|
$arr['deny_gid'] = ((x($arr,'deny_gid')) ? trim($arr['deny_gid']) : '');
|
||||||
|
|
||||||
$parent_id = 0;
|
|
||||||
$parent_missing = false;
|
|
||||||
|
if($arr['parent-uri'] === $arr['uri']) {
|
||||||
|
$parent_id = 0;
|
||||||
|
$allow_cid = $arr['allow_cid'];
|
||||||
|
$allow_gid = $arr['allow_gid'];
|
||||||
|
$deny_cid = $arr['deny_cid'];
|
||||||
|
$deny_gid = $arr['deny_gid'];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
|
||||||
|
// find the parent and snarf the item id and ACL's
|
||||||
|
|
||||||
|
$r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
|
||||||
|
dbesc($arr['parent-uri']),
|
||||||
|
intval($arr['uid'])
|
||||||
|
);
|
||||||
|
|
||||||
|
if(count($r)) {
|
||||||
|
$parent_id = $r[0]['id'];
|
||||||
|
$allow_cid = $r[0]['allow_cid'];
|
||||||
|
$allow_gid = $r[0]['allow_gid'];
|
||||||
|
$deny_cid = $r[0]['deny_cid'];
|
||||||
|
$deny_gid = $r[0]['deny_gid'];
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
logger('item_store: item parent was not found - ignoring item');
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dbesc_array($arr);
|
dbesc_array($arr);
|
||||||
|
|
||||||
|
@ -560,23 +592,7 @@ function item_store($arr) {
|
||||||
. implode("', '", array_values($arr))
|
. implode("', '", array_values($arr))
|
||||||
. "')" );
|
. "')" );
|
||||||
|
|
||||||
// find the parent and snarf the item id and ACL's
|
// find the item we just created
|
||||||
|
|
||||||
$r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
|
|
||||||
dbesc($arr['parent-uri']),
|
|
||||||
intval($arr['uid'])
|
|
||||||
);
|
|
||||||
|
|
||||||
if(count($r)) {
|
|
||||||
$parent_id = $r[0]['id'];
|
|
||||||
$allow_cid = $r[0]['allow_cid'];
|
|
||||||
$allow_gid = $r[0]['allow_gid'];
|
|
||||||
$deny_cid = $r[0]['deny_cid'];
|
|
||||||
$deny_gid = $r[0]['deny_gid'];
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$parent_missing = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
$r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
|
$r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
|
||||||
$arr['uri'], // already dbesc'd
|
$arr['uri'], // already dbesc'd
|
||||||
|
@ -586,23 +602,15 @@ function item_store($arr) {
|
||||||
$current_post = $r[0]['id'];
|
$current_post = $r[0]['id'];
|
||||||
logger('item_store: created item ' . $current_post);
|
logger('item_store: created item ' . $current_post);
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
return 0;
|
logger('item_store: could not locate created item');
|
||||||
|
|
||||||
if($parent_missing) {
|
|
||||||
|
|
||||||
logger('item_store: item parent was not found - ignoring item');
|
|
||||||
|
|
||||||
// perhaps the parent was deleted, but in any case, this thread is dead
|
|
||||||
// and unfortunately our brand new item now has to be destroyed
|
|
||||||
|
|
||||||
q("DELETE FROM `item` WHERE `id` = %d LIMIT 1",
|
|
||||||
intval($current_post)
|
|
||||||
);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set parent id - all of the parent's ACL's are also inherited by this post
|
if($arr['parent-uri'] === $arr['uri'])
|
||||||
|
$parent_id = $current_post;
|
||||||
|
|
||||||
|
// Set parent id - and also make sure to inherit the parent's ACL's.
|
||||||
|
|
||||||
$r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s',
|
$r = q("UPDATE `item` SET `parent` = %d, `allow_cid` = '%s', `allow_gid` = '%s',
|
||||||
`deny_cid` = '%s', `deny_gid` = '%s' WHERE `id` = %d LIMIT 1",
|
`deny_cid` = '%s', `deny_gid` = '%s' WHERE `id` = %d LIMIT 1",
|
||||||
|
|
|
@ -179,6 +179,11 @@
|
||||||
|
|
||||||
consume_feed($xml,$importer,$contact,$hub);
|
consume_feed($xml,$importer,$contact,$hub);
|
||||||
|
|
||||||
|
// do it twice. Ensures that children of parents which may be later in the stream aren't tossed
|
||||||
|
|
||||||
|
consume_feed($xml,$importer,$contact,$hub);
|
||||||
|
|
||||||
|
|
||||||
if((strlen($hub)) && (($contact['rel'] == REL_BUD) || (($contact['network'] === 'stat') && (! $contact['readonly'])))) {
|
if((strlen($hub)) && (($contact['rel'] == REL_BUD) || (($contact['network'] === 'stat') && (! $contact['readonly'])))) {
|
||||||
logger('poller: subscribing to hub(s) : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
|
logger('poller: subscribing to hub(s) : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
|
||||||
$hubs = explode(',', $hub);
|
$hubs = explode(',', $hub);
|
||||||
|
|
|
@ -115,6 +115,10 @@ function pubsub_post(&$a) {
|
||||||
|
|
||||||
consume_feed($xml,$importer,$contact,$feedhub,1);
|
consume_feed($xml,$importer,$contact,$feedhub,1);
|
||||||
|
|
||||||
|
// do it a second time so that any children find their parents.
|
||||||
|
|
||||||
|
consume_feed($xml,$importer,$contact,$feedhub,1);
|
||||||
|
|
||||||
hub_post_return();
|
hub_post_return();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue