]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/File_thumbnail.php
Merge branch 'master' into 0.9.x
[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 Memcached_DataObject
29 {
30     ###START_AUTOCODE
31     /* the code below is auto generated do not remove the above tag */
32
33     public $__table = 'file_thumbnail';                  // table name
34     public $file_id;                         // int(4)  primary_key not_null
35     public $url;                             // varchar(255)  unique_key
36     public $width;                           // int(4)
37     public $height;                          // int(4)
38     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
39
40     /* Static get */
41     function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('File_thumbnail',$k,$v); }
42
43     /* the code above is auto generated do not remove the tag below */
44     ###END_AUTOCODE
45
46     function sequenceKey()
47     {
48         return array(false, false, false);
49     }
50
51     /**
52      * Save oEmbed-provided thumbnail data
53      *
54      * @param object $data
55      * @param int $file_id
56      */
57     public static function saveNew($data, $file_id) {
58         if (!empty($data->thumbnail_url)) {
59             // Non-photo types such as video will usually
60             // show us a thumbnail, though it's not required.
61             self::saveThumbnail($file_id,
62                                 $data->thumbnail_url,
63                                 $data->thumbnail_width,
64                                 $data->thumbnail_height);
65         } else if ($data->type == 'photo') {
66             // The inline photo URL given should also fit within
67             // our requested thumbnail size, per oEmbed spec.
68             self::saveThumbnail($file_id,
69                                 $data->url,
70                                 $data->width,
71                                 $data->height);
72         }
73     }
74
75     /**
76      * Save a thumbnail record for the referenced file record.
77      *
78      * @param int $file_id
79      * @param string $url
80      * @param int $width
81      * @param int $height
82      */
83     static function saveThumbnail($file_id, $url, $width, $height)
84     {
85         $tn = new File_thumbnail;
86         $tn->file_id = $file_id;
87         $tn->url = $url;
88         $tn->width = intval($width);
89         $tn->height = intval($height);
90         $tn->insert();
91     }
92 }