Merge pull request #978 from annando/tags
Updated addons for new tag handling
This commit is contained in:
commit
e060931939
|
@ -43,7 +43,7 @@ use Friendica\Database\DBA;
|
|||
use Friendica\Database\DBStructure;
|
||||
use Friendica\DI;
|
||||
use Friendica\Model\Item;
|
||||
use Friendica\Model\Term;
|
||||
use Friendica\Model\Tag;
|
||||
use Friendica\Module\Security\Login;
|
||||
use Friendica\Network\HTTPException;
|
||||
use Friendica\Util\DateTimeFormat;
|
||||
|
@ -417,7 +417,7 @@ function advancedcontentfilter_get_variables_guid(ServerRequestInterface $reques
|
|||
throw new HTTPException\NotFoundException(DI::l10n()->t('Unknown post with guid: %s', $args['guid']));
|
||||
}
|
||||
|
||||
$tags = Term::populateTagsFromItem($item);
|
||||
$tags = Tag::populateTagsFromItem($item);
|
||||
|
||||
$item['tags'] = $tags['tags'];
|
||||
$item['hashtags'] = $tags['hashtags'];
|
||||
|
|
|
@ -262,20 +262,6 @@ function diaspora_send(App $a, array &$b)
|
|||
if ($handle && $password) {
|
||||
Logger::log('diaspora_send: all values seem to be okay', Logger::DEBUG);
|
||||
|
||||
$tag_arr = [];
|
||||
$tags = '';
|
||||
$x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
|
||||
|
||||
if ($x) {
|
||||
foreach ($matches as $mtch) {
|
||||
$tag_arr[] = $mtch[2];
|
||||
}
|
||||
}
|
||||
|
||||
if (count($tag_arr)) {
|
||||
$tags = implode(',',$tag_arr);
|
||||
}
|
||||
|
||||
$title = $b['title'];
|
||||
$body = $b['body'];
|
||||
// Insert a newline before and after a quote
|
||||
|
|
|
@ -211,18 +211,6 @@ function libertree_send(&$a,&$b) {
|
|||
$ltree_source .= " (".$b['app'].")";
|
||||
|
||||
if($ltree_url && $ltree_api_token && $ltree_blog && $ltree_source) {
|
||||
$tag_arr = [];
|
||||
$tags = '';
|
||||
$x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
|
||||
|
||||
if($x) {
|
||||
foreach($matches as $mtch) {
|
||||
$tag_arr[] = $mtch[2];
|
||||
}
|
||||
}
|
||||
if(count($tag_arr))
|
||||
$tags = implode(',',$tag_arr);
|
||||
|
||||
$title = $b['title'];
|
||||
$body = $b['body'];
|
||||
// Insert a newline before and after a quote
|
||||
|
|
|
@ -16,6 +16,7 @@ use Friendica\Core\Logger;
|
|||
use Friendica\Core\Renderer;
|
||||
use Friendica\Database\DBA;
|
||||
use Friendica\DI;
|
||||
use Friendica\Model\Tag;
|
||||
use Friendica\Util\Strings;
|
||||
|
||||
function tumblr_install()
|
||||
|
@ -383,14 +384,12 @@ function tumblr_send(App $a, array &$b) {
|
|||
$tmbl_blog = 'blog/' . $page . '/post';
|
||||
|
||||
if ($oauth_token && $oauth_token_secret && $tmbl_blog) {
|
||||
$tag_arr = [];
|
||||
$tags = '';
|
||||
preg_match_all('/\#\[(.*?)\](.*?)\[/', $b['tag'], $matches, PREG_SET_ORDER);
|
||||
$tags = Tag::getByURIId($b['uri-id']);
|
||||
|
||||
if (!empty($matches)) {
|
||||
foreach($matches as $mtch) {
|
||||
$tag_arr[] = $mtch[2];
|
||||
}
|
||||
$tag_arr = [];
|
||||
|
||||
foreach($tags as $tag) {
|
||||
$tag_arr[] = $tag['name'];
|
||||
}
|
||||
|
||||
if (count($tag_arr)) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user