X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fitems.php;h=0d447f2b40bcd1723701c78c150ac8958e216f54;hb=3da1b9f3196a029708571009ecb820a2dc2aff7d;hp=884b91393bf4ad423cb82820486569ab3c979a3b;hpb=946fc82c77e16a980181ba5cc9df05ce06c98ae2;p=friendica.git diff --git a/include/items.php b/include/items.php index 884b91393b..0d447f2b40 100644 --- a/include/items.php +++ b/include/items.php @@ -2,46 +2,41 @@ /** * @file include/items.php */ -use Friendica\App; + +use Friendica\BaseObject; use Friendica\Content\Feature; use Friendica\Core\Addon; use Friendica\Core\Config; use Friendica\Core\L10n; use Friendica\Core\PConfig; -use Friendica\Core\Worker; use Friendica\Core\System; -use Friendica\Database\DBM; -use Friendica\Model\Contact; -use Friendica\Model\GContact; -use Friendica\Model\Group; -use Friendica\Model\Term; -use Friendica\Model\User; +use Friendica\Database\DBA; use Friendica\Model\Item; -use Friendica\Model\Conversation; -use Friendica\Object\Image; use Friendica\Protocol\DFRN; -use Friendica\Protocol\OStatus; use Friendica\Protocol\Feed; +use Friendica\Protocol\OStatus; +use Friendica\Util\DateTimeFormat; use Friendica\Util\Network; use Friendica\Util\ParseUrl; +use Friendica\Util\Temporal; -require_once 'include/bbcode.php'; -require_once 'include/tags.php'; require_once 'include/text.php'; -require_once 'include/threads.php'; require_once 'mod/share.php'; require_once 'include/enotify.php'; -function add_page_info_data($data) { +function add_page_info_data(array $data, $no_photos = false) +{ Addon::callHooks('page_info_data', $data); // It maybe is a rich content, but if it does have everything that a link has, // then treat it that way if (($data["type"] == "rich") && is_string($data["title"]) && - is_string($data["text"]) && (sizeof($data["images"]) > 0)) { + is_string($data["text"]) && !empty($data["images"])) { $data["type"] = "link"; } + $data["title"] = defaults($data, "title", ""); + if ((($data["type"] != "link") && ($data["type"] != "video") && ($data["type"] != "photo")) || ($data["title"] == $data["url"])) { return ""; } @@ -56,23 +51,23 @@ function add_page_info_data($data) { $text = "[attachment type='".$data["type"]."'"; - if ($data["text"] == "") { + if (empty($data["text"])) { $data["text"] = $data["title"]; } - if ($data["text"] == "") { + if (empty($data["text"])) { $data["text"] = $data["url"]; } - if ($data["url"] != "") { + if (!empty($data["url"])) { $text .= " url='".$data["url"]."'"; } - if ($data["title"] != "") { + if (!empty($data["title"])) { $text .= " title='".$data["title"]."'"; } - if (sizeof($data["images"]) > 0) { + if (!empty($data["images"])) { $preview = str_replace(["[", "]"], ["[", "]"], htmlentities($data["images"][0]["src"], ENT_QUOTES, 'UTF-8', false)); // if the preview picture is larger than 500 pixels then show it in a larger mode // But only, if the picture isn't higher than large (To prevent huge posts) @@ -89,7 +84,7 @@ function add_page_info_data($data) { $hashtags = ""; if (isset($data["keywords"]) && count($data["keywords"])) { $hashtags = "\n"; - foreach ($data["keywords"] AS $keyword) { + foreach ($data["keywords"] as $keyword) { /// @TODO make a positive list of allowed characters $hashtag = str_replace([" ", "+", "/", ".", "#", "'", "’", "`", "(", ")", "„", "“"], ["", "", "", "", "", "", "", "", "", "", "", ""], $keyword); @@ -100,8 +95,8 @@ function add_page_info_data($data) { return "\n".$text.$hashtags; } -function query_page_info($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") { - +function query_page_info($url, $photo = "", $keywords = false, $keyword_blacklist = "") +{ $data = ParseUrl::getSiteinfoCached($url, true); if ($photo != "") { @@ -116,8 +111,10 @@ function query_page_info($url, $no_photos = false, $photo = "", $keywords = fals if (($keyword_blacklist != "") && isset($data["keywords"])) { $list = explode(", ", $keyword_blacklist); - foreach ($list AS $keyword) { + + foreach ($list as $keyword) { $keyword = trim($keyword); + $index = array_search($keyword, $data["keywords"]); if ($index !== false) { unset($data["keywords"][$index]); @@ -128,12 +125,13 @@ function query_page_info($url, $no_photos = false, $photo = "", $keywords = fals return $data; } -function add_page_keywords($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") { - $data = query_page_info($url, $no_photos, $photo, $keywords, $keyword_blacklist); +function add_page_keywords($url, $photo = "", $keywords = false, $keyword_blacklist = "") +{ + $data = query_page_info($url, $photo, $keywords, $keyword_blacklist); $tags = ""; if (isset($data["keywords"]) && count($data["keywords"])) { - foreach ($data["keywords"] AS $keyword) { + foreach ($data["keywords"] as $keyword) { $hashtag = str_replace([" ", "+", "/", ".", "#", "'"], ["", "", "", "", "", ""], $keyword); @@ -148,16 +146,17 @@ function add_page_keywords($url, $no_photos = false, $photo = "", $keywords = fa return $tags; } -function add_page_info($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") { - $data = query_page_info($url, $no_photos, $photo, $keywords, $keyword_blacklist); +function add_page_info($url, $no_photos = false, $photo = "", $keywords = false, $keyword_blacklist = "") +{ + $data = query_page_info($url, $photo, $keywords, $keyword_blacklist); - $text = add_page_info_data($data); + $text = add_page_info_data($data, $no_photos); return $text; } -function add_page_info_to_body($body, $texturl = false, $no_photos = false) { - +function add_page_info_to_body($body, $texturl = false, $no_photos = false) +{ logger('add_page_info_to_body: fetch page info for body ' . $body, LOGGER_DEBUG); $URLSearchString = "^\[\]"; @@ -234,10 +233,9 @@ function add_page_info_to_body($body, $texturl = false, $no_photos = false) { * model where comments can have sub-threads. That would require some massive sorting * to get all the feed items into a mostly linear ordering, and might still require * recursion. - * - * @TODO find proper type-hints */ -function consume_feed($xml, $importer, &$contact, &$hub, $datedir = 0, $pass = 0) { +function consume_feed($xml, array $importer, array $contact, &$hub, $datedir = 0, $pass = 0) +{ if ($contact['network'] === NETWORK_OSTATUS) { if ($pass < 2) { // Test - remove before flight @@ -246,6 +244,7 @@ function consume_feed($xml, $importer, &$contact, &$hub, $datedir = 0, $pass = 0 logger("Consume OStatus messages ", LOGGER_DEBUG); OStatus::import($xml, $importer, $contact, $hub); } + return; } @@ -254,6 +253,7 @@ function consume_feed($xml, $importer, &$contact, &$hub, $datedir = 0, $pass = 0 logger("Consume feeds", LOGGER_DEBUG); Feed::import($xml, $importer, $contact, $hub); } + return; } @@ -270,9 +270,10 @@ function consume_feed($xml, $importer, &$contact, &$hub, $datedir = 0, $pass = 0 FROM `contact` LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid` WHERE `contact`.`id` = %d AND `user`.`uid` = %d", - dbesc($contact["id"]), dbesc($importer["uid"]) + DBA::escape($contact["id"]), DBA::escape($importer["uid"]) ); - if (DBM::is_result($r)) { + + if (DBA::isResult($r)) { logger("Now import the DFRN feed"); DFRN::import($xml, $r[0], true); return; @@ -280,11 +281,12 @@ function consume_feed($xml, $importer, &$contact, &$hub, $datedir = 0, $pass = 0 } } -function subscribe_to_hub($url, $importer, $contact, $hubmode = 'subscribe') { - - $a = get_app(); +function subscribe_to_hub($url, array $importer, array $contact, $hubmode = 'subscribe') +{ + $a = BaseObject::getApp(); + $r = null; - if (is_array($importer)) { + if (!empty($importer)) { $r = q("SELECT `nickname` FROM `user` WHERE `uid` = %d LIMIT 1", intval($importer['uid']) ); @@ -295,11 +297,11 @@ function subscribe_to_hub($url, $importer, $contact, $hubmode = 'subscribe') { * through the direct Diaspora protocol. If we try and use * the feed, we'll get duplicates. So don't. */ - if ((!DBM::is_result($r)) || $contact['network'] === NETWORK_DIASPORA) { + if ((!DBA::isResult($r)) || $contact['network'] === NETWORK_DIASPORA) { return; } - $push_url = Config::get('system','url') . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id']; + $push_url = System::baseUrl() . '/pubsub/' . $r[0]['nickname'] . '/' . $contact['id']; // Use a single verify token, even if multiple hubs $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : random_string()); @@ -309,7 +311,7 @@ function subscribe_to_hub($url, $importer, $contact, $hubmode = 'subscribe') { logger('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: ' . $push_url . ' with verifier ' . $verify_token); if (!strlen($contact['hub-verify']) || ($contact['hub-verify'] != $verify_token)) { - dba::update('contact', ['hub-verify' => $verify_token], ['id' => $contact['id']]); + DBA::update('contact', ['hub-verify' => $verify_token], ['id' => $contact['id']]); } Network::post($url, $params); @@ -320,40 +322,39 @@ function subscribe_to_hub($url, $importer, $contact, $hubmode = 'subscribe') { } -/// @TODO type-hint is array -function drop_items($items) { +function drop_items(array $items) +{ $uid = 0; if (!local_user() && !remote_user()) { return; } - if (count($items)) { + if (!empty($items)) { foreach ($items as $item) { - $owner = Item::delete($item); - if ($owner && !$uid) + $owner = Item::deleteForUser(['id' => $item], local_user()); + + if ($owner && !$uid) { $uid = $owner; + } } } } -function drop_item($id) { - - $a = get_app(); +function drop_item($id) +{ + $a = BaseObject::getApp(); // locate item to be deleted - $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1", - intval($id) - ); + $fields = ['id', 'uid', 'contact-id', 'deleted']; + $item = Item::selectFirstForUser(local_user(), $fields, ['id' => $id]); - if (!DBM::is_result($r)) { + if (!DBA::isResult($item)) { notice(L10n::t('Item not found.') . EOL); goaway(System::baseUrl() . '/' . $_SESSION['return_url']); } - $item = $r[0]; - if ($item['deleted']) { return 0; } @@ -362,7 +363,7 @@ function drop_item($id) { // check if logged in user is either the author or owner of this item - if (is_array($_SESSION['remote'])) { + if (!empty($_SESSION['remote'])) { foreach ($_SESSION['remote'] as $visitor) { if ($visitor['uid'] == $item['uid'] && $visitor['cid'] == $item['contact-id']) { $contact_id = $visitor['cid']; @@ -372,13 +373,13 @@ function drop_item($id) { } if ((local_user() == $item['uid']) || $contact_id) { - // Check if we should do HTML-based delete confirmation if ($_REQUEST['confirm']) { //
can't take arguments in its "action" parameter // so add any arguments as hidden inputs $query = explode_querystring($a->query_string); $inputs = []; + foreach ($query['args'] as $arg) { if (strpos($arg, 'confirm=') === false) { $arg_parts = explode('=', $arg); @@ -402,7 +403,7 @@ function drop_item($id) { } // delete the item - Item::delete($item['id']); + Item::deleteForUser(['id' => $item['id']], local_user()); goaway(System::baseUrl() . '/' . $_SESSION['return_url']); //NOTREACHED @@ -414,8 +415,9 @@ function drop_item($id) { } /* arrange the list in years */ -function list_post_dates($uid, $wall) { - $dnow = datetime_convert('',date_default_timezone_get(), 'now','Y-m-d'); +function list_post_dates($uid, $wall) +{ + $dnow = DateTimeFormat::localNow('Y-m-d'); $dthen = Item::firstPostDate($uid, $wall); if (!$dthen) { @@ -435,20 +437,23 @@ function list_post_dates($uid, $wall) { while (substr($dnow, 0, 7) >= substr($dthen, 0, 7)) { $dyear = intval(substr($dnow, 0, 4)); $dstart = substr($dnow, 0, 8) . '01'; - $dend = substr($dnow, 0, 8) . get_dim(intval($dnow), intval(substr($dnow, 5))); - $start_month = datetime_convert('', '', $dstart, 'Y-m-d'); - $end_month = datetime_convert('', '', $dend, 'Y-m-d'); - $str = day_translate(datetime_convert('', '', $dnow, 'F')); - if (!$ret[$dyear]) { + $dend = substr($dnow, 0, 8) . Temporal::getDaysInMonth(intval($dnow), intval(substr($dnow, 5))); + $start_month = DateTimeFormat::utc($dstart, 'Y-m-d'); + $end_month = DateTimeFormat::utc($dend, 'Y-m-d'); + $str = day_translate(DateTimeFormat::utc($dnow, 'F')); + + if (empty($ret[$dyear])) { $ret[$dyear] = []; } + $ret[$dyear][] = [$str, $end_month, $start_month]; - $dnow = datetime_convert('', '', $dnow . ' -1 month', 'Y-m-d'); + $dnow = DateTimeFormat::utc($dnow . ' -1 month', 'Y-m-d'); } return $ret; } -function posted_date_widget($url, $uid, $wall) { +function posted_date_widget($url, $uid, $wall) +{ $o = ''; if (!Feature::isEnabled($uid, 'archives')) { @@ -462,18 +467,15 @@ function posted_date_widget($url, $uid, $wall) { return $o; */ - $visible_years = PConfig::get($uid,'system','archive_visible_years'); - if (!$visible_years) { - $visible_years = 5; - } + $visible_years = PConfig::get($uid, 'system', 'archive_visible_years', 5); $ret = list_post_dates($uid, $wall); - if (!DBM::is_result($ret)) { + if (!DBA::isResult($ret)) { return $o; } - $cutoff_year = intval(datetime_convert('',date_default_timezone_get(), 'now', 'Y')) - $visible_years; + $cutoff_year = intval(DateTimeFormat::localNow('Y')) - $visible_years; $cutoff = ((array_key_exists($cutoff_year, $ret))? true : false); $o = replace_macros(get_markup_template('posted_date_widget.tpl'),[