]> git.mxchange.org Git - friendica.git/blob - include/tags.php
6a5728a9ba54115aad3e01eb8cba87658dc18c35
[friendica.git] / include / tags.php
1 <?php
2 /*
3 require_once("boot.php");
4 if(@is_null($a)) {
5         $a = new App;
6 }
7
8 if(is_null($db)) {
9         @include(".htconfig.php");
10         require_once("dba.php");
11         $db = new dba($db_host, $db_user, $db_pass, $db_data);
12         unset($db_host, $db_user, $db_pass, $db_data);
13 };
14
15 $a->set_baseurl("https://pirati.ca");
16 */
17
18 function create_tags_from_item($itemid) {
19         global $a;
20
21         $profile_base = $a->get_baseurl();
22         $profile_data = parse_url($profile_base);
23         $profile_base_friendica = $profile_data['host'].$profile_data['path']."/profile/";
24         $profile_base_diaspora = $profile_data['host'].$profile_data['path']."/u/";
25
26         $searchpath = $a->get_baseurl()."/search?tag=";
27
28         $messages = q("SELECT `uri`, `uid`, `id`, `created`, `edited`, `commented`, `received`, `changed`, `deleted`, `title`, `body`, `tag` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
29
30         if (!$messages)
31                 return;
32
33         $message = $messages[0];
34
35         // Clean up all tags
36         q("DELETE FROM `term` WHERE `otype` = %d AND `oid` = %d AND `type` IN (%d, %d)",
37                 intval(TERM_OBJ_POST),
38                 intval($itemid),
39                 intval(TERM_HASHTAG),
40                 intval(TERM_MENTION));
41
42         if ($message["deleted"])
43                 return;
44
45         $taglist = explode(",", $message["tag"]);
46
47         $tags = "";
48         foreach ($taglist as $tag)
49                 if ((substr(trim($tag), 0, 1) == "#") OR (substr(trim($tag), 0, 1) == "@"))
50                         $tags .= " ".trim($tag);
51                 else
52                         $tags .= " #".trim($tag);
53
54         $data = " ".$message["title"]." ".$message["body"]." ".$tags." ";
55
56         $tags = array();
57
58         $pattern = "/\W\#([^\[].*?)[\s'\".,:;\?!\[\]\/]/ism";
59         if (preg_match_all($pattern, $data, $matches))
60                 foreach ($matches[1] as $match)
61                         $tags["#".strtolower($match)] = ""; // $searchpath.strtolower($match);
62
63         $pattern = "/\W([\#@])\[url\=(.*?)\](.*?)\[\/url\]/ism";
64         if (preg_match_all($pattern, $data, $matches, PREG_SET_ORDER)) {
65                 foreach ($matches as $match)
66                         $tags[$match[1].strtolower(trim($match[3], ',.:;[]/\"?!'))] = $match[2];
67         }
68
69         foreach ($tags as $tag=>$link) {
70
71                 if (substr(trim($tag), 0, 1) == "#") {
72                         $type = TERM_HASHTAG;
73                         $term = substr($tag, 1);
74                 } elseif (substr(trim($tag), 0, 1) == "@") {
75                         $type = TERM_MENTION;
76                         $term = substr($tag, 1);
77                 } else { // This shouldn't happen
78                         $type = TERM_HASHTAG;
79                         $term = $tag;
80                 }
81
82                 $r = q("INSERT INTO `term` (`uid`, `oid`, `otype`, `type`, `term`, `url`) VALUES (%d, %d, %d, %d, '%s', '%s')",
83                         intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval($type), dbesc($term), dbesc($link));
84
85                 // Search for mentions
86                 if ((substr($tag, 0, 1) == '@') AND (strpos($link, $profile_base_friendica) OR strpos($link, $profile_base_diaspora))) {
87                         $users = q("SELECT `uid` FROM `contact` WHERE self AND (`url` = '%s' OR `nurl` = '%s')", $link, $link);
88                         foreach ($users AS $user) {
89                                 if ($user["uid"] == $message["uid"])
90                                         q("UPDATE `item` SET `mention` = 1 WHERE `id` = %d", intval($itemid));
91                         }
92                 }
93         }
94 }
95
96 function create_tags_from_itemuri($itemuri, $uid) {
97         $messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
98
99         foreach ($messages as $message)
100                 create_tags_from_item($message["id"]);
101 }
102
103 function update_items() {
104         //$messages = q("SELECT `id` FROM `item` where tag !='' ORDER BY `created` DESC limit 10");
105         $messages = q("SELECT `id` FROM `item` where tag !=''");
106
107         foreach ($messages as $message)
108                 create_tags_from_item($message["id"]);
109 }
110
111 //print_r($tags);
112 //print_r($hashtags);
113 //print_r($mentions);
114 //update_items();
115 //create_tags_from_item(265194);
116 //create_tags_from_itemuri("infoagent@diasp.org:cce94abd104c06e8", 2);
117 ?>