]> git.mxchange.org Git - friendica.git/blob - include/tags.php
invalid arguments for a foreach loop found
[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 `guid`, `uid`, `id`, `edited`, `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         $cachefile = get_cachefile($message["guid"]."-".hash("md5", $message['body']));
46
47         if (($cachefile != '') AND !file_exists($cachefile)) {
48                 $s = prepare_text($message['body']);
49                 $stamp1 = microtime(true);
50                 file_put_contents($cachefile, $s);
51                 $a->save_timestamp($stamp1, "file");
52                 logger('create_tags_from_item: put item '.$message["id"].' into cachefile '.$cachefile);
53         }
54
55         $taglist = explode(",", $message["tag"]);
56
57         $tags = "";
58         foreach ($taglist as $tag)
59                 if ((substr(trim($tag), 0, 1) == "#") OR (substr(trim($tag), 0, 1) == "@"))
60                         $tags .= " ".trim($tag);
61                 else
62                         $tags .= " #".trim($tag);
63
64         $data = " ".$message["title"]." ".$message["body"]." ".$tags." ";
65
66         $tags = array();
67
68         $pattern = "/\W\#([^\[].*?)[\s'\".,:;\?!\[\]\/]/ism";
69         if (preg_match_all($pattern, $data, $matches))
70                 foreach ($matches[1] as $match)
71                         $tags["#".strtolower($match)] = ""; // $searchpath.strtolower($match);
72
73         $pattern = "/\W([\#@])\[url\=(.*?)\](.*?)\[\/url\]/ism";
74         if (preg_match_all($pattern, $data, $matches, PREG_SET_ORDER)) {
75                 foreach ($matches as $match)
76                         $tags[$match[1].strtolower(trim($match[3], ',.:;[]/\"?!'))] = $match[2];
77         }
78
79         foreach ($tags as $tag=>$link) {
80
81                 if (substr(trim($tag), 0, 1) == "#") {
82                         $type = TERM_HASHTAG;
83                         $term = substr($tag, 1);
84                 } elseif (substr(trim($tag), 0, 1) == "@") {
85                         $type = TERM_MENTION;
86                         $term = substr($tag, 1);
87                 } else { // This shouldn't happen
88                         $type = TERM_HASHTAG;
89                         $term = $tag;
90                 }
91
92                 $r = q("INSERT INTO `term` (`uid`, `oid`, `otype`, `type`, `term`, `url`) VALUES (%d, %d, %d, %d, '%s', '%s')",
93                         intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval($type), dbesc($term), dbesc($link));
94
95                 // Search for mentions
96                 if ((substr($tag, 0, 1) == '@') AND (strpos($link, $profile_base_friendica) OR strpos($link, $profile_base_diaspora))) {
97                         $users = q("SELECT `uid` FROM `contact` WHERE self AND (`url` = '%s' OR `nurl` = '%s')", $link, $link);
98                         foreach ($users AS $user) {
99                                 if ($user["uid"] == $message["uid"])
100                                         q("UPDATE `item` SET `mention` = 1 WHERE `id` = %d", intval($itemid));
101                         }
102                 }
103         }
104 }
105
106 function create_tags_from_itemuri($itemuri, $uid) {
107         $messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
108
109         if(count($messages)) {
110                 foreach ($messages as $message)
111                         create_tags_from_item($message["id"]);
112         }
113 }
114
115 function update_items() {
116         //$messages = q("SELECT `id` FROM `item` where tag !='' ORDER BY `created` DESC limit 10");
117         $messages = q("SELECT `id` FROM `item` where tag !=''");
118
119         foreach ($messages as $message)
120                 create_tags_from_item($message["id"]);
121 }
122
123 //print_r($tags);
124 //print_r($hashtags);
125 //print_r($mentions);
126 //update_items();
127 //create_tags_from_item(265194);
128 //create_tags_from_itemuri("infoagent@diasp.org:cce94abd104c06e8", 2);
129 ?>