]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/File_thumbnail.php
Merge commit 'refs/merge-requests/174' of git://gitorious.org/statusnet/mainline...
[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     ###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     public static function schemaDef()
47     {
48         return array(
49             'fields' => array(
50                 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'thumbnail for what URL/file'),
51                 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'URL of thumbnail'),
52                 'width' => array('type' => 'int', 'description' => 'width of thumbnail'),
53                 'height' => array('type' => 'int', 'description' => 'height of thumbnail'),
54                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
55             ),
56             'primary key' => array('file_id'),
57             'foreign keys' => array(
58                 'file_thumbnail_file_id_fkey' => array('file', array('file_id' => 'id')),
59             )
60         );
61     }
62
63     /**
64      * Save oEmbed-provided thumbnail data
65      *
66      * @param object $data
67      * @param int $file_id
68      */
69     public static function saveNew($data, $file_id) {
70         if (!empty($data->thumbnail_url)) {
71             // Non-photo types such as video will usually
72             // show us a thumbnail, though it's not required.
73             self::saveThumbnail($file_id,
74                                 $data->thumbnail_url,
75                                 $data->thumbnail_width,
76                                 $data->thumbnail_height);
77         } else if ($data->type == 'photo') {
78             // The inline photo URL given should also fit within
79             // our requested thumbnail size, per oEmbed spec.
80             self::saveThumbnail($file_id,
81                                 $data->url,
82                                 $data->width,
83                                 $data->height);
84         }
85     }
86
87     /**
88      * Save a thumbnail record for the referenced file record.
89      *
90      * @param int $file_id
91      * @param string $url
92      * @param int $width
93      * @param int $height
94      */
95     static function saveThumbnail($file_id, $url, $width, $height)
96     {
97         $tn = new File_thumbnail;
98         $tn->file_id = $file_id;
99         $tn->url = $url;
100         $tn->width = intval($width);
101         $tn->height = intval($height);
102         $tn->insert();
103     }
104 }