YGGo! Distributed Web Search Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
1.9 KiB

2 years ago
<?php
class Filter {
static public function url(mixed $url) {
$url = (string) $url;
2 years ago
return trim(urldecode($url));
2 years ago
}
static public function pageTitle(mixed $title) {
$title = (string) $title;
2 years ago
$title = preg_replace('/[\s]+/', ' ', $title);
$title = trim($title);
return $title;
}
static public function pageDescription(mixed $description) {
$description = (string) $description;
2 years ago
$description = preg_replace('/[\s]+/', ' ', $description);
$description = trim($description);
return $description;
}
static public function pageKeywords(mixed $keywords) {
$keywords = (string) $keywords;
2 years ago
$keywords = preg_replace('/[\s]+/', ' ', $keywords);
$keywords = trim($keywords);
return $keywords;
}
static public function imageAlt(mixed $alt) {
$alt = (string) $alt;
$alt = trim($alt);
return $alt;
}
static public function imageTitle(mixed $title) {
$title = (string) $title;
$title = trim($title);
return $title;
}
static public function pageData(mixed $data) {
$data = (string) $data;
2 years ago
$filterDataPre = [
'/<script.*?\/script>/s',
'/<style.*?\/style>/s'
];
$filterDataPost = [
'/[\s]{2,}/',
];
$data = preg_replace($filterDataPre, ' ', $data);
$data = html_entity_decode($data);
$data = strip_tags($data);
$data = preg_replace($filterDataPost, ' ', $data);
return $data;
}
static public function searchQuery(string $query, string $mode = 'default') {
if ($mode == 'default') {
$query = str_replace(['\\', '/', '~', '@', '!', '"', '(', ')'], ['\\\\', '\/', '\~', '\@', '\!', '\"', '\(', '\)'], $query);
}
$query = trim($query);
return $query;
}
2 years ago
static public function plural(int $number, array $texts) {
$cases = array (2, 0, 1, 1, 1, 2);
return $texts[(($number % 100) > 4 && ($number % 100) < 20) ? 2 : $cases[min($number % 10, 5)]];
}
}