C:\$Recycle.Bin\S-1-5-21-3967099092-2644009230-141905953-500\$RU7MSUA\html\kernel\image.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<?php
// $Id: image.php,v 1.8.16.1 2005/09/20 00:40:12 skalpa Exp $
//  ------------------------------------------------------------------------ //
//                XOOPS - PHP Content Management System                      //
//                    Copyright (c) 2000 XOOPS.org                           //
//                       <http://www.xoops.org/>                             //
//  ------------------------------------------------------------------------ //
//  This program is free software; you can redistribute it and/or modify     //
//  it under the terms of the GNU General Public License as published by     //
//  the Free Software Foundation; either version 2 of the License, or        //
//  (at your option) any later version.                                      //
//                                                                           //
//  You may not change or alter any portion of this comment or credits       //
//  of supporting developers from this source code or any supporting         //
//  source code which is considered copyrighted (c) material of the          //
//  original comment or credit authors.                                      //
//                                                                           //
//  This program is distributed in the hope that it will be useful,          //
//  but WITHOUT ANY WARRANTY; without even the implied warranty of           //
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            //
//  GNU General Public License for more details.                             //
//                                                                           //
//  You should have received a copy of the GNU General Public License        //
//  along with this program; if not, write to the Free Software              //
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA //
//  ------------------------------------------------------------------------ //
// Author: Kazumi Ono (AKA onokazu)                                          //
// URL: http://www.myweb.ne.jp/, http://www.xoops.org/, http://jp.xoops.org/ //
// Project: The XOOPS Project                                                //
// ------------------------------------------------------------------------- //

if (!defined('XOOPS_ROOT_PATH')) {
    exit();
}

/**
 * An Image
 *
 * @package        kernel
 * @author        Kazumi Ono     <onokazu@xoops.org>
 * @copyright    (c) 2000-2003 The Xoops Project - www.xoops.org
 */
class XoopsImage extends XoopsObject
{
    
/**
     * Constructor
     **/
    
function XoopsImage()
    {
        
$this->XoopsObject();
        
$this->initVar('image_id'XOBJ_DTYPE_INTnullfalse);
        
$this->initVar('image_name'XOBJ_DTYPE_OTHERnullfalse30);
        
$this->initVar('image_nicename'XOBJ_DTYPE_TXTBOXnulltrue100);
        
$this->initVar('image_mimetype'XOBJ_DTYPE_OTHERnullfalse);
        
$this->initVar('image_created'XOBJ_DTYPE_INTnullfalse);
        
$this->initVar('image_display'XOBJ_DTYPE_INT1false);
        
$this->initVar('image_weight'XOBJ_DTYPE_INT0false);
        
$this->initVar('image_body'XOBJ_DTYPE_SOURCEnulltrue);
        
$this->initVar('imgcat_id'XOBJ_DTYPE_INT0false);
    }
}

/**
 * XOOPS image handler class.  
 * 
 * This class is responsible for providing data access mechanisms to the data source 
 * of XOOPS image class objects.
 *
 * @package        kernel
 *
 * @author        Kazumi Ono     <onokazu@xoops.org>
 * @copyright    (c) 2000-2003 The Xoops Project - www.xoops.org
 */
class XoopsImageHandler extends XoopsObjectHandler
{

    
/**
     * Create a new {@link XoopsImage} 
     * 
     * @param   boolean $isNew  Flag the object as "new"
     * @return  object
     **/
    
function &create($isNew true)
    {
        
$image =& new XoopsImage();
        if (
$isNew) {
            
$image->setNew();
        }
        return 
$image;
    }

    
/**
     * Load a {@link XoopsImage} object from the database
     * 
     * @param   int     $id     ID
     * @param   boolean $getbinary  
     * @return  object  {@link XoopsImage}, FALSE on fail
     **/
    
function &get($id$getbinary=true)
    {
        
$id intval($id);
        if (
$id 0) {
            
$sql 'SELECT i.*, b.image_body FROM '.$this->db->prefix('image').' i LEFT JOIN '.$this->db->prefix('imagebody').' b ON b.image_id=i.image_id WHERE i.image_id='.$id;
            if (!
$result $this->db->query($sql)) {
                
$return false;
                return 
$return;
            }
            
$numrows $this->db->getRowsNum($result);
            if (
$numrows == 1) {
                
$image = new XoopsImage();
                
$image->assignVars($this->db->fetchArray($result));
                return 
$image;
            }
        }
        
$return false;
        return 
$return;
    }

    
/**
     * Write a {@link XoopsImage} object to the database
     * 
     * @param   object  &$image {@link XoopsImage} 
     * @return  bool
     **/
    
function insert(&$image)
    {
        if (
strtolower(get_class($image)) != 'xoopsimage') {
            return 
false;
        }
        if (!
$image->isDirty()) {
            return 
true;
        }
        if (!
$image->cleanVars()) {
            return 
false;
        }
        foreach (
$image->cleanVars as $k => $v) {
            ${
$k} = $v;
        }
        if (
$image->isNew()) {
            
$image_id $this->db->genId('image_image_id_seq');
            
$sql sprintf("INSERT INTO %s (image_id, image_name, image_nicename, image_mimetype, image_created, image_display, image_weight, imgcat_id) VALUES (%u, %s, %s, %s, %u, %u, %u, %u)"$this->db->prefix('image'), $image_id$this->db->quoteString($image_name), $this->db->quoteString($image_nicename), $this->db->quoteString($image_mimetype), time(), $image_display$image_weight$imgcat_id);
            if (!
$result $this->db->query($sql)) {
                return 
false;
            }
            if (empty(
$image_id)) {
                
$image_id $this->db->getInsertId();
            }
            if (isset(
$image_body) && $image_body != '') {
                
$sql sprintf("INSERT INTO %s (image_id, image_body) VALUES (%u, %s)"$this->db->prefix('imagebody'), $image_id$this->db->quoteString($image_body));
                if (!
$result $this->db->query($sql)) {
                    
$sql sprintf("DELETE FROM %s WHERE image_id = %u"$this->db->prefix('image'), $image_id);
                    
$this->db->query($sql);
                    return 
false;
                }
            }
            
$image->assignVar('image_id'$image_id);
        } else {
            
$sql sprintf("UPDATE %s SET image_name = %s, image_nicename = %s, image_display = %u, image_weight = %u, imgcat_id = %u WHERE image_id = %u"$this->db->prefix('image'), $this->db->quoteString($image_name), $this->db->quoteString($image_nicename), $image_display$image_weight$imgcat_id$image_id);
            if (!
$result $this->db->query($sql)) {
                return 
false;
            }
            if (isset(
$image_body) && $image_body != '') {
                
$sql sprintf("UPDATE %s SET image_body = %s WHERE image_id = %u"$this->db->prefix('imagebody'), $this->db->quoteString($image_body), $image_id);
                if (!
$result $this->db->query($sql)) {
                    
$this->db->query(sprintf("DELETE FROM %s WHERE image_id = %u"$this->db->prefix('image'), $image_id));
                    return 
false;
                }
            }
        }
        return 
true;
    }

    
/**
     * Delete an image from the database
     * 
     * @param   object  &$image {@link XoopsImage} 
     * @return  bool
     **/
    
function delete(&$image)
    {
        if (
strtolower(get_class($image)) != 'xoopsimage') {
            return 
false;
        }
        
$id $image->getVar('image_id');
        
$sql sprintf("DELETE FROM %s WHERE image_id = %u"$this->db->prefix('image'), $id);
        if (!
$result $this->db->query($sql)) {
            return 
false;
        }
        
$sql sprintf("DELETE FROM %s WHERE image_id = %u"$this->db->prefix('imagebody'), $id);
        
$this->db->query($sql);
        return 
true;
    }

    
/**
     * Load {@link XoopsImage}s from the database
     * 
     * @param   object  $criteria   {@link CriteriaElement} 
     * @param   boolean $id_as_key  Use the ID as key into the array
     * @param   boolean $getbinary  
     * @return  array   Array of {@link XoopsImage} objects
     **/
    
function getObjects($criteria null$id_as_key false$getbinary false)
    {
        
$ret = array();
        
$limit $start 0;
        if (
$getbinary) {
            
$sql 'SELECT i.*, b.image_body FROM '.$this->db->prefix('image').' i LEFT JOIN '.$this->db->prefix('imagebody').' b ON b.image_id=i.image_id';
        } else {
            
$sql 'SELECT * FROM '.$this->db->prefix('image');
        }
        if (isset(
$criteria) && is_subclass_of($criteria'criteriaelement')) {
            
$sql .= ' '.$criteria->renderWhere();
            
$sort = !in_array($criteria->getSort(), array('image_id''image_created''image_mimetype''image_display''image_weight')) ? 'image_weight' $criteria->getSort();
            
$sql .= ' ORDER BY '.$sort.' '.$criteria->getOrder();
            
$limit $criteria->getLimit();
            
$start $criteria->getStart();
        }
        
$result $this->db->query($sql$limit$start);
        if (!
$result) {
            return 
$ret;
        }
        while (
$myrow $this->db->fetchArray($result)) {
            
$image = new XoopsImage();
            
$image->assignVars($myrow);
            if (!
$id_as_key) {
                
$ret[] =& $image;
            } else {
                
$ret[$myrow['image_id']] =& $image;
            }
            unset(
$image);
        }
        return 
$ret;
    }

    
/**
     * Count some images
     * 
     * @param   object  $criteria   {@link CriteriaElement} 
     * @return  int
     **/
    
function getCount($criteria null)
    {
        
$sql 'SELECT COUNT(*) FROM '.$this->db->prefix('image');
        if (isset(
$criteria) && is_subclass_of($criteria'criteriaelement')) {
            
$sql .= ' '.$criteria->renderWhere();
        }
        if (!
$result $this->db->query($sql)) {
            return 
0;
        }
        list(
$count) = $this->db->fetchRow($result);
        return 
$count;
    }

    
/**
     * Get a list of images
     * 
     * @param   int     $imgcat_id
     * @param   bool    $image_display
     * @return  array   Array of {@link XoopsImage} objects
     **/
    
function getList($imgcat_id$image_display null)
    {
        
$criteria = new CriteriaCompo(new Criteria('imgcat_id'intval($imgcat_id)));
        if (isset(
$image_display)) {
            
$criteria->add(new Criteria('image_display'intval($image_display)));
        }
        
$images =& $this->getObjects($criteriafalsetrue);
        
$ret = array();
        foreach (
array_keys($images) as $i) {
            
$ret[$images[$i]->getVar('image_name')] = $images[$i]->getVar('image_nicename');
        }
        return 
$ret;
    }
}
?>