OSDN Git Service

[NEW] データベースをハンドルする新しいDBクラスを追加。関連する修正を反映。
[nucleus-jp/nucleus-next.git] / nucleus / libs / SKIN.php
1 <?php
2 /*
3  * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
4  * Copyright (C) 2002-2009 The Nucleus Group
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  * (see nucleus/documentation/index.html#license for more info)
11  */
12 /**
13  * Class representing a skin
14  *
15  * @license http://nucleuscms.org/license.txt GNU General Public License
16  * @copyright Copyright (C) 2002-2009 The Nucleus Group
17  * @version $Id: SKIN.php 1784 2012-04-22 04:28:30Z sakamocchi $
18  */
19
20 if ( !function_exists('requestVar') ) 
21 {
22         exit;
23 }
24
25 class Skin
26 {
27         // after creating a SKIN object, evaluates to true when the skin exists
28         private $valid;
29         
30         // skin characteristics. Use the getXXX methods rather than accessing directly
31         private $id;
32         private $description;
33         private $contentType;
34         private $includeMode;           // either 'normal' or 'skindir'
35         private $includePrefix;
36         private $name;
37         
38         /* action class */
39         private $action_class;
40         private $event_identifier;
41         
42         /**
43          * Skin::__construct()
44          * Constructor for a new SKIN object
45          * 
46          * @param       integer $id                                     id of the skin
47          * @param       string  $action_class           name of class extended from BaseActions
48          * @param       string  $event_identifier       event identifier. for example, InitAdminSkinParse if AdminSkin is used
49          * @return      void
50          */
51         public function __construct($id, $action_class='Actions', $event_identifier='Skin')
52         {
53                 global $DIR_LIBS;
54                 
55                 $this->id = (integer) $id;
56                 
57                 /*
58                  * NOTE: include needed action class
59                  */
60                 if ( $action_class != 'Actions' )
61                 {
62                         if ( !class_exists($action_class, FALSE)
63                           && (!file_exists("{$DIR_LIBS}{$action_class}.php")
64                            || !include("{$DIR_LIBS}{$action_class}.php")) )
65                         {
66                                 return;
67                         }
68                 }
69                 else
70                 {
71                         if ( !class_exists('Actions', FALSE)
72                           && (!file_exists("{$DIR_LIBS}ACTIONS.php")
73                            || !include("{$DIR_LIBS}ACTIONS.php")) )
74                         {
75                                 return;
76                         }
77                 }
78                 
79                 $this->action_class = $action_class;
80                 $this->event_identifier = $event_identifier;
81                 
82                 // read skin name/description/content type
83                 $query = "SELECT * FROM %s WHERE sdnumber=%d;";
84                 $query = sprintf($query, sql_table('skin_desc'), $this->id);
85                 $res = DB::getRow($query);
86                 
87                 $this->valid = !empty($res);
88                 if ( $this->valid )
89                 {
90                         $this->name = $res['sdname'];
91                         $this->description = $res['sddesc'];
92                         $this->contentType = $res['sdtype'];
93                         $this->includeMode = $res['sdincmode'];
94                         $this->includePrefix = $res['sdincpref'];
95                 }
96                 
97                 return;
98         }
99         
100         /**
101          * Skin::getID()
102          * Get SKIN id
103          * 
104          * @param       void
105          * @return      integer id for this skin instance
106          */
107         public function getID()
108         {
109                 return (integer) $this->id;
110         }
111         
112         /**
113          * Skin::isValid()
114          * 
115          * @param       void
116          * @return      boolean
117          */
118         public function isValid()
119         {
120                 return (boolean) $this->valid;
121         }
122         
123         /**
124          * Skin::getName()
125          * Get SKIN name
126          * 
127          * @param       void
128          * @return      string  name of this skin instance
129          */
130         public function getName()
131         {
132                 return (string) $this->name;
133         }
134         
135         /**
136          * Skin::getDescription()
137          * Get SKIN description
138          * 
139          * @param       void
140          * @return      string  description of this skin instance
141          */
142         public function getDescription()
143         {
144                 return (string) $this->description;
145         }
146         
147         /**
148          * Skin::getContentType()
149          * Get SKIN content type
150          * e.g. text/xml, text/html, application/atom+xml
151          * 
152          * @param       void
153          * @return      string  name of this skin instance
154          */
155         public function getContentType()
156         {
157                 return (string) $this->contentType;
158         }
159         
160         /**
161          * Skin::getIncludeMode()
162          * Get include mode of the SKIN
163          * 
164          * Returns either 'normal' or 'skindir':
165          * 'normal': if a all data of the skin can be found in the databse
166          * 'skindir': if the skin has data in the it's skin driectory
167          * 
168          * @param       void
169          * @return      string  normal/skindir
170          */
171         public function getIncludeMode()
172         {
173                 return (string) $this->includeMode;
174         }
175         
176         /**
177          * Skin::getIncludePrefix()
178          * Get include prefix of the SKIN
179          * 
180          * Get name of the subdirectory (with trailing slash) where
181          * the files of the current skin can be found (e.g. 'default/')
182          * 
183          * @param       void
184          * @return      string  include prefix of this skin instance
185          */
186         public function getIncludePrefix()
187         {
188                 return (string) $this->includePrefix;
189         }
190         
191         /**
192          * Skin::exists()
193          * Checks if a skin with a given shortname exists
194          * 
195          * @static
196          * @param       string  $name   Skin short name
197          * @return      integer number of skins with the given ID
198          */
199         static public function exists($name)
200         {
201                 $query = "SELECT COUNT(*) AS result FROM %s WHERE sdname=%s;";
202                 $query = sprintf($query, sql_table('skin_desc'), DB::quoteValue($name));
203                 return (DB::getValue($query) > 0);
204         }
205         
206         /**
207          * Skin::existsID()
208          * Checks if a skin with a given ID exists
209          * 
210          * @static
211          * @param       string  $id     Skin ID
212          * @return      integer number of skins with the given ID
213          */
214         static public function existsID($id)
215         {
216                 $query = "SELECT COUNT(*) AS result FROM %s WHERE sdnumber=%d;";
217                 $query = sprintf($query, sql_table('skin_desc'), (integer) $id);
218                 return (DB::getValue($query) > 0);
219         }
220         
221         /**
222          * Skin::createFromName()
223          * Returns a skin given its shortname
224          * 
225          * @static
226          * @param       string  $name   Skin shortname
227          * @return      object instance of Skin class
228          */
229         static public function createFromName($name)
230         {
231                 return new SKIN(SKIN::getIdFromName($name));
232         }
233         
234         /**
235          * Skin::getIdFromName()
236          * Returns a skin ID given its shortname
237          * 
238          * @static
239          * @param       string  $name   Skin shortname
240          * @return      integer Skin ID
241          */
242         static public function getIdFromName($name)
243         {
244                 $query = "SELECT sdnumber FROM %s WHERE sdname=%s;";
245                 $query = sprintf($query, sql_table('skin_desc'), DB::quoteValue($name));
246                 return DB::getValue($query);
247         }
248         
249         /**
250          * Skin::getNameFromId()
251          * Returns a skin shortname given its ID
252          * 
253          * @static
254          * @param       string  $name
255          * @return      string  Skin short name
256          */
257         static public function getNameFromId($id)
258         {
259                 $query = "SELECT sdname AS result FROM %s WHERE sdnumber=%d;";
260                 $query = sprintf($query, sql_table('skin_desc'), (integer) $id);
261                 return DB::getValue($query);
262         }
263         
264         /**
265          * SKIN::createNew()
266          * Creates a new skin, with the given characteristics.
267          *
268          * @static
269          * @param       String  $name   value for nucleus_skin.sdname
270          * @param       String  $desc   value for nucleus_skin.sddesc
271          * @param       String  $type   value for nucleus_skin.sdtype
272          * @param       String  $includeMode    value for nucleus_skin.sdinclude
273          * @param       String  $includePrefix  value for nucleus_skin.sdincpref
274          * @return      Integer ID for just inserted record
275          */
276         public function createNew($name, $desc, $type = 'text/html', $includeMode = 'normal', $includePrefix = '')
277         {
278                 global $manager;
279                 
280                 $manager->notify(
281                         'PreAddSkin',
282                         array(
283                                 'name' => &$name,
284                                 'description' => &$desc,
285                                 'type' => &$type,
286                                 'includeMode' => &$includeMode,
287                                 'includePrefix' => &$includePrefix
288                         )
289                 );
290                 
291                 $query = "INSERT INTO %s (sdname, sddesc, sdtype, sdincmode, sdincpref) VALUES (%s, %s, %s, %s, %s);";
292                 $sdname         = DB::quoteValue($name);
293                 $sddesc         = DB::quoteValue($desc);
294                 $sdtype         = DB::quoteValue($type);
295                 $sdincmode      = DB::quoteValue($includeMode);
296                 $sdincpref      = DB::quoteValue($includePrefix);
297                 $query = sprintf($query, sql_table('skin_desc'), $sdname, $sddesc, $sdtype, $sdincmode, $sdincpref);
298                 DB::execute($query);
299                 $newid = DB::getInsertId();
300                 
301                 $manager->notify(
302                         'PostAddSkin',
303                         array(
304                                 'skinid'                => $newid,
305                                 'name'                  => $name,
306                                 'description'   => $desc,
307                                 'type'                  => $type,
308                                 'includeMode'   => $includeMode,
309                                 'includePrefix' => $includePrefix
310                         )
311                 );
312                 return $newid;
313         }
314         
315         /**
316          * Skin::parse()
317          * Parse a SKIN
318          * 
319          * @param       string  $type
320          * @param       string  $path   path to file if using fileparser
321          * @return      void
322          */
323         public function parse($type, $path='')
324         {
325                 global $currentSkinName, $manager, $CONF, $DIR_NUCLEUS;
326                 
327                 $manager->notify("Init{$this->event_identifier}Parse", array('skin' => &$this, 'type' => $type));
328                 
329                 // set output type
330                 sendContentType($this->getContentType(), 'skin');
331                 
332                 // set skin name as global var (so plugins can access it)
333                 $currentSkinName = $this->getName();
334                 
335                 $contents = FALSE;
336                 if ( $type != 'fileparse' )
337                 {
338                         $contents = $this->getContent($type);
339                 }
340                 else if ( $path !== ''  && i18n::strpos(realpath($path), realpath("$DIR_NUCLEUS/../")) == 0 )
341                 {
342                         $contents = $this->getFileContent($path);
343                 }
344                 
345                 if ( !$contents )
346                 {
347                         // use base skin if this skin does not have contents
348                         $defskin = new SKIN($CONF['BaseSkin']);
349                         $contents = $defskin->getContent($type);
350                         if ( !$contents )
351                         {
352                                 echo _ERROR_SKIN;
353                                 return;
354                         }
355                 }
356                 
357                 $manager->notify("Pre{$this->event_identifier}Parse", array('skin' => &$this, 'type' => $type, 'contents' => &$contents));
358                 
359                 // set IncludeMode properties of parser
360                 Parser::setProperty('IncludeMode', $this->getIncludeMode());
361                 Parser::setProperty('IncludePrefix', $this->getIncludePrefix());
362                 
363                 $action_class = $this->action_class;
364                 $handler = new $action_class($type);
365                 
366                 $actions = $handler->getDefinedActions($type);
367                 $parser = new Parser($actions, $handler);
368                 
369                 $handler->setParser($parser);
370                 $handler->setSkin($this);
371                 $parser->parse($contents);
372                 
373                 $manager->notify("Post{$this->event_identifier}Parse", array('skin' => &$this, 'type' => $type));
374                 return;
375         }
376         
377         /**
378          * Skin::getContent()
379          * Get content of the skin part from the database
380          * 
381          * @param       string  $type   type of the skin (e.g. index, item, search ...)
382          * @return      string  content of scontent
383          */
384         public function getContent($type)
385         {
386                 $query = "SELECT scontent FROM %s WHERE sdesc=%d and stype=%s;";
387                 $query = sprintf($query, sql_table('skin'), (integer) $this->id, DB::quoteValue($type));
388                 $res = DB::getValue($query);
389                 
390                 return $res ? $res : '';
391         }
392         
393         /**
394          * Skin::getFileContent()
395          * 
396          * @param       string  $fullpath       fullpath to the file to parse
397          * @return      mixed   file contents or FALSE
398          */
399         public function getFileContent($fullpath)
400         {
401                 $fsize = filesize($fullpath);
402                 if ( $fsize <= 0 )
403                 {
404                         return;
405                 }
406                 
407                 $fd = fopen ($fullpath, 'r');
408                 if ( $fd === FALSE )
409                 {
410                         return FALSE;
411                 }
412                 
413                 $contents = fread ($fd, $fsize);
414                 if ( $contents === FALSE )
415                 {
416                         return FALSE;
417                 }
418                 
419                 fclose ($fd);
420                 return $contents;
421         }
422         
423         /**
424          * SKIN::update()
425          * Updates the contents for one part of the skin in the database
426          * 
427          * @param       string  $type type of the skin part (e.g. index, item, search ...) 
428          * @param       string  $content new content for this skin part
429          * @return      void
430          * 
431          */
432         public function update($type, $content)
433         {
434                 global $manager;
435                 
436                 $query = "SELECT sdesc FROM %s WHERE stype=%s and sdesc=%d;";
437                 $query = sprintf($query, sql_table('skin'), DB::quoteValue($type), (integer) $this->id);
438                 $res = DB::getValue($query);
439                 
440                 $skintypeexists = !empty($res);
441                 $skintypevalue = ($content == true);
442                 
443                 if( $skintypevalue && $skintypeexists )
444                 {
445                         $data = array(
446                                 'skinid'        =>  $this->id,
447                                 'type'          =>  $type,
448                                 'content'       => &$content
449                         );
450                         
451                         // PreUpdateSkinPart event
452                         $manager->notify("PreUpdate{{$this->event_identifier}}Part", $data);
453                 }
454                 else if( $skintypevalue && !$skintypeexists )
455                 {
456                         $data = array(
457                                 'skinid' => $this->id,
458                                 'type' => $type,
459                                 'content' => &$content
460                         );
461                         
462                         $manager->notify("PreAdd{$this->event_identifier}Part", $data);
463                 }
464                 else if( !$skintypevalue && $skintypeexists )
465                 {
466                         $data = array(
467                                 'skinid' => $this->id,
468                                 'type' => $type
469                         );
470                         
471                         $manager->notify("PreDelete{$this->event_identifier}Part", $data);
472                 }
473                 
474                 // delete old thingie
475                 $query = "DELETE FROM %s WHERE stype=%s and sdesc=%d";
476                 $query = sprintf($query, sql_table('skin'), DB::quoteValue($type), (integer) $this->id);
477                 DB::execute($query);
478                 
479                 // write new thingie
480                 if ( $content )
481                 {
482                         $query = "INSERT INTO %s (scontent, stype, sdesc) VALUE (%s, %s, %d)";
483                         $query = sprintf($query, sql_table('skin'), DB::quoteValue($content), DB::quoteValue($type), (integer) $this->id);
484                         DB::execute($query);
485                 }
486                 
487                 if( $skintypevalue && $skintypeexists )
488                 {
489                         $data = array(
490                                 'skinid'        => $this->id,
491                                 'type'          => $type,
492                                 'content'       => &$content
493                         );
494                         
495                         // PostUpdateSkinPart event
496                         $manager->notify("PostUpdate{$this->event_identifier}Part", $data);
497                 }
498                 else if( $skintypevalue && (!$skintypeexists) )
499                 {
500                         $data = array(
501                                 'skinid'        => $this->id,
502                                 'type'          => $type,
503                                 'content'       => &$content
504                         );
505                         
506                         // PostAddSkinPart event
507                         $manager->notify("PostAdd{$this->event_identifier}Part", $data);
508                 }
509                 else if( (!$skintypevalue) && $skintypeexists )
510                 {
511                         $data = array(
512                                 'skinid'        => $this->id,
513                                 'type'          => $type
514                         );
515                         
516                         $manager->notify("PostDelete{$this->event_identifier}Part", $data);
517                 }
518                 return;
519         }
520         
521         /**
522          * Skin::deleteAllParts()
523          * Deletes all skin parts from the database
524          * 
525          * @param       void
526          * @return      void
527          */
528         public function deleteAllParts()
529         {
530                 $query = "DELETE FROM %s WHERE sdesc=%d;";
531                 $query = sprintf($query, sql_table('skin'), (integer) $this->id);
532                 DB::execute($query);
533         }
534         
535         /**
536          * Skin::updateGeneralInfo()
537          * Updates the general information about the skin
538          * 
539          * @param       string  $name                   name of the skin
540          * @param       string  $desc                   description of the skin
541          * @param       string  $type                   type of the skin
542          * @param       string  $includeMode    include mode of the skin
543          * @param       string  $includePrefix  include prefix of the skin
544          * @return      void
545          */
546         public function updateGeneralInfo($name, $desc, $type = 'text/html', $includeMode = 'normal', $includePrefix = '')
547         {
548                 $name                   = DB::quoteValue($name);
549                 $desc                   = DB::quoteValue($desc);
550                 $type                   = DB::quoteValue($type);
551                 $includeMode    = DB::quoteValue($includeMode);
552                 $includePrefix  = DB::quoteValue($includePrefix);
553                 
554                 $query ="UPDATE %s SET sdname=%s, sddesc=%s, sdtype=%s, sdincmode=%s, sdincpref=%s WHERE sdnumber=%d";
555                 $query = sprintf($query, sql_table('skin_desc'), $name, $desc, $type, $includeMode, $includePrefix, (integer) $this->id);
556                 
557                 DB::execute($query);
558                 return;
559         }
560         
561         /**
562          * Skin::getDefaultTypes()
563          * 
564          * @param       string  void
565          * @return      array   default skin types
566          */
567         public function getDefaultTypes()
568         {
569                 return call_user_func(array($this->action_class, 'getDefaultSkinTypes'));
570         }
571         
572         /**
573          * Skin::getAvailableTypes()
574          * 
575          * @param       string  void
576          * @return      array   registered skin types
577          */
578         public function getAvailableTypes()
579         {
580                 $default_skintypes = $this->getDefaultTypes();
581                 $query = "SELECT stype FROM %s WHERE sdesc=%d;";
582                 $query = sprintf($query, sql_table('skin'), (integer) $this->id);
583                 
584                 /* NOTE: force to put default types in the beginning */
585                 $in_default = array();
586                 $no_default = array();
587                 
588                 $res = DB::getResult($query);
589                 foreach ( $res as $row )
590                 {
591                         if ( !array_key_exists($row['stype'], $default_skintypes) )
592                         {
593                                 $no_default[$row['stype']] = FALSE;
594                         }
595                         else
596                         {
597                                 $in_default[$row['stype']] = $default_skintypes[$row['stype']];
598                         }
599                 }
600                 
601                 return array_merge($in_default, $no_default);
602         }
603         
604         /**
605          * Skin::getAllowedActionsForType()
606          * Get the allowed actions for a skin type
607          * returns an array with the allowed actions
608          * 
609          * @param       string  $type   type of the skin
610          * @return      array   allowed action types
611          */
612         public function getAllowedActionsForType($type)
613         {
614                 return call_user_func(array($this->action_class, 'getDefinedActions'), $type);
615         }
616         
617 }