]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/File_thumbnail.php
move core schema to class files
[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             'unique keys' => array(
61                 'file_thumbnail_url_key' => array('url'),
62             ),
63         );
64     }
65
66     function sequenceKey()
67     {
68         return array(false, false, false);
69     }
70
71     /**
72      * Save oEmbed-provided thumbnail data
73      *
74      * @param object $data
75      * @param int $file_id
76      */
77     public static function saveNew($data, $file_id) {
78         if (!empty($data->thumbnail_url)) {
79             // Non-photo types such as video will usually
80             // show us a thumbnail, though it's not required.
81             self::saveThumbnail($file_id,
82                                 $data->thumbnail_url,
83                                 $data->thumbnail_width,
84                                 $data->thumbnail_height);
85         } else if ($data->type == 'photo') {
86             // The inline photo URL given should also fit within
87             // our requested thumbnail size, per oEmbed spec.
88             self::saveThumbnail($file_id,
89                                 $data->url,
90                                 $data->width,
91                                 $data->height);
92         }
93     }
94
95     /**
96      * Save a thumbnail record for the referenced file record.
97      *
98      * @param int $file_id
99      * @param string $url
100      * @param int $width
101      * @param int $height
102      */
103     static function saveThumbnail($file_id, $url, $width, $height)
104     {
105         $tn = new File_thumbnail;
106         $tn->file_id = $file_id;
107         $tn->url = $url;
108         $tn->width = intval($width);
109         $tn->height = intval($height);
110         $tn->insert();
111     }
112 }