]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/File_to_post.php
Return dynamically generated URLs for thumbnails for all locally stored entries
[quix0rs-gnu-social.git] / classes / File_to_post.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('GNUSOCIAL')) { exit(1); }
21
22 /**
23  * Table Definition for file_to_post
24  */
25
26 class File_to_post extends Managed_DataObject
27 {
28     ###START_AUTOCODE
29     /* the code below is auto generated do not remove the above tag */
30
31     public $__table = 'file_to_post';                    // table name
32     public $file_id;                         // int(4)  primary_key not_null
33     public $post_id;                         // int(4)  primary_key not_null
34     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
35
36     /* the code above is auto generated do not remove the tag below */
37     ###END_AUTOCODE
38
39     public static function schemaDef()
40     {
41         return array(
42             'fields' => array(
43                 'file_id' => array('type' => 'int', 'not null' => true, 'description' => 'id of URL/file'),
44                 'post_id' => array('type' => 'int', 'not null' => true, 'description' => 'id of the notice it belongs to'),
45                 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
46             ),
47             'primary key' => array('file_id', 'post_id'),
48             'foreign keys' => array(
49                 'file_to_post_file_id_fkey' => array('file', array('file_id' => 'id')),
50                 'file_to_post_post_id_fkey' => array('notice', array('post_id' => 'id')),
51             ),
52             'indexes' => array(
53                 'file_id_idx' => array('file_id'),
54                 'post_id_idx' => array('post_id'),
55             ),
56         );
57     }
58
59     static function processNew(File $file, Notice $notice) {
60         static $seen = array();
61
62         $file_id = $file->getID();
63         $notice_id = $notice->getID();
64         if (!array_key_exists($notice_id, $seen)) {
65             $seen[$notice_id] = array();
66         }
67
68         if (empty($seen[$notice_id]) || !in_array($file_id, $seen[$notice_id])) {
69             try {
70                 $f2p = File_to_post::getByPK(array('post_id' => $notice_id,
71                                                    'file_id' => $file_id));
72             } catch (NoResultException $e) {
73                 $f2p = new File_to_post;
74                 $f2p->file_id = $file_id;
75                 $f2p->post_id = $notice_id;
76                 $f2p->insert();
77                 
78                 $file->blowCache();
79             }
80
81             $seen[$notice_id][] = $file_id;
82         }
83     }
84
85     static function getNoticeIDsByFile(File $file)
86     {
87         $f2p = new File_to_post();
88
89         $f2p->selectAdd();
90         $f2p->selectAdd('post_id');
91
92         $f2p->file_id = $file->getID();
93
94         $ids = array();
95
96         if (!$f2p->find()) {
97             throw new NoResultException($f2p);
98         }
99
100         return $f2p->fetchAll('post_id');
101     }
102
103     function delete($useWhere=false)
104     {
105         try {
106             $f = File::getByID($this->file_id);
107             $f->blowCache();
108         } catch (NoResultException $e) {
109             // ...alright, that's weird, but no File to delete anyway.
110         }
111
112         return parent::delete($useWhere);
113     }
114 }