users can add pictures to their profiles; users can like and dislike videos
[living-lab-site.git] / application / models / videos_model.php
1 <?php
2
3 /**
4  * Class Videos_model models videos information from the DB
5  *
6  * @category    Model
7  * @author              Călin-Andrei Burloiu
8  */
9 class Videos_model extends CI_Model {
10         public $db = NULL;
11         
12         public function __construct()
13         {
14                 parent::__construct();
15                 
16                 if ($this->db === NULL)
17                 {
18                         $this->load->library('singleton_db');
19                         $this->db = $this->singleton_db->connect();
20                 }
21         }
22         
23         /**
24          * Retrieves a set of videos information which can be used for displaying
25          * that videos as a list with few details.
26          *
27          * @param               int $category_id        DB category ID; pass NULL for all
28          * categories
29          * @param               mixed $user                     an user_id (as int) or an username 
30          * (as string); pass NULL for all users
31          * @param               int $offset
32          * @param               int $count
33          * @param               string $ordering        control videos ording by these
34          * possibilities:
35          * <ul>
36          *   <li><strong>'hottest':</strong> newest most appreciated first. An
37          *   appreciated video is one which has a bigger
38          *   score = views + likes - dislikes.</li>
39          *   <li><strong>'newest':</strong> newest first.</li>
40          *   <li><strong>'alphabetically':</strong> sort alphabetically.</li>
41          * </ul>
42          * @return              array   a list of videos, each one being an assoc array with:
43          * <ul>
44          *   <li>id, name, title, duration, thumbs_count, default_thumb, views => from DB</li>
45          *   <li>shorted_title => ellipsized title</li>
46          *   <li>video_url => P2P-Tube video URl</li>
47          *   <li>user_id, user_name</li>
48          *   <li>thumbs => thumbnail images' URLs</li>
49          * </ul>
50          */
51         public function get_videos_summary($category_id, $user, $offset, $count,
52                 $ordering = 'hottest')
53         {
54                 $this->load->helper('text');
55                 
56                 // Ordering
57                 switch ($ordering)
58                 {
59                 case 'hottest':
60                         $order_statement = "ORDER BY date DESC, score DESC, RAND()";
61                         break;
62                 case 'newest':
63                         $order_statement = "ORDER BY date DESC";
64                         break;
65                 case 'alphabetically':
66                         $order_statement = "ORDER BY title";
67                         break;
68                         
69                 default:
70                         $order_statement = "";
71                 }
72                 
73                 // Category filtering
74                 if ($category_id === NULL)
75                         $cond_category = "1";
76                 else
77                 {
78                         $category_id = intval($category_id);
79                         $cond_category = "category_id = $category_id";
80                 }
81                 
82                 // User filtering
83                 if ($user === NULL)
84                         $cond_user = "1";
85                 else
86                 {
87                         if (is_int($user))
88                                 $cond_user = "v.user_id = $user";
89                         else if (is_string($user))
90                                 $cond_user = "u.username = '$user'";
91                 }
92                 
93                 $query = $this->db->query(
94                         "SELECT v.id, name, title, duration, user_id, u.username, views,
95                                 thumbs_count, default_thumb,
96                                 (views + likes - dislikes) AS score
97                         FROM `videos` v, `users` u
98                         WHERE v.user_id = u.id AND $cond_category AND $cond_user
99                         $order_statement
100                         LIMIT $offset, $count"); 
101                 
102                 if ($query->num_rows() > 0)
103                         $videos = $query->result_array();
104                 else
105                         return array();
106                 
107                 foreach ($videos as & $video)
108                 {
109                         // P2P-Tube Video URL
110                         $video['video_url'] = site_url(sprintf("watch/%d/%s",
111                                 $video['id'], $video['name']));
112                         
113                         // Thumbnails
114                         $video['thumbs'] = $this->get_thumbs($video['name'], 
115                                 $video['thumbs_count']);
116                                 
117                         // Ellipsized title
118                         //$video['shorted_title'] = ellipsize($video['title'], 45, 0.75);
119                         $video['shorted_title'] = character_limiter($video['title'], 50);
120                 }
121                 
122                 return $videos;
123         }
124         
125         /**
126          * Returns the number of videos from database from a specific category or
127          * user.
128          * NULL parameters count videos from all categories and / or all users.
129          * 
130          * @param int $category_id
131          * @param mixed $user   an user_id (as int) or an username (as string)
132          * @return int  number of videos or NULL if an error occured
133          */
134         public function get_videos_count($category_id = NULL, $user = NULL)
135         {
136                 if ($category_id === NULL)
137                         $cond_category = "1";
138                 else
139                         $cond_category = "category_id = $category_id";
140                 
141                 if ($user === NULL)
142                         $cond_user = "1";
143                 else
144                 {
145                         if (is_int($user))
146                                 $cond_user = "v.user_id = $user";
147                         else if(is_string($user))
148                                 $cond_user = "u.username = '$user'";
149                 }
150                 
151                 $query = $this->db->query(
152                         "SELECT COUNT(*) count
153                         FROM `videos` v, `users` u
154                         WHERE v.user_id = u.id AND $cond_category AND $cond_user");
155                 
156                 if ($query->num_rows() > 0)
157                         return $query->row()->count;
158                 
159                 // Error
160                 return NULL;
161         }
162         
163         /**
164          * Retrieves information about a video.
165          *
166          * If $name does not match with the video's `name` from the DB an error is
167          * marked in the key 'err'. If it's NULL it is ignored.
168          *
169          * @access              public
170          * @param               string $id      video's `id` column from `videos` DB table
171          * @param               string $name    video's `name` column from `videos` DB
172          * table. NULL means there is no name provided.
173          * @return              array   an associative list with information about a video
174          * with the following keys:
175          * <ul>
176          *   <li>all columns form DB with some exceptions that are overwritten or new</li>
177          *   <li>content is moved in assets</li>
178          *   <li>assets => list of associative lists where each one represents a</li>
179          * video asset having keys: "src", "res", "par" and "ext". Value of key
180          * "src" is the video torrent formated as
181          * {name}_{format}.{video_ext}.{default_torrent_ext}</li>
182          *   <li>username => user name from `users` table</li>
183          *   <li>category_title => a human-friendly category name</li>
184          *   <li>tags => associative list of "tag => score"</li>
185          *   <li>date => date and time when the video was created</li>
186          *   <li>thumbs => thumbnail images' URLs</li>
187          * </ul>
188          */
189         public function get_video($id, $name = NULL)
190         {
191                 $this->load->helper('video');
192                 
193                 $query = $this->db->query("SELECT v.*, u.username 
194                                                                 FROM `videos` v, `users` u
195                                                                 WHERE v.user_id = u.id AND v.id = $id");
196                 $video = array();
197                 
198                 if ($query->num_rows() > 0)
199                 {
200                         $video = $query->row_array();
201                         if ($name !== NULL && $video['name'] != $name)
202                                 $video['err'] = 'INVALID_NAME';
203                 }
204                 else
205                 {
206                         $video['err'] = 'INVALID_ID';
207                         return $video;
208                 }
209                 
210                 // Convert JSON encoded string to arrays.
211                 $video['assets'] = json_decode($video['formats'], TRUE);
212                 unset($video['formats']);
213                 $video['tags'] = json_decode($video['tags'], TRUE);
214                 asort($video['tags']);
215                 $video['tags'] = array_reverse($video['tags'], TRUE);
216                 
217                 // Sort assets by their megapixels number.
218                 function access_function($a) { return $a['res']; }
219                 function assets_cmp($a, $b) 
220                         { return megapixels_cmp($a, $b, "access_function"); }
221                 usort($video['assets'], "assets_cmp");
222                 
223                 // Torrents
224                 $video['url'] = array();
225                 foreach ($video['assets'] as & $asset)
226                 {
227                         $def = substr($asset['res'], strpos($asset['res'], 'x') + 1) . 'p';
228                         $asset['src'] = site_url('data/torrents/'. $video['name'] . '_'
229                                 . $def . '.'. $asset['ext']
230                                 . '.'. $this->config->item('default_torrent_ext'));
231                 }
232                 
233                 // Category title
234                 $categories = $this->config->item('categories');
235                 $category_name = $categories[ intval($video['category_id']) ];
236                 $video['category_title'] = $category_name ?
237                         $this->lang->line("ui_categ_$category_name") : $category_name;
238                 
239                 // Thumbnails
240                 $video['thumbs'] = $this->get_thumbs($video['name'], $video['thumbs_count']);
241                 
242                 return $video;
243         }
244         
245         /**
246          * Increments views count for a video.
247          * 
248          * @param int $id       DB video id
249          * @return void
250          */
251         public function inc_views($id)
252         {
253                 return $this->db->query('UPDATE `videos` '
254                                                 . 'SET `views`=`views`+1 '
255                                                 . 'WHERE id='. $id); 
256         }
257         
258         public function vote($video_id, $user_id, $like = TRUE)
259         {
260                 if ($like)
261                 {
262                         $col = 'likes';
263                         $action = 'like';
264                 }
265                 else
266                 {
267                         $col = 'dislikes';
268                         $action = 'dislike';
269                 }
270                 
271                 $query = $this->db->query("SELECT * FROM `users_actions`
272                         WHERE user_id = $user_id
273                                 AND target_id = $video_id
274                                 AND target_type = 'video'
275                                 AND action = '$action'
276                                 AND date = CURDATE()");
277                 // User already voted today
278                 if ($query->num_rows() > 0)
279                         return -1;
280                 
281                 $this->db->query("UPDATE `videos`
282                         SET $col = $col + 1
283                         WHERE id = $video_id");
284                 
285                 // Mark this action so that the user cannot repeat it today.
286                 $this->db->query("INSERT INTO `users_actions`
287                                 (user_id, action, target_type, target_id, date)
288                         VALUES ( $user_id, '$action', 'video', $video_id, CURDATE() )");
289                 
290                 $query = $this->db->query("SELECT $col FROM `videos`
291                         WHERE id = $video_id");
292                 
293                 if ($query->num_rows() === 1)
294                 {
295                         $row = $query->row_array();
296                         return $row[ $col ];
297                 }
298                 
299                 // Error
300                 return FALSE;
301         }
302         
303         public function get_thumbs($name, $count)
304         {
305                 $thumbs = array();
306                 
307                 for ($i=0; $i < $count; $i++)
308                         $thumbs[] = site_url(sprintf("data/thumbs/%s_t%02d.jpg", $name, $i));
309                 
310                 return $thumbs;
311         }
312
313         /**
314          * Searches videos in DB based on a search query string and returns an
315          * associative array of results.
316          * If count is zero the function only return the number of results.
317          * @param string $search_query
318          * @param int $offset
319          * @param int $count
320          * @param int $category_id      if NULL, all categories are searched
321          * @return array        an associative array with the same keys as that from
322          * get_videos_summary's result, but with two additional keys: 
323          * description and date.
324          */
325         public function search_videos($search_query, $offset = 0, $count = 0, 
326                                                                         $category_id = NULL)
327         {
328                 $search_query = trim($search_query);
329                 $search_query = str_replace("'", " ", $search_query);
330                 
331                 // Search word fragments.
332                 // sfc = search fragment condition
333                 $sfc = "( ";
334                 // sfr = serach fragment relevation
335                 $sfr = "( ";
336                 $sep = ' +-*<>()~"';
337                 $fragm = strtok($search_query, $sep);
338                 while ($fragm !== FALSE)
339                 {
340                         $sfc .= "(title LIKE '%$fragm%'
341                                         OR description LIKE '%$fragm%'
342                                         OR tags LIKE '%$fragm%') OR ";
343                         
344                         // Frament relevations are half of boolean relevations such
345                         // that they will appear at the end of the results.
346                         $sfr .= "0.25 * (title LIKE '%$fragm%')
347                                         + 0.1 * (description LIKE '%$fragm%')
348                                         + 0.15 * (tags LIKE '%$fragm%') + ";
349                         
350                         $fragm = strtok($sep);
351                 }
352                 $sfc = substr($sfc, 0, -4) . " )";
353                 $sfr = substr($sfr, 0, -3) . " )";
354                 
355                 if (! $this->is_advanced_search_query($search_query))
356                 {
357                         $search_cond = "MATCH (title, description, tags)
358                                         AGAINST ('$search_query') OR $sfc";
359                         $relevance = "( MATCH (title, description, tags)
360                                         AGAINST ('$search_query') + $sfr ) AS relevance";
361                 }
362                 // boolean mode
363                 else
364                 {
365                         $against = "AGAINST ('$search_query' IN BOOLEAN MODE)";
366                         $search_cond = "( MATCH (title, description, tags)
367                                         $against) OR $sfc";
368                         $relevance = "( 0.5 * (MATCH(title) $against)
369                                         + 0.3 * (MATCH(tags) $against)
370                                         + 0.2 * (MATCH(description) $against)
371                                         + $sfr) AS relevance";
372                 }
373                 
374                 if ($count === 0)
375                 {
376                         $selected_columns = "COUNT(*) count";
377                         $order = "";
378                         $limit = "";
379                 }
380                 else
381                 {
382                         // TODO select data, description if details are needed
383                         $selected_columns = "id, name, title, duration, user_id, views,
384                                         thumbs_count, default_thumb,
385                                         (views + likes - dislikes) AS score, 
386                                         $relevance";
387                         $order = "ORDER BY relevance DESC, score DESC";
388                         $limit = "LIMIT $offset, $count";
389                 }
390                 
391                 if ($category_id !== NULL)
392                         $category_cond = "category_id = '$category_id' AND ";
393                 else
394                         $category_cond = "";
395
396                 $str_query = "SELECT $selected_columns
397                         FROM `videos`
398                         WHERE  $category_cond ( $search_cond )
399                         $order
400                         $limit";
401 //              echo "<p>$str_query</p>";
402                 $query = $this->db->query($str_query);
403                 
404                 if ($query->num_rows() > 0)
405                 {
406                         if ($count === 0)
407                                 return $query->row()->count;
408                         else
409                                 $videos = $query->result_array();
410                 }
411                 else
412                         return NULL;
413                 
414                 $this->load->helper('text');
415                 
416                 foreach ($videos as & $video)
417                 {
418                         // P2P-Tube Video URL
419                         $video['video_url'] = site_url(sprintf("watch/%d/%s",
420                                 $video['id'], $video['name']));
421                         
422                         // Thumbnails
423                         $video['thumbs'] = $this->get_thumbs($video['name'], 
424                                 $video['thumbs_count']);
425                                 
426                         // Ellipsized title
427                         //$video['shorted_title'] = ellipsize($video['title'], 45, 0.75);
428                         $video['shorted_title'] = character_limiter($video['title'], 50);
429                         
430                         // TODO: user information
431                         $video['user_name'] = 'TODO';
432                 }
433                 
434                 return $videos;
435         }
436         
437         public function decode_search_query($search_query)
438         {
439                 $search_query = urldecode($search_query);
440                 
441                 $search_query = str_replace('_AST_', '*', $search_query);
442                 $search_query = str_replace('_AND_', '+', $search_query);
443                 $search_query = str_replace('_GT_', '>', $search_query);
444                 $search_query = str_replace('_LT_', '<', $search_query);
445                 $search_query = str_replace('_PO_', '(', $search_query);
446                 $search_query = str_replace('_PC_', ')', $search_query);
447                 $search_query = str_replace('_LOW_', '~', $search_query);
448                 $search_query = str_replace('_QUO_', '"', $search_query);
449                 
450                 return $search_query;
451         }
452         
453         public function encode_search_query($search_query)
454         {
455                 $search_query = str_replace('*', '_AST_', $search_query);
456                 $search_query = str_replace('+', '_AND_', $search_query);
457                 $search_query = str_replace('>', '_GT_', $search_query);
458                 $search_query = str_replace('<', '_LT_', $search_query);
459                 $search_query = str_replace('(', '_PO_', $search_query);
460                 $search_query = str_replace(')', '_PC_', $search_query);
461                 $search_query = str_replace('~', '_LOW_', $search_query);
462                 $search_query = str_replace('"', '_QUO_', $search_query);
463                 
464                 $search_query = urlencode($search_query);
465         
466                 return $search_query;
467         }
468         
469         /**
470          * Return TRUE if it contains any special caracter from an advanced search
471          * query.
472          * @param string $search_query
473          * @return boolean
474          */
475         public function is_advanced_search_query($search_query)
476         {
477                 return (preg_match('/\*|\+|\-|>|\<|\(|\)|~|"/', $search_query) == 0
478                         ? FALSE : TRUE);
479         }
480 }
481
482 /* End of file videos_model.php */
483 /* Location: ./application/models/videos_model.php */