]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialPhotos/classes/gnusocialphoto.php
Rough draft of the photo album class to control photo ownership / permissions.
[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     
43
44     /**
45      *
46      * k key
47      * v value
48      */
49     function staticGet($k,$v=NULL)
50     {
51         return Memcached_DataObject::staticGet('GNUsocialPhoto',$k,$v);
52     }
53
54 /*    function delete()
55     {
56         if(!unlink(INSTALLDIR . $this->thumb_uri)) {
57             return false;
58         }
59         if(!unlink(INSTALLDIR . $this->path)) {
60             return false;
61         }
62         return parent::delete();
63     } */
64
65
66     /*
67      * TODO: Foriegn key on album_id.
68      */
69     function table()
70     {
71         return array('notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
72                      'album_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
73                      'uri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
74                      'thumb_uri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL);
75     }
76     
77     function keys()
78     {
79         return array_keys($this->keyTypes());
80     }
81
82     function keyTypes()
83     {
84         return array('notice_id' => 'K');
85     }
86
87     function sequenceKey()
88     {
89         return array(false, false, false);
90     }
91
92     function saveNew($profile_id, $album_id, $thumb_uri, $uri, $source)
93     {
94         $photo = new GNUsocialPhoto();
95         $photo->thumb_uri = $thumb_uri;
96         $photo->uri = $uri;
97                 $photo->album_id = $album_id;
98
99         $notice = Notice::saveNew($profile_id, $uri, $source);
100         $photo->notice_id = $notice->id;
101         $photo_id = $photo->insert();
102         if (!$photo_id) {
103             common_log_db_error($photo, 'INSERT', __FILE__);
104             throw new ServerException(_m('Problem Saving Photo.'));
105         }
106     }
107
108
109     /*
110      * TODO: -Sanitize input
111      * @param int page_id The desired page of the gallery to show.
112      * @param int album_id The id of the album to get photos from.
113      * @param int gallery_size The number of thumbnails to show per page in the gallery.
114      * @return array Array of GNUsocialPhotos for this gallery page.
115      */
116     static function getGalleryPage($page_id, $album_id, $gallery_size)
117     {
118                 $page_offset = ($page_id-1) * $gallery_size; 
119         $sql = 'SELECT * FROM GNUsocialPhoto order by notice_id limit ' . $page_offset . ',' . $gallery_size;
120         $photo = new GNUsocialPhoto();
121         $photo->query($sql);
122         $photos = array();
123
124         while ($photo->fetch()) {
125             $photos[] = clone($photo);
126         }
127
128         return $photos;
129     }
130
131     /*
132     function asActivityNoun($element)
133     {
134         $object = new ActivityObject();
135
136         $object->type = ActivityObject::PHOTO;
137         $object->title = "";
138         $object->thumbnail = 'http://' . common_config('site', 'server') . $this->thumb_uri;
139         $object->largerImage = 'http://' . common_config('site', 'server') . $this->path;
140         return $object;
141     } */
142 }