]> git.mxchange.org Git - friendica-addons.git/blob - ifttt/ifttt.php
Merge pull request #778 from MrPetovan/task/move-config-to-php-array
[friendica-addons.git] / ifttt / ifttt.php
1 <?php
2
3 /**
4  * Name: IFTTT Receiver
5  * Description: Receives a post from https://ifttt.com/ and distributes it.
6  * Version: 0.1
7  * Author: Michael Vogel <https://pirati.ca/profile/heluecht>
8  */
9 require_once 'mod/item.php';
10 require_once 'include/items.php';
11 require_once 'include/text.php';
12
13 use Friendica\App;
14 use Friendica\Core\Addon;
15 use Friendica\Core\L10n;
16 use Friendica\Core\Logger;
17 use Friendica\Core\PConfig;
18 use Friendica\Core\Protocol;
19 use Friendica\Database\DBA;
20 use Friendica\Model\Item;
21 use Friendica\Util\Strings;
22
23 function ifttt_install()
24 {
25         Addon::registerHook('connector_settings', 'addon/ifttt/ifttt.php', 'ifttt_settings');
26         Addon::registerHook('connector_settings_post', 'addon/ifttt/ifttt.php', 'ifttt_settings_post');
27 }
28
29 function ifttt_uninstall()
30 {
31         Addon::unregisterHook('connector_settings', 'addon/ifttt/ifttt.php', 'ifttt_settings');
32         Addon::unregisterHook('connector_settings_post', 'addon/ifttt/ifttt.php', 'ifttt_settings_post');
33 }
34
35 function ifttt_module()
36 {
37
38 }
39
40 function ifttt_content()
41 {
42
43 }
44
45 function ifttt_settings(App $a, &$s)
46 {
47         if (!local_user()) {
48                 return;
49         }
50
51         $key = PConfig::get(local_user(), 'ifttt', 'key');
52
53         if (!$key) {
54                 $key = Strings::getRandomHex(20);
55                 PConfig::set(local_user(), 'ifttt', 'key', $key);
56         }
57
58         $s .= '<span id="settings_ifttt_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_ifttt_expanded\'); openClose(\'settings_ifttt_inflated\');">';
59         $s .= '<img class="connector" src="addon/ifttt/ifttt.png" /><h3 class="connector">' . L10n::t('IFTTT Mirror') . '</h3>';
60         $s .= '</span>';
61         $s .= '<div id="settings_ifttt_expanded" class="settings-block" style="display: none;">';
62         $s .= '<span class="fakelink" onclick="openClose(\'settings_ifttt_expanded\'); openClose(\'settings_ifttt_inflated\');">';
63         $s .= '<img class="connector" src="addon/ifttt/ifttt.png" /><h3 class="connector">' . L10n::t('IFTTT Mirror') . '</h3>';
64         $s .= '</span>';
65
66         $s .= '<div id="ifttt-configuration-wrapper">';
67         $s .= '<p>' . L10n::t('Create an account at <a href="http://www.ifttt.com">IFTTT</a>. Create three Facebook recipes that are connected with <a href="https://ifttt.com/maker">Maker</a> (In the form "if Facebook then Maker") with the following parameters:') . '</p>';
68         $s .= '<h4>URL</h4>';
69         $s .= '<p>' . $a->getBaseURL() . '/ifttt/' . $a->user['nickname'] . '</p>';
70         $s .= '<h4>Method</h4>';
71         $s .= '<p>POST</p>';
72         $s .= '<h4>Content Type</h4>';
73         $s .= '<p>application/x-www-form-urlencoded</p>';
74         $s .= '<h4>' . L10n::t('Body for "new status message"') . '</h4>';
75         $s .= '<p><code>' . htmlentities('key=' . $key . '&type=status&msg=<<<{{Message}}>>>&date=<<<{{UpdatedAt}}>>>&url=<<<{{PageUrl}}>>>') . '</code></p>';
76         $s .= '<h4>' . L10n::t('Body for "new photo upload"') . '</h4>';
77         $s .= '<p><code>' . htmlentities('key=' . $key . '&type=photo&link=<<<{{Link}}>>>&image=<<<{{ImageSource}}>>>&msg=<<<{{Caption}}>>>&date=<<<{{CreatedAt}}>>>&url=<<<{{PageUrl}}>>>') . '</code></p>';
78         $s .= '<h4>' . L10n::t('Body for "new link post"') . '</h4>';
79         $s .= '<p><code>' . htmlentities('key=' . $key . '&type=link&link=<<<{{Link}}>>>&title=<<<{{Title}}>>>&msg=<<<{{Message}}>>>&description=<<<{{Description}}>>>&date=<<<{{CreatedAt}}>>>&url=<<<{{PageUrl}}>>>') . '</code></p>';
80         $s .= '</div><div class="clear"></div>';
81
82         $s .= '<div id="ifttt-rekey-wrapper">';
83         $s .= '<label id="ifttt-rekey-label" for="ifttt-checkbox">' . L10n::t('Generate new key') . '</label>';
84         $s .= '<input id="ifttt-checkbox" type="checkbox" name="ifttt-rekey" value="1" />';
85         $s .= '</div><div class="clear"></div>';
86
87         $s .= '<div class="settings-submit-wrapper" ><input type="submit" name="ifttt-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div>';
88         $s .= '</div>';
89 }
90
91 function ifttt_settings_post()
92 {
93         if (x($_POST, 'ifttt-submit') && isset($_POST['ifttt-rekey'])) {
94                 PConfig::delete(local_user(), 'ifttt', 'key');
95         }
96 }
97
98 function ifttt_post(App $a)
99 {
100         if ($a->argc != 2) {
101                 return;
102         }
103
104         $nickname = $a->argv[1];
105
106         $user = DBA::selectFirst('user', ['uid'], ['nickname' => $nickname]);
107         if (!DBA::isResult($user)) {
108                 Logger::log('User ' . $nickname . ' not found.', Logger::DEBUG);
109                 return;
110         }
111
112         $uid = $user['uid'];
113
114         Logger::log('Received a post for user ' . $uid . ' from ifttt ' . print_r($_REQUEST, true), Logger::DEBUG);
115
116         if (!isset($_REQUEST['key'])) {
117                 Logger::log('No key found.');
118                 return;
119         }
120
121         $key = $_REQUEST['key'];
122
123         // Check the key
124         if ($key != PConfig::get($uid, 'ifttt', 'key')) {
125                 Logger::log('Invalid key for user ' . $uid, Logger::DEBUG);
126                 return;
127         }
128
129         $item = [];
130
131         if (isset($_REQUEST['type'])) {
132                 $item['type'] = $_REQUEST['type'];
133         }
134
135         if (!in_array($item['type'], ['status', 'link', 'photo'])) {
136                 Logger::log('Unknown item type ' . $item['type'], Logger::DEBUG);
137                 return;
138         }
139
140         if (isset($_REQUEST['link'])) {
141                 $item['link'] = trim($_REQUEST['link']);
142         }
143         if (isset($_REQUEST['image'])) {
144                 $item['image'] = trim($_REQUEST['image']);
145         }
146         if (isset($_REQUEST['title'])) {
147                 $item['title'] = trim($_REQUEST['title']);
148         }
149         if (isset($_REQUEST['msg'])) {
150                 $item['msg'] = trim($_REQUEST['msg']);
151         }
152         if (isset($_REQUEST['description'])) {
153                 $item['description'] = trim($_REQUEST['description']);
154         }
155         if (isset($_REQUEST['date'])) {
156                 $item['date'] = date('c', strtotime($date = str_replace(' at ', ', ', $_REQUEST['date'])));
157         }
158         if (isset($_REQUEST['url'])) {
159                 $item['url'] = trim($_REQUEST['url']);
160         }
161
162         if ((substr($item['msg'], 0, 3) == '<<<') && (substr($item['msg'], -3, 3) == '>>>')) {
163                 $item['msg'] = substr($item['msg'], 3, -3);
164         }
165
166         ifttt_message($uid, $item);
167 }
168
169 function ifttt_message($uid, $item)
170 {
171         $a = get_app();
172
173         $_SESSION['authenticated'] = true;
174         $_SESSION['uid'] = $uid;
175
176         unset($_REQUEST);
177         $_REQUEST['api_source'] = true;
178         $_REQUEST['profile_uid'] = $uid;
179         $_REQUEST['source'] = 'IFTTT';
180         $_REQUEST['title'] = '';
181         $_REQUEST['body'] = $item['msg'];
182         //$_REQUEST['date'] = $item['date'];
183         //$_REQUEST['uri'] = $item['url'];
184
185         if (!empty($item['url']) && strstr($item['url'], 'facebook.com')) {
186                 $hash = hash('ripemd128', $item['url']);
187                 $_REQUEST['extid'] = Protocol::FACEBOOK;
188                 $_REQUEST['message_id'] = Item::newURI($uid, Protocol::FACEBOOK . ':' . $hash);
189         }
190
191         if ($item['type'] == 'link') {
192                 $data = query_page_info($item['link']);
193
194                 if (isset($item['title']) && (trim($item['title']) != '')) {
195                         $data['title'] = $item['title'];
196                 }
197
198                 if (isset($item['description']) && (trim($item['description']) != '')) {
199                         $data['text'] = $item['description'];
200                 }
201
202                 $_REQUEST['body'] .= add_page_info_data($data);
203         } elseif (($item['type'] == 'photo') && ($item['image'] != '')) {
204                 $_REQUEST['body'] .= "\n\n[img]" . $item['image'] . "[/img]\n";
205         }
206
207         item_post($a);
208 }