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