]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialPhotos/classes/gnusocialphoto.php
34daff73bb23ca9932b78ab27a135957d1b2f4de
[quix0rs-gnu-social.git] / plugins / GNUsocialPhotos / classes / gnusocialphoto.php
1 <?php
2 /**
3  * GNU Social
4  * Copyright (C) 2010, Free Software Foundation, Inc.
5  *
6  * PHP version 5
7  *
8  * LICENCE:
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Widget
23  * @package   GNU Social
24  * @author    Ian Denhardt <ian@zenhack.net>
25  * @copyright 2010 Free Software Foundation, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
27  */
28
29 if (!defined('STATUSNET')) {
30     exit(1);
31 }
32
33 require_once INSTALLDIR . '/classes/Memcached_DataObject.php';
34
35 class GNUsocialPhoto extends Memcached_DataObject
36 {
37     public $__table = 'GNUsocialPhoto';
38     public $notice_id;  // int(11)
39     public $album_id;   // int(11)
40     public $uri;        // varchar(512)
41     public $thumb_uri;  // varchar(512)
42         public $title;      // varchar(512)
43         public $photo_description; // text
44     
45
46     /**
47      *
48      * k key
49      * v value
50      */
51     function staticGet($k,$v=NULL)
52     {
53         return Memcached_DataObject::staticGet('GNUsocialPhoto',$k,$v);
54     }
55
56 /*    function delete()
57     {
58         if(!unlink(INSTALLDIR . $this->thumb_uri)) {
59             return false;
60         }
61         if(!unlink(INSTALLDIR . $this->path)) {
62             return false;
63         }
64         return parent::delete();
65     } */
66
67
68     /*
69      * TODO: Foriegn key on album_id.
70      */
71     function table()
72     {
73         return array('notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
74                      'album_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
75                      'uri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
76                      'thumb_uri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
77                      'title' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
78                      'photo_description' => DB_DATAOBJECT_TXT + DB_DATAOBJECT_NOTNULL);
79     }
80     
81     function keys()
82     {
83         return array_keys($this->keyTypes());
84     }
85
86     function keyTypes()
87     {
88         return array('notice_id' => 'K');
89     }
90
91     function sequenceKey()
92     {
93         return array(false, false, false);
94     }
95
96     function saveNew($profile_id, $album_id, $thumb_uri, $uri, $source, $insert_now, $title = null, $photo_description = null)
97     {
98         $photo = new GNUsocialPhoto();
99         $photo->thumb_uri = $thumb_uri;
100         $photo->uri = $uri;
101                 $photo->album_id = $album_id;
102                 if(!empty($title)) $photo->title = $title;
103                 if(!empty($photo_description)) $photo->photo_description = $photo_description;
104
105         if($insert_now) {
106             $notice = Notice::saveNew($profile_id, $uri, $source);
107             $photo->notice_id = $notice->id;
108             $photo_id = $photo->insert();
109             if (!$photo_id) {
110                 common_log_db_error($photo, 'INSERT', __FILE__);
111                 throw new ServerException(_m('Problem Saving Photo.'));
112             }
113         } else {
114             GNUsocialPhotoTemp::$tmp = $photo;
115             Notice::saveNew($profile_id, $uri, $source);
116         }
117     }
118
119     function getPageLink()
120     {
121         return '/photo/' . $this->notice_id;
122     }
123
124     /*
125      * TODO: -Sanitize input
126      * @param int page_id The desired page of the gallery to show.
127      * @param int album_id The id of the album to get photos from.
128      * @param int gallery_size The number of thumbnails to show per page in the gallery.
129      * @return array Array of GNUsocialPhotos for this gallery page.
130      */
131     static function getGalleryPage($page_id, $album_id, $gallery_size)
132     {
133                 $page_offset = ($page_id-1) * $gallery_size; 
134         $sql = 'SELECT * FROM GNUsocialPhoto WHERE album_id = ' . $album_id . 
135                ' ORDER BY notice_id LIMIT ' . $page_offset . ',' . $gallery_size;
136         $photo = new GNUsocialPhoto();
137         $photo->query($sql);
138         $photos = array();
139
140         while ($photo->fetch()) {
141             $photos[] = clone($photo);
142         }
143
144         return $photos;
145     }
146 }