4 * Class Videos_model models videos information from the DB
7 * @author Călin-Andrei Burloiu
9 class Videos_model extends CI_Model {
12 public function __construct()
14 if ($this->db === NULL)
16 $this->load->library('singleton_db');
17 $this->db = $this->singleton_db->connect();
20 $this->load->helper('url');
24 * Retrieves information about a set of videos which are going to be
25 * displayed in the catalog.
27 * TODO: filter, limit, ordering parameters
28 * @param int $category_id DB category ID
31 * @return array a list of videos, each one being an assoc array with:
32 * * id, name, title, duration, thumbs_count, default_thumb, views => from DB
33 * * shorted_title => ellipsized title
34 * * video_url => P2P-Tube video URl
35 * * TODO: user_id, user_name
36 * * thumbs => thumbnail images' URLs
38 public function get_videos_summary($category_id, $offset, $count)
40 $this->load->helper('text');
42 $query = $this->db->query(
43 'SELECT id, name, title, duration, user_id, views, thumbs_count,
48 LIMIT ?, ?', // TODO summary order
49 array(intval($category_id), $offset, $count));
51 if ($query->num_rows() > 0)
52 $videos = $query->result_array();
56 foreach ($videos as & $video)
59 $video['video_url'] = site_url(sprintf("watch/%d/%s",
60 $video['id'], $video['name']));
63 $video['thumbs'] = $this->get_thumbs($video['name'],
64 $video['thumbs_count']);
67 //$video['shorted_title'] = ellipsize($video['title'], 45, 0.75);
68 $video['shorted_title'] = character_limiter($video['title'], 45);
74 public function get_videos_count($category_id)
76 $query = $this->db->query(
77 'SELECT COUNT(*) count
79 WHERE category_id = ?',
82 if ($query->num_rows() > 0)
83 return $row = $query->row()->count;
90 * Retrieves information about a video.
92 * If $name does not match with the video's `name` from the DB an error is
93 * marked in the key 'err'. If it's NULL it is ignored.
96 * @param string $id video's `id` column from `videos` DB table
97 * @param string $name video's `name` column from `videos` DB
98 * table. NULL means there is no name provided.
99 * @return array an associative list with information about a video
100 * with the following keys:
101 * * all columns form DB with some exceptions that are overwritten or new
102 * * torrents => list of torrent file names formated as
103 * {name}_{format}.{default_video_ext}.{default_torrent_ext}
104 * * user_name => TODO: user name from `users` table
105 * * formats => list of formats like 1080p
106 * * category_name => TODO: human-friendly category name
107 * * tags => associative list of "tag => score"
108 * * date => date and time when the video was created
109 * * thumbs => thumbnail images' URLs
111 public function get_video($id, $name = NULL)
113 $query = $this->db->query('SELECT *
118 if ($query->num_rows() > 0)
120 $video = $query->row_array();
121 if ($name !== NULL && $video['name'] != $name)
122 $video['err'] = 'INVALID_NAME';
126 $video['err'] = 'INVALID_ID';
130 // Convert JSON encoded string to arrays.
131 $video['formats'] = json_decode($video['formats'], TRUE);
132 $video['tags'] = json_decode($video['tags'], TRUE);
133 asort($video['tags']);
134 $video['tags'] = array_reverse($video['tags'], true);
137 $video['torrents'] = array();
138 foreach ($video['formats'] as $format)
140 $ext = isset($format['ext']) ?
141 $format['ext'] : $this->config->item('default_video_ext');
142 $video['torrents'][] = site_url('data/torrents/'. $video['name'] . '_'
143 . $format['def'] . '.'. $ext
144 . '.'. $this->config->item('default_torrent_ext'));
148 $video['thumbs'] = $this->get_thumbs($video['name'], $video['thumbs_count']);
153 public function get_thumbs($name, $count)
157 for ($i=0; $i < $count; $i++)
158 $thumbs[] = site_url(sprintf("data/thumbs/%s_t%02d.jpg", $name, $i));
164 /* End of file videos_model.php */
165 /* Location: ./application/models/videos_model.php */