-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunctions.php
157 lines (127 loc) · 3.75 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<?php
/**
* Обрезает текст
*
* @param string $text текст
* @param int $text_limit максимальное количество символов
*
* @return string
*/
function crop_text($text, $text_limit = 300)
{
if (mb_strlen($text) <= $text_limit) {
return $text;
}
$words = explode(' ', $text);
$temp = [];
$current_length_text = 0;
for ($i = 0; $i < count($words); $i++) {
$current_length_text += mb_strlen($words[$i]);
if ($current_length_text <= $text_limit) {
$temp[] = $words[$i];
} else {
break;
}
$current_length_text++;
}
return implode(' ', $temp) . '...';
}
/**
* Возвращает в текстовом виде количество времени которое прошло с момента $time
*
* @param string $time дата и время
*
* @return string
*/
function get_how_much_time($time)
{
$diffTime = time() - strtotime($time);
$diffMinutes = floor($diffTime / 60);
if ($diffMinutes < 60) {
return $diffMinutes . get_noun_plural_form($diffMinutes, ' минута', ' минуты', ' минут');
};
$diffHours = floor($diffMinutes / 60);
if ($diffHours < 24) {
return $diffHours . get_noun_plural_form($diffHours, ' час', ' часа', ' часов');
};
$diffDays = floor($diffHours / 24);
if ($diffDays < 7) {
return $diffDays . get_noun_plural_form($diffDays, ' день', ' дня', ' дней');
};
$diffWeeks = floor($diffDays / 7);
if ($diffWeeks < 5) {
return $diffWeeks . get_noun_plural_form($diffWeeks, ' неделя', ' недели', ' недель');
};
$diffMounts = floor($diffWeeks / 4);
return $diffMounts . get_noun_plural_form($diffMounts, ' месяц', ' месяца', ' месяцев');
}
/**
* Возврашает поле из массива $_POST
*
* @param string $name название поля
*
* @return string | int | bool
*/
function get_post_val($name)
{
return $_POST[$name] ?? "";
}
/**
* Возврашает массив хештегов и валидирует их
*
* @param string $str строка с хештегами
*
* @return array | false
*/
function hash_tags_validation($str)
{
$tags = explode(' ', trim($str));
for ($i = 0; $i < count($tags); $i++) {
if (!preg_match("/^[a-zа-яё]+$/iu", $tags[$i])) {
return false;
}
}
return $tags;
}
/**
* Возвращает html разметку поста в зависимости от его типа
*
* @param array $post строка из таблицы posts
*
* @return string
*/
function get_post_template($post)
{
switch ($post['class_name']) {
case 'text':
$content_inner = include_template('post-text.php', [
'content' => $post['content']
]);
break;
case 'photo':
$content_inner = include_template('post-photo.php', [
'content' => $post['content']
]);
break;
case 'quote':
$content_inner = include_template('post-quote.php', [
'content' => $post['content'],
'quote_author' => $post['quote_author']
]);
break;
case 'link':
$content_inner = include_template('post-link.php', [
'content' => $post['content'],
'link' => $post['link']
]);
break;
case 'video':
$content_inner = include_template('post-video.php', [
'content' => $post['content']
]);
break;
default:
$content_inner = '';
}
return $content_inner;
}