]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/File_thumbnail.php
Dynamically generate thumbnails (see full text)
[quix0rs-gnu-social.git] / classes / File_thumbnail.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.     If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
21
22 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
23
24 /**
25  * Table Definition for file_thumbnail
26  */
27
28 class File_thumbnail extends Managed_DataObject
29 {
30     public $__table = 'file_thumbnail';                  // table name
31     public $file_id;                         // int(4)  primary_key not_null
32     public $url;                             // varchar(255)  unique_key
33     public $width;                           // int(4)  primary_key
34     public $height;                          // int(4)  primary_key
35     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
36
37     public static function schemaDef()
38     {
39         return array(
40             'fields' => array(
41                 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'thumbnail for what URL/file'),
42                 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of thumbnail'),
43                 'width' => array('type' => 'int', 'description' => 'width of thumbnail'),
44                 'height' => array('type' => 'int', 'description' => 'height of thumbnail'),
45                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
46             ),
47             'primary key' => array('file_id', 'width', 'height'),
48             'indexes' => array(
49                 'file_thumbnail_file_id_idx' => array('file_id'),
50             ),
51             'foreign keys' => array(
52                 'file_thumbnail_file_id_fkey' => array('file', array('file_id' => 'id')),
53             )
54         );
55     }
56
57     /**
58      * Save oEmbed-provided thumbnail data
59      *
60      * @param object $data
61      * @param int $file_id
62      */
63     public static function saveNew($data, $file_id) {
64         if (!empty($data->thumbnail_url)) {
65             // Non-photo types such as video will usually
66             // show us a thumbnail, though it's not required.
67             self::saveThumbnail($file_id,
68                                 $data->thumbnail_url,
69                                 $data->thumbnail_width,
70                                 $data->thumbnail_height);
71         } else if ($data->type == 'photo') {
72             // The inline photo URL given should also fit within
73             // our requested thumbnail size, per oEmbed spec.
74             self::saveThumbnail($file_id,
75                                 $data->url,
76                                 $data->width,
77                                 $data->height);
78         }
79     }
80
81     /**
82      * Save a thumbnail record for the referenced file record.
83      *
84      * FIXME: Add error handling
85      *
86      * @param int $file_id
87      * @param string $url
88      * @param int $width
89      * @param int $height
90      */
91     static function saveThumbnail($file_id, $url, $width, $height)
92     {
93         $tn = new File_thumbnail;
94         $tn->file_id = $file_id;
95         $tn->url = $url;
96         $tn->width = intval($width);
97         $tn->height = intval($height);
98         $tn->insert();
99         return $tn;
100     }
101
102     public function getUrl()
103     {
104         return $this->url;
105     }
106 }