X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FContent%2FWidget.php;h=dcfc1d0e3d95da631db6899dc781c10eff9f017c;hb=9bf065c9d8343ff2d2b6b5a7514a78471a0bedd4;hp=e89245cd2bc40b0c4ed012fc6595159dde61c827;hpb=6ceb74c3654a31f3c5bd51404121665e4bc36810;p=friendica.git diff --git a/src/Content/Widget.php b/src/Content/Widget.php index e89245cd2b..dcfc1d0e3d 100644 --- a/src/Content/Widget.php +++ b/src/Content/Widget.php @@ -15,9 +15,12 @@ use Friendica\Database\DBA; use Friendica\Model\Contact; use Friendica\Model\FileTag; use Friendica\Model\GContact; +use Friendica\Model\Item; use Friendica\Model\Profile; +use Friendica\Util\DateTimeFormat; use Friendica\Util\Proxy as ProxyUtils; use Friendica\Util\Strings; +use Friendica\Util\Temporal; use Friendica\Util\XML; class Widget @@ -253,7 +256,7 @@ class Widget * @param string $baseurl baseurl * @param string $selected optional, default empty * @return string|void - * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \Exception */ public static function fileAs($baseurl, $selected = '') { @@ -266,15 +269,9 @@ class Widget return; } - $matches = []; - $terms = array(); - $cnt = preg_match_all('/\[(.*?)\]/', $saved, $matches, PREG_SET_ORDER); - if ($cnt) { - foreach ($matches as $mtch) - { - $unescaped = XML::escape(FileTag::decode($mtch[1])); - $terms[] = ['ref' => $unescaped, 'name' => $unescaped]; - } + $terms = []; + foreach (FileTag::fileToArray($saved) as $savedFolderName) { + $terms[] = ['ref' => $savedFolderName, 'name' => $savedFolderName]; } return self::filter( @@ -309,15 +306,9 @@ class Widget return; } - $matches = []; $terms = array(); - $cnt = preg_match_all('/<(.*?)>/', $saved, $matches, PREG_SET_ORDER); - - if ($cnt) { - foreach ($matches as $mtch) { - $unescaped = XML::escape(FileTag::decode($mtch[1])); - $terms[] = ['ref' => $unescaped, 'name' => $unescaped]; - } + foreach (FileTag::fileToArray($saved, 'category') as $savedFolderName) { + $terms[] = ['ref' => $savedFolderName, 'name' => $savedFolderName]; } return self::filter( @@ -444,4 +435,74 @@ class Widget return ''; } + + /** + * @param string $url Base page URL + * @param int $uid User ID consulting/publishing posts + * @param bool $wall True: Posted by User; False: Posted to User (network timeline) + * @return string + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + */ + public static function postedByYear(string $url, int $uid, bool $wall) + { + $o = ''; + + if (!Feature::isEnabled($uid, 'archives')) { + return $o; + } + + $visible_years = PConfig::get($uid, 'system', 'archive_visible_years', 5); + + /* arrange the list in years */ + $dnow = DateTimeFormat::localNow('Y-m-d'); + + $ret = []; + + $dthen = Item::firstPostDate($uid, $wall); + if ($dthen) { + // Set the start and end date to the beginning of the month + $dnow = substr($dnow, 0, 8) . '01'; + $dthen = substr($dthen, 0, 8) . '01'; + + /* + * Starting with the current month, get the first and last days of every + * month down to and including the month of the first post + */ + 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) . 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 = L10n::getDay(DateTimeFormat::utc($dnow, 'F')); + + if (empty($ret[$dyear])) { + $ret[$dyear] = []; + } + + $ret[$dyear][] = [$str, $end_month, $start_month]; + $dnow = DateTimeFormat::utc($dnow . ' -1 month', 'Y-m-d'); + } + } + + if (!DBA::isResult($ret)) { + return $o; + } + + + $cutoff_year = intval(DateTimeFormat::localNow('Y')) - $visible_years; + $cutoff = array_key_exists($cutoff_year, $ret); + + $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/posted_date.tpl'),[ + '$title' => L10n::t('Archives'), + '$size' => $visible_years, + '$cutoff_year' => $cutoff_year, + '$cutoff' => $cutoff, + '$url' => $url, + '$dates' => $ret, + '$showmore' => L10n::t('show more') + ]); + + return $o; + } }