2015-12-27 10:08:20 +01:00
|
|
|
<?php
|
|
|
|
|
2018-12-03 01:22:45 +01:00
|
|
|
namespace Shaarli\Bookmark;
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
use Shaarli\Bookmark\Exception\LinkNotFoundException;
|
2018-12-03 01:10:39 +01:00
|
|
|
|
2015-12-27 10:08:20 +01:00
|
|
|
/**
|
|
|
|
* Class LinkFilter.
|
|
|
|
*
|
|
|
|
* Perform search and filter operation on link data list.
|
|
|
|
*/
|
|
|
|
class LinkFilter
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var string permalinks.
|
|
|
|
*/
|
2018-12-03 01:22:45 +01:00
|
|
|
public static $FILTER_HASH = 'permalink';
|
2015-12-27 10:08:20 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string text search.
|
|
|
|
*/
|
2018-12-03 01:22:45 +01:00
|
|
|
public static $FILTER_TEXT = 'fulltext';
|
2015-12-27 10:08:20 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string tag filter.
|
|
|
|
*/
|
2018-12-03 01:22:45 +01:00
|
|
|
public static $FILTER_TAG = 'tags';
|
2015-12-27 10:08:20 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string filter by day.
|
|
|
|
*/
|
2018-12-03 01:22:45 +01:00
|
|
|
public static $FILTER_DAY = 'FILTER_DAY';
|
2015-12-27 10:08:20 +01:00
|
|
|
|
2016-05-10 23:18:04 +02:00
|
|
|
/**
|
|
|
|
* @var string Allowed characters for hashtags (regex syntax).
|
|
|
|
*/
|
|
|
|
public static $HASHTAG_CHARS = '\p{Pc}\p{N}\p{L}\p{Mn}';
|
|
|
|
|
2015-12-27 10:08:20 +01:00
|
|
|
/**
|
2016-11-28 16:16:44 +01:00
|
|
|
* @var LinkDB all available links.
|
2015-12-27 10:08:20 +01:00
|
|
|
*/
|
|
|
|
private $links;
|
|
|
|
|
|
|
|
/**
|
2016-11-28 16:16:44 +01:00
|
|
|
* @param LinkDB $links initialization.
|
2015-12-27 10:08:20 +01:00
|
|
|
*/
|
|
|
|
public function __construct($links)
|
|
|
|
{
|
|
|
|
$this->links = $links;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter links according to parameters.
|
|
|
|
*
|
|
|
|
* @param string $type Type of filter (eg. tags, permalink, etc.).
|
2016-03-21 21:40:49 +01:00
|
|
|
* @param mixed $request Filter content.
|
2015-12-27 10:08:20 +01:00
|
|
|
* @param bool $casesensitive Optional: Perform case sensitive filter if true.
|
2017-01-16 13:57:11 +01:00
|
|
|
* @param string $visibility Optional: return only all/private/public links
|
2017-06-01 17:55:26 +02:00
|
|
|
* @param string $untaggedonly Optional: return only untagged links. Applies only if $type includes FILTER_TAG
|
2015-12-27 10:08:20 +01:00
|
|
|
*
|
|
|
|
* @return array filtered link list.
|
|
|
|
*/
|
2017-06-01 17:55:26 +02:00
|
|
|
public function filter($type, $request, $casesensitive = false, $visibility = 'all', $untaggedonly = false)
|
2015-12-27 10:08:20 +01:00
|
|
|
{
|
2018-12-03 01:22:45 +01:00
|
|
|
if (!in_array($visibility, ['all', 'public', 'private'])) {
|
2017-01-16 13:57:11 +01:00
|
|
|
$visibility = 'all';
|
|
|
|
}
|
|
|
|
|
2018-10-13 00:19:03 +02:00
|
|
|
switch ($type) {
|
2015-12-27 10:08:20 +01:00
|
|
|
case self::$FILTER_HASH:
|
|
|
|
return $this->filterSmallHash($request);
|
2017-06-01 17:55:26 +02:00
|
|
|
case self::$FILTER_TAG | self::$FILTER_TEXT: // == "vuotext"
|
|
|
|
$noRequest = empty($request) || (empty($request[0]) && empty($request[1]));
|
|
|
|
if ($noRequest) {
|
|
|
|
if ($untaggedonly) {
|
|
|
|
return $this->filterUntagged($visibility);
|
2016-02-23 19:21:14 +01:00
|
|
|
}
|
2017-06-01 17:55:26 +02:00
|
|
|
return $this->noFilter($visibility);
|
2016-02-23 19:21:14 +01:00
|
|
|
}
|
2017-06-01 17:55:26 +02:00
|
|
|
if ($untaggedonly) {
|
|
|
|
$filtered = $this->filterUntagged($visibility);
|
|
|
|
} else {
|
|
|
|
$filtered = $this->links;
|
|
|
|
}
|
|
|
|
if (!empty($request[0])) {
|
|
|
|
$filtered = (new LinkFilter($filtered))->filterTags($request[0], $casesensitive, $visibility);
|
|
|
|
}
|
|
|
|
if (!empty($request[1])) {
|
|
|
|
$filtered = (new LinkFilter($filtered))->filterFulltext($request[1], $visibility);
|
|
|
|
}
|
|
|
|
return $filtered;
|
2015-12-27 10:08:20 +01:00
|
|
|
case self::$FILTER_TEXT:
|
2017-01-16 13:57:11 +01:00
|
|
|
return $this->filterFulltext($request, $visibility);
|
2015-12-27 10:08:20 +01:00
|
|
|
case self::$FILTER_TAG:
|
2017-06-01 17:55:26 +02:00
|
|
|
if ($untaggedonly) {
|
|
|
|
return $this->filterUntagged($visibility);
|
|
|
|
} else {
|
|
|
|
return $this->filterTags($request, $casesensitive, $visibility);
|
|
|
|
}
|
2015-12-27 10:08:20 +01:00
|
|
|
case self::$FILTER_DAY:
|
|
|
|
return $this->filterDay($request);
|
|
|
|
default:
|
2017-01-16 13:57:11 +01:00
|
|
|
return $this->noFilter($visibility);
|
2015-12-27 10:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unknown filter, but handle private only.
|
|
|
|
*
|
2017-01-16 13:57:11 +01:00
|
|
|
* @param string $visibility Optional: return only all/private/public links
|
2015-12-27 10:08:20 +01:00
|
|
|
*
|
|
|
|
* @return array filtered links.
|
|
|
|
*/
|
2017-01-16 13:57:11 +01:00
|
|
|
private function noFilter($visibility = 'all')
|
2015-12-27 10:08:20 +01:00
|
|
|
{
|
2017-01-16 13:57:11 +01:00
|
|
|
if ($visibility === 'all') {
|
2015-12-27 10:08:20 +01:00
|
|
|
return $this->links;
|
|
|
|
}
|
|
|
|
|
|
|
|
$out = array();
|
2016-11-28 16:16:44 +01:00
|
|
|
foreach ($this->links as $key => $value) {
|
2017-01-16 13:57:11 +01:00
|
|
|
if ($value['private'] && $visibility === 'private') {
|
|
|
|
$out[$key] = $value;
|
2018-12-03 01:22:45 +01:00
|
|
|
} elseif (!$value['private'] && $visibility === 'public') {
|
2016-11-28 16:16:44 +01:00
|
|
|
$out[$key] = $value;
|
2015-12-27 10:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $out;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the shaare corresponding to a smallHash.
|
|
|
|
*
|
|
|
|
* @param string $smallHash permalink hash.
|
|
|
|
*
|
|
|
|
* @return array $filtered array containing permalink data.
|
2016-03-21 21:40:49 +01:00
|
|
|
*
|
2018-12-03 01:22:45 +01:00
|
|
|
* @throws \Shaarli\Bookmark\Exception\LinkNotFoundException if the smallhash doesn't match any link.
|
2015-12-27 10:08:20 +01:00
|
|
|
*/
|
|
|
|
private function filterSmallHash($smallHash)
|
|
|
|
{
|
|
|
|
$filtered = array();
|
2016-11-28 16:16:44 +01:00
|
|
|
foreach ($this->links as $key => $l) {
|
2016-11-28 18:24:15 +01:00
|
|
|
if ($smallHash == $l['shorturl']) {
|
2015-12-27 10:08:20 +01:00
|
|
|
// Yes, this is ugly and slow
|
2016-11-28 16:16:44 +01:00
|
|
|
$filtered[$key] = $l;
|
2015-12-27 10:08:20 +01:00
|
|
|
return $filtered;
|
|
|
|
}
|
|
|
|
}
|
2016-03-21 21:40:49 +01:00
|
|
|
|
|
|
|
if (empty($filtered)) {
|
|
|
|
throw new LinkNotFoundException();
|
|
|
|
}
|
|
|
|
|
2015-12-27 10:08:20 +01:00
|
|
|
return $filtered;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the list of links corresponding to a full-text search
|
|
|
|
*
|
|
|
|
* Searches:
|
|
|
|
* - in the URLs, title and description;
|
2016-02-01 20:33:58 +01:00
|
|
|
* - are case-insensitive;
|
|
|
|
* - terms surrounded by quotes " are exact terms search.
|
|
|
|
* - terms starting with a dash - are excluded (except exact terms).
|
2015-12-27 10:08:20 +01:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* print_r($mydb->filterFulltext('hollandais'));
|
|
|
|
*
|
|
|
|
* mb_convert_case($val, MB_CASE_LOWER, 'UTF-8')
|
|
|
|
* - allows to perform searches on Unicode text
|
|
|
|
* - see https://github.com/shaarli/Shaarli/issues/75 for examples
|
|
|
|
*
|
|
|
|
* @param string $searchterms search query.
|
2018-12-03 01:22:45 +01:00
|
|
|
* @param string $visibility Optional: return only all/private/public links.
|
2015-12-27 10:08:20 +01:00
|
|
|
*
|
|
|
|
* @return array search results.
|
|
|
|
*/
|
2017-01-16 13:57:11 +01:00
|
|
|
private function filterFulltext($searchterms, $visibility = 'all')
|
2015-12-27 10:08:20 +01:00
|
|
|
{
|
2016-02-23 19:21:14 +01:00
|
|
|
if (empty($searchterms)) {
|
2017-01-16 13:57:11 +01:00
|
|
|
return $this->noFilter($visibility);
|
2016-02-23 19:21:14 +01:00
|
|
|
}
|
|
|
|
|
2016-02-02 19:42:48 +01:00
|
|
|
$filtered = array();
|
2016-01-24 07:13:11 +01:00
|
|
|
$search = mb_convert_case(html_entity_decode($searchterms), MB_CASE_LOWER, 'UTF-8');
|
2016-02-01 20:33:58 +01:00
|
|
|
$exactRegex = '/"([^"]+)"/';
|
|
|
|
// Retrieve exact search terms.
|
|
|
|
preg_match_all($exactRegex, $search, $exactSearch);
|
|
|
|
$exactSearch = array_values(array_filter($exactSearch[1]));
|
|
|
|
|
|
|
|
// Remove exact search terms to get AND terms search.
|
|
|
|
$explodedSearchAnd = explode(' ', trim(preg_replace($exactRegex, '', $search)));
|
|
|
|
$explodedSearchAnd = array_values(array_filter($explodedSearchAnd));
|
|
|
|
|
|
|
|
// Filter excluding terms and update andSearch.
|
|
|
|
$excludeSearch = array();
|
|
|
|
$andSearch = array();
|
|
|
|
foreach ($explodedSearchAnd as $needle) {
|
|
|
|
if ($needle[0] == '-' && strlen($needle) > 1) {
|
|
|
|
$excludeSearch[] = substr($needle, 1);
|
|
|
|
} else {
|
|
|
|
$andSearch[] = $needle;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-27 10:08:20 +01:00
|
|
|
$keys = array('title', 'description', 'url', 'tags');
|
2016-01-24 07:13:11 +01:00
|
|
|
|
2015-12-27 10:08:20 +01:00
|
|
|
// Iterate over every stored link.
|
2016-11-28 16:16:44 +01:00
|
|
|
foreach ($this->links as $id => $link) {
|
2015-12-27 10:08:20 +01:00
|
|
|
// ignore non private links when 'privatonly' is on.
|
2017-01-16 13:57:11 +01:00
|
|
|
if ($visibility !== 'all') {
|
2018-12-03 01:22:45 +01:00
|
|
|
if (!$link['private'] && $visibility === 'private') {
|
2017-01-16 13:57:11 +01:00
|
|
|
continue;
|
2018-02-28 22:34:40 +01:00
|
|
|
} elseif ($link['private'] && $visibility === 'public') {
|
2017-01-16 13:57:11 +01:00
|
|
|
continue;
|
|
|
|
}
|
2015-12-27 10:08:20 +01:00
|
|
|
}
|
|
|
|
|
2016-02-02 19:42:48 +01:00
|
|
|
// Concatenate link fields to search across fields.
|
|
|
|
// Adds a '\' separator for exact search terms.
|
|
|
|
$content = '';
|
2015-12-27 10:08:20 +01:00
|
|
|
foreach ($keys as $key) {
|
2016-02-02 19:42:48 +01:00
|
|
|
$content .= mb_convert_case($link[$key], MB_CASE_LOWER, 'UTF-8') . '\\';
|
2015-12-27 10:08:20 +01:00
|
|
|
}
|
2016-02-02 19:42:48 +01:00
|
|
|
|
|
|
|
// Be optimistic
|
|
|
|
$found = true;
|
|
|
|
|
|
|
|
// First, we look for exact term search
|
|
|
|
for ($i = 0; $i < count($exactSearch) && $found; $i++) {
|
|
|
|
$found = strpos($content, $exactSearch[$i]) !== false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate over keywords, if keyword is not found,
|
|
|
|
// no need to check for the others. We want all or nothing.
|
|
|
|
for ($i = 0; $i < count($andSearch) && $found; $i++) {
|
|
|
|
$found = strpos($content, $andSearch[$i]) !== false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exclude terms.
|
|
|
|
for ($i = 0; $i < count($excludeSearch) && $found; $i++) {
|
|
|
|
$found = strpos($content, $excludeSearch[$i]) === false;
|
|
|
|
}
|
|
|
|
|
2015-12-27 10:08:20 +01:00
|
|
|
if ($found) {
|
2016-11-28 16:16:44 +01:00
|
|
|
$filtered[$id] = $link;
|
2015-12-27 10:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $filtered;
|
|
|
|
}
|
|
|
|
|
2017-08-26 23:05:02 +02:00
|
|
|
/**
|
|
|
|
* generate a regex fragment out of a tag
|
2018-12-03 01:22:45 +01:00
|
|
|
*
|
2017-08-26 23:05:02 +02:00
|
|
|
* @param string $tag to to generate regexs from. may start with '-' to negate, contain '*' as wildcard
|
2018-12-03 01:22:45 +01:00
|
|
|
*
|
2017-08-26 23:05:02 +02:00
|
|
|
* @return string generated regex fragment
|
|
|
|
*/
|
|
|
|
private static function tag2regex($tag)
|
|
|
|
{
|
|
|
|
$len = strlen($tag);
|
2018-10-13 00:19:03 +02:00
|
|
|
if (!$len || $tag === "-" || $tag === "*") {
|
2017-08-26 23:05:02 +02:00
|
|
|
// nothing to search, return empty regex
|
|
|
|
return '';
|
|
|
|
}
|
2018-10-13 00:19:03 +02:00
|
|
|
if ($tag[0] === "-") {
|
2017-08-26 23:05:02 +02:00
|
|
|
// query is negated
|
|
|
|
$i = 1; // use offset to start after '-' character
|
|
|
|
$regex = '(?!'; // create negative lookahead
|
|
|
|
} else {
|
|
|
|
$i = 0; // start at first character
|
|
|
|
$regex = '(?='; // use positive lookahead
|
|
|
|
}
|
|
|
|
$regex .= '.*(?:^| )'; // before tag may only be a space or the beginning
|
|
|
|
// iterate over string, separating it into placeholder and content
|
2018-10-13 00:19:03 +02:00
|
|
|
for (; $i < $len; $i++) {
|
|
|
|
if ($tag[$i] === '*') {
|
2017-08-26 23:05:02 +02:00
|
|
|
// placeholder found
|
|
|
|
$regex .= '[^ ]*?';
|
|
|
|
} else {
|
|
|
|
// regular characters
|
|
|
|
$offset = strpos($tag, '*', $i);
|
2018-10-13 00:19:03 +02:00
|
|
|
if ($offset === false) {
|
2017-08-26 23:05:02 +02:00
|
|
|
// no placeholder found, set offset to end of string
|
|
|
|
$offset = $len;
|
|
|
|
}
|
|
|
|
// subtract one, as we want to get before the placeholder or end of string
|
|
|
|
$offset -= 1;
|
|
|
|
// we got a tag name that we want to search for. escape any regex characters to prevent conflicts.
|
|
|
|
$regex .= preg_quote(substr($tag, $i, $offset - $i + 1), '/');
|
|
|
|
// move $i on
|
|
|
|
$i = $offset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$regex .= '(?:$| ))'; // after the tag may only be a space or the end
|
|
|
|
return $regex;
|
|
|
|
}
|
|
|
|
|
2015-12-27 10:08:20 +01:00
|
|
|
/**
|
|
|
|
* Returns the list of links associated with a given list of tags
|
|
|
|
*
|
|
|
|
* You can specify one or more tags, separated by space or a comma, e.g.
|
|
|
|
* print_r($mydb->filterTags('linux programming'));
|
|
|
|
*
|
|
|
|
* @param string $tags list of tags separated by commas or blank spaces.
|
|
|
|
* @param bool $casesensitive ignore case if false.
|
2017-01-16 13:57:11 +01:00
|
|
|
* @param string $visibility Optional: return only all/private/public links.
|
2015-12-27 10:08:20 +01:00
|
|
|
*
|
|
|
|
* @return array filtered links.
|
|
|
|
*/
|
2017-01-16 13:57:11 +01:00
|
|
|
public function filterTags($tags, $casesensitive = false, $visibility = 'all')
|
2015-12-27 10:08:20 +01:00
|
|
|
{
|
2017-08-26 23:05:02 +02:00
|
|
|
// get single tags (we may get passed an array, even though the docs say different)
|
|
|
|
$inputTags = $tags;
|
2018-10-13 00:19:03 +02:00
|
|
|
if (!is_array($tags)) {
|
2017-08-26 23:05:02 +02:00
|
|
|
// we got an input string, split tags
|
|
|
|
$inputTags = preg_split('/(?:\s+)|,/', $inputTags, -1, PREG_SPLIT_NO_EMPTY);
|
|
|
|
}
|
|
|
|
|
2018-10-13 00:19:03 +02:00
|
|
|
if (!count($inputTags)) {
|
2017-08-26 23:05:02 +02:00
|
|
|
// no input tags
|
2017-01-16 13:57:11 +01:00
|
|
|
return $this->noFilter($visibility);
|
2016-02-23 19:21:14 +01:00
|
|
|
}
|
|
|
|
|
2017-08-26 23:05:02 +02:00
|
|
|
// build regex from all tags
|
|
|
|
$re = '/^' . implode(array_map("self::tag2regex", $inputTags)) . '.*$/';
|
2018-10-13 00:19:03 +02:00
|
|
|
if (!$casesensitive) {
|
2017-08-26 23:05:02 +02:00
|
|
|
// make regex case insensitive
|
|
|
|
$re .= 'i';
|
2016-01-20 23:34:33 +01:00
|
|
|
}
|
2015-12-27 10:08:20 +01:00
|
|
|
|
2017-08-26 23:05:02 +02:00
|
|
|
// create resulting array
|
|
|
|
$filtered = array();
|
|
|
|
|
|
|
|
// iterate over each link
|
2016-11-28 16:16:44 +01:00
|
|
|
foreach ($this->links as $key => $link) {
|
2017-08-26 23:05:02 +02:00
|
|
|
// check level of visibility
|
|
|
|
// ignore non private links when 'privateonly' is on.
|
2017-01-16 13:57:11 +01:00
|
|
|
if ($visibility !== 'all') {
|
2018-12-03 01:22:45 +01:00
|
|
|
if (!$link['private'] && $visibility === 'private') {
|
2017-01-16 13:57:11 +01:00
|
|
|
continue;
|
2018-02-28 22:34:40 +01:00
|
|
|
} elseif ($link['private'] && $visibility === 'public') {
|
2017-01-16 13:57:11 +01:00
|
|
|
continue;
|
|
|
|
}
|
2015-12-27 10:08:20 +01:00
|
|
|
}
|
2017-08-26 23:05:02 +02:00
|
|
|
$search = $link['tags']; // build search string, start with tags of current link
|
2018-10-13 00:19:03 +02:00
|
|
|
if (strlen(trim($link['description'])) && strpos($link['description'], '#') !== false) {
|
2017-08-26 23:05:02 +02:00
|
|
|
// description given and at least one possible tag found
|
|
|
|
$descTags = array();
|
|
|
|
// find all tags in the form of #tag in the description
|
|
|
|
preg_match_all(
|
|
|
|
'/(?<![' . self::$HASHTAG_CHARS . '])#([' . self::$HASHTAG_CHARS . ']+?)\b/sm',
|
|
|
|
$link['description'],
|
|
|
|
$descTags
|
|
|
|
);
|
2018-10-13 00:19:03 +02:00
|
|
|
if (count($descTags[1])) {
|
2017-08-26 23:05:02 +02:00
|
|
|
// there were some tags in the description, add them to the search string
|
|
|
|
$search .= ' ' . implode(' ', $descTags[1]);
|
2016-01-20 23:34:33 +01:00
|
|
|
}
|
2017-08-26 23:05:02 +02:00
|
|
|
};
|
|
|
|
// match regular expression with search string
|
2018-10-13 00:19:03 +02:00
|
|
|
if (!preg_match($re, $search)) {
|
2017-08-26 23:05:02 +02:00
|
|
|
// this entry does _not_ match our regex
|
|
|
|
continue;
|
2016-01-20 23:34:33 +01:00
|
|
|
}
|
2017-08-26 23:05:02 +02:00
|
|
|
$filtered[$key] = $link;
|
2015-12-27 10:08:20 +01:00
|
|
|
}
|
|
|
|
return $filtered;
|
|
|
|
}
|
|
|
|
|
2017-04-01 12:17:37 +02:00
|
|
|
/**
|
|
|
|
* Return only links without any tag.
|
|
|
|
*
|
|
|
|
* @param string $visibility return only all/private/public links.
|
|
|
|
*
|
|
|
|
* @return array filtered links.
|
|
|
|
*/
|
|
|
|
public function filterUntagged($visibility)
|
|
|
|
{
|
|
|
|
$filtered = [];
|
|
|
|
foreach ($this->links as $key => $link) {
|
|
|
|
if ($visibility !== 'all') {
|
2018-12-03 01:22:45 +01:00
|
|
|
if (!$link['private'] && $visibility === 'private') {
|
2017-04-01 12:17:37 +02:00
|
|
|
continue;
|
2018-02-28 22:34:40 +01:00
|
|
|
} elseif ($link['private'] && $visibility === 'public') {
|
2017-04-01 12:17:37 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty(trim($link['tags']))) {
|
|
|
|
$filtered[$key] = $link;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $filtered;
|
|
|
|
}
|
|
|
|
|
2015-12-27 10:08:20 +01:00
|
|
|
/**
|
|
|
|
* Returns the list of articles for a given day, chronologically sorted
|
|
|
|
*
|
|
|
|
* Day must be in the form 'YYYYMMDD' (e.g. '20120125'), e.g.
|
|
|
|
* print_r($mydb->filterDay('20120125'));
|
|
|
|
*
|
|
|
|
* @param string $day day to filter.
|
|
|
|
*
|
|
|
|
* @return array all link matching given day.
|
|
|
|
*
|
|
|
|
* @throws Exception if date format is invalid.
|
|
|
|
*/
|
|
|
|
public function filterDay($day)
|
|
|
|
{
|
2018-12-03 01:22:45 +01:00
|
|
|
if (!checkDateFormat('Ymd', $day)) {
|
2015-12-27 10:08:20 +01:00
|
|
|
throw new Exception('Invalid date format');
|
|
|
|
}
|
|
|
|
|
|
|
|
$filtered = array();
|
2016-11-28 16:16:44 +01:00
|
|
|
foreach ($this->links as $key => $l) {
|
|
|
|
if ($l['created']->format('Ymd') == $day) {
|
|
|
|
$filtered[$key] = $l;
|
2015-12-27 10:08:20 +01:00
|
|
|
}
|
|
|
|
}
|
2016-11-28 16:16:44 +01:00
|
|
|
|
|
|
|
// sort by date ASC
|
|
|
|
return array_reverse($filtered, true);
|
2015-12-27 10:08:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert a list of tags (str) to an array. Also
|
|
|
|
* - handle case sensitivity.
|
|
|
|
* - accepts spaces commas as separator.
|
|
|
|
*
|
|
|
|
* @param string $tags string containing a list of tags.
|
|
|
|
* @param bool $casesensitive will convert everything to lowercase if false.
|
|
|
|
*
|
|
|
|
* @return array filtered tags string.
|
2017-01-16 13:57:11 +01:00
|
|
|
*/
|
2016-01-20 23:34:33 +01:00
|
|
|
public static function tagsStrToArray($tags, $casesensitive)
|
2015-12-27 10:08:20 +01:00
|
|
|
{
|
|
|
|
// We use UTF-8 conversion to handle various graphemes (i.e. cyrillic, or greek)
|
|
|
|
$tagsOut = $casesensitive ? $tags : mb_convert_case($tags, MB_CASE_LOWER, 'UTF-8');
|
|
|
|
$tagsOut = str_replace(',', ' ', $tagsOut);
|
|
|
|
|
2016-12-20 11:06:22 +01:00
|
|
|
return preg_split('/\s+/', $tagsOut, -1, PREG_SPLIT_NO_EMPTY);
|
2015-12-27 10:08:20 +01:00
|
|
|
}
|
|
|
|
}
|