X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=ifttt%2Fifttt.php;h=5962e2ae94b28ee71a6b3a785f1e76acbe9651e9;hb=14124f49e7f2057146212a124563a7ee8f0c20dc;hp=2828d5026562719a2ca69c2bef36e9361a8c1f91;hpb=fe1710d3d06caa1240b7edb90c2e0dcdba18ca20;p=friendica-addons.git diff --git a/ifttt/ifttt.php b/ifttt/ifttt.php index 2828d502..5962e2ae 100644 --- a/ifttt/ifttt.php +++ b/ifttt/ifttt.php @@ -1,181 +1,188 @@ */ - -require_once("mod/item.php"); -require_once("include/items.php"); - -use Friendica\Core\PConfig; - -function ifttt_install() { - register_hook('connector_settings', 'addon/ifttt/ifttt.php', 'ifttt_settings'); - register_hook('connector_settings_post','addon/ifttt/ifttt.php', 'ifttt_settings_post'); +use Friendica\App; +use Friendica\Content\PageInfo; +use Friendica\Core\Hook; +use Friendica\Core\Logger; +use Friendica\Core\Protocol; +use Friendica\Core\Renderer; +use Friendica\Database\DBA; +use Friendica\DI; +use Friendica\Model\Item; +use Friendica\Model\Post; +use Friendica\Util\Strings; + +function ifttt_install() +{ + Hook::register('connector_settings', 'addon/ifttt/ifttt.php', 'ifttt_settings'); + Hook::register('connector_settings_post', 'addon/ifttt/ifttt.php', 'ifttt_settings_post'); } -function ifttt_uninstall() { - unregister_hook('connector_settings', 'addon/ifttt/ifttt.php', 'ifttt_settings'); - unregister_hook('connector_settings_post', 'addon/ifttt/ifttt.php', 'ifttt_settings_post'); -} - -function ifttt_module() { -} +function ifttt_module() +{ -function ifttt_content(&$a) { } -function ifttt_settings(&$a,&$s) { +function ifttt_content() +{ - if(! local_user()) - return; +} - $key = PConfig::get(local_user(),'ifttt','key'); +function ifttt_settings(App $a, array &$data) +{ + if (!local_user()) { + return; + } + $key = DI::pConfig()->get(local_user(), 'ifttt', 'key'); if (!$key) { - $key = substr(random_string(),0,20); - PConfig::set(local_user(),'ifttt','key', $key); - } - - $s .= ''; - $s .= '

'. t('IFTTT Mirror').'

'; - $s .= '
'; - $s .= ''; + $key = Strings::getRandomHex(20); + DI::pConfig()->set(local_user(), 'ifttt', 'key', $key); + } + $t = Renderer::getMarkupTemplate('connector_settings.tpl', 'addon/ifttt/'); + $html = Renderer::replaceMacros($t, [ + '$l10n' => [ + 'intro' => DI::l10n()->t('Create an account at IFTTT. Create three Facebook recipes that are connected with Maker (In the form "if Facebook then Maker") with the following parameters:'), + 'url' => DI::l10n()->t('URL'), + 'method' => DI::l10n()->t('Method'), + 'content_type' => DI::l10n()->t('Content Type'), + 'new_status_message_body' => DI::l10n()->t('Body for "new status message"'), + 'new_photo_upload_body' => DI::l10n()->t('Body for "new photo upload"'), + 'new_link_post_body' => DI::l10n()->t('Body for "new link post"'), + ], + '$url' => DI::baseUrl()->get() . '/ifttt/' . $a->getLoggedInUserNickname(), + '$new_status_message_body' => 'key=' . $key . '&type=status&msg=<<<{{Message}}>>>&date=<<<{{UpdatedAt}}>>>&url=<<<{{PageUrl}}>>>', + '$new_photo_upload_body' => 'key=' . $key . '&type=photo&link=<<<{{Link}}>>>&image=<<<{{ImageSource}}>>>&msg=<<<{{Caption}}>>>&date=<<<{{CreatedAt}}>>>&url=<<<{{PageUrl}}>>>', + '$new_link_post_body' => 'key=' . $key . '&type=link&link=<<<{{Link}}>>>&title=<<<{{Title}}>>>&msg=<<<{{Message}}>>>&description=<<<{{Description}}>>>&date=<<<{{CreatedAt}}>>>&url=<<<{{PageUrl}}>>>', + ]); + + $data = [ + 'connector' => 'ifttt', + 'title' => DI::l10n()->t('IFTTT Mirror'), + 'image' => 'addon/ifttt/ifttt.png', + 'html' => $html, + 'submit' => DI::l10n()->t('Generate new key'), + ]; } -function ifttt_settings_post(&$a,&$b) { - - if(x($_POST,'ifttt-submit')) - if (isset($_POST['ifttt-rekey'])) - PConfig::delete(local_user(), 'ifttt', 'key'); +function ifttt_settings_post() +{ + if (!empty($_POST['ifttt-submit'])) { + DI::pConfig()->delete(local_user(), 'ifttt', 'key'); + } } -function ifttt_post(&$a) { - if ($a->argc != 2) +function ifttt_post(App $a) +{ + if (DI::args()->getArgc() != 2) { return; + } - $user = $a->argv[1]; + $nickname = DI::args()->getArgv()[1]; - $r = q("SELECT `uid` FROM `user` WHERE `nickname` = '%s' LIMIT 1", dbesc($user)); - if (!$r) { - logger("User ".$user." not found.", LOGGER_DEBUG); + $user = DBA::selectFirst('user', ['uid'], ['nickname' => $nickname]); + if (!DBA::isResult($user)) { + Logger::info('User ' . $nickname . ' not found.'); return; } - $uid = $r[0]["uid"]; + $uid = $user['uid']; - logger("Received a post for user ".$uid." from ifttt ".print_r($_REQUEST, true), LOGGER_DEBUG); + Logger::info('Received a post for user ' . $uid . ' from ifttt ' . print_r($_REQUEST, true)); - if (!isset($_REQUEST["key"])) { - logger("No key found."); + if (!isset($_REQUEST['key'])) { + Logger::notice('No key found.'); return; } - $key = $_REQUEST["key"]; + $key = $_REQUEST['key']; // Check the key - if ($key != PConfig::get($uid,'ifttt','key')) { - logger("Invalid key for user ".$uid, LOGGER_DEBUG); + if ($key != DI::pConfig()->get($uid, 'ifttt', 'key')) { + Logger::info('Invalid key for user ' . $uid); return; } - $item = array(); + $item = []; - if (isset($_REQUEST["type"])) - $item["type"] = $_REQUEST["type"]; + if (isset($_REQUEST['type'])) { + $item['type'] = $_REQUEST['type']; + } - if (!in_array($item["type"], array("status", "link", "photo"))) { - logger("Unknown item type ".$item["type"], LOGGER_DEBUG); + if (!in_array($item['type'], ['status', 'link', 'photo'])) { + Logger::info('Unknown item type ' . $item['type']); return; } - if (isset($_REQUEST["link"])) - $item["link"] = trim($_REQUEST["link"]); - if (isset($_REQUEST["image"])) - $item["image"] = trim($_REQUEST["image"]); - if (isset($_REQUEST["title"])) - $item["title"] = trim($_REQUEST["title"]); - if (isset($_REQUEST["msg"])) - $item["msg"] = trim($_REQUEST["msg"]); - if (isset($_REQUEST["description"])) - $item["description"] = trim($_REQUEST["description"]); - if (isset($_REQUEST["date"])) - $item["date"] = date("c", strtotime($date = str_replace(" at ", ", ", $_REQUEST["date"]))); - if (isset($_REQUEST["url"])) - $item["url"] = trim($_REQUEST["url"]); - - if ((substr($item["msg"], 0, 3) == "<<<") && (substr($item["msg"], -3, 3) == ">>>")) - $item["msg"] = substr($item["msg"], 3, -3); + if (isset($_REQUEST['link'])) { + $item['link'] = trim($_REQUEST['link']); + } + if (isset($_REQUEST['image'])) { + $item['image'] = trim($_REQUEST['image']); + } + if (isset($_REQUEST['title'])) { + $item['title'] = trim($_REQUEST['title']); + } + if (isset($_REQUEST['msg'])) { + $item['msg'] = trim($_REQUEST['msg']); + } + if (isset($_REQUEST['description'])) { + $item['description'] = trim($_REQUEST['description']); + } + if (isset($_REQUEST['date'])) { + $item['date'] = date('c', strtotime($date = str_replace(' at ', ', ', $_REQUEST['date']))); + } + if (isset($_REQUEST['url'])) { + $item['url'] = trim($_REQUEST['url']); + } + + if ((substr($item['msg'], 0, 3) == '<<<') && (substr($item['msg'], -3, 3) == '>>>')) { + $item['msg'] = substr($item['msg'], 3, -3); + } ifttt_message($uid, $item); } -function ifttt_message($uid, $item) { - - $a = get_app(); - - $_SESSION["authenticated"] = true; - $_SESSION["uid"] = $uid; - - unset($_REQUEST); - $_REQUEST["type"] = "wall"; - $_REQUEST["api_source"] = true; - $_REQUEST["profile_uid"] = $uid; - $_REQUEST["source"] = "IFTTT"; - $_REQUEST["title"] = ""; - $_REQUEST["body"] = $item["msg"]; - //$_REQUEST["date"] = $item["date"]; - //$_REQUEST["uri"] = $item["url"]; - - if (strstr($item["url"], "facebook.com")) { - $hash = hash("ripemd128", item["url"]); - $_REQUEST["extid"] = NETWORK_FACEBOOK; - $_REQUEST['message_id'] = item_new_uri($a->get_hostname(), $uid, NETWORK_FACEBOOK.":".$hash); +function ifttt_message($uid, $item) +{ + $a = DI::app(); + + $post = []; + $post['uid'] = $uid; + $post['app'] = 'IFTTT'; + $post['title'] = ''; + $post['body'] = $item['msg']; + //$post['date'] = $item['date']; + //$post['uri'] = $item['url']; + + if ($item['type'] == 'link') { + $link = $item['link']; + $data = PageInfo::queryUrl($item['link']); + + if (isset($item['title']) && (trim($item['title']) != '')) { + $data['title'] = $item['title']; + } + + if (isset($item['description']) && (trim($item['description']) != '')) { + $data['text'] = $item['description']; + } + + $post['body'] .= "\n" . PageInfo::getFooterFromData($data); + } elseif (($item['type'] == 'photo') && ($item['image'] != '')) { + $link = $item['image']; + $post['body'] .= "\n\n[img]" . $item['image'] . "[/img]\n"; + } elseif (!empty($item['url'])) { + $link = $item['url']; + } else { + $link = hash('ripemd128', $item['msg']); } - if ($item["type"] == "link") { - $data = query_page_info($item["link"]); - - if (isset($item["title"]) && (trim($item["title"]) != "")) - $data["title"] = $item["title"]; - - if (isset($item["description"]) && (trim($item["description"]) != "")) - $data["text"] = $item["description"]; - - $_REQUEST["body"] .= add_page_info_data($data); - } elseif (($item["type"] == "photo") && ($item["image"] != "")) - $_REQUEST["body"] .= "\n\n[img]".$item["image"]."[/img]\n"; - - //print_r($_REQUEST); - item_post($a); + Post\Delayed::add($link, $post, PRIORITY_MEDIUM, Post\Delayed::UNPREPARED); }