Overview

Packages

  • alpha::controller
  • alpha::controller::front
  • alpha::exceptions
  • alpha::model
  • alpha::model::types
  • alpha::tasks
  • alpha::tests
  • alpha::util
  • alpha::util::cache
  • alpha::util::codehighlight
  • alpha::util::convertors
  • alpha::util::feeds
  • alpha::util::filters
  • alpha::util::graphs
  • alpha::util::helpers
  • alpha::util::metrics
  • alpha::util::search
  • alpha::view
  • alpha::view::renderers
  • alpha::view::widgets

Classes

  • AlphaController
  • CacheManager
  • Create
  • CreateArticle
  • Detail
  • Edit
  • EditArticle
  • EditDEnum
  • EditTags
  • GenSecureQueryStrings
  • Install
  • ListAll
  • ListBusinessObjects
  • ListDEnums
  • ListSequences
  • Login
  • Logout
  • PreviewArticle
  • Search
  • TagManager
  • ViewArticle
  • ViewArticleFile
  • ViewArticlePDF
  • ViewArticlePrint
  • ViewArticleTitle
  • ViewAttachment
  • ViewExcel
  • ViewFeed
  • ViewImage
  • ViewLog
  • ViewMetrics
  • ViewRecordSelector
  • ViewTestResults

Interfaces

  • AlphaControllerInterface
  • Overview
  • Package
  • Class
  • Tree
  • Deprecated
  1: <?php
  2: 
  3: // include the config file
  4: if(!isset($config)) {
  5:     require_once '../util/AlphaConfig.inc';
  6:     $config = AlphaConfig::getInstance();
  7: 
  8:     require_once $config->get('app.root').'alpha/util/AlphaAutoLoader.inc';
  9: }
 10: 
 11: /**
 12:  *
 13:  * Controller used to clear out the CMS cache when required
 14:  *
 15:  * @package alpha::controller
 16:  * @since 1.0
 17:  * @author John Collins <dev@alphaframework.org>
 18:  * @version $Id: CacheManager.php 1745 2014-03-29 15:19:05Z alphadevx $
 19:  * @license http://www.opensource.org/licenses/bsd-license.php The BSD License
 20:  * @copyright Copyright (c) 2014, John Collins (founder of Alpha Framework).
 21:  * All rights reserved.
 22:  *
 23:  * <pre>
 24:  * Redistribution and use in source and binary forms, with or
 25:  * without modification, are permitted provided that the
 26:  * following conditions are met:
 27:  *
 28:  * * Redistributions of source code must retain the above
 29:  *   copyright notice, this list of conditions and the
 30:  *   following disclaimer.
 31:  * * Redistributions in binary form must reproduce the above
 32:  *   copyright notice, this list of conditions and the
 33:  *   following disclaimer in the documentation and/or other
 34:  *   materials provided with the distribution.
 35:  * * Neither the name of the Alpha Framework nor the names
 36:  *   of its contributors may be used to endorse or promote
 37:  *   products derived from this software without specific
 38:  *   prior written permission.
 39:  *
 40:  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
 41:  * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
 42:  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 43:  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 44:  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 45:  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 46:  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 47:  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 48:  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 49:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 50:  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
 51:  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 52:  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 53:  * </pre>
 54:  *
 55:  */
 56: class CacheManager extends AlphaController implements AlphaControllerInterface {
 57:     /**
 58:      * The root of the cache directory
 59:      *
 60:      * @var string
 61:      * @since 1.0
 62:      */
 63:     private $dataDir;
 64: 
 65:     /**
 66:      * Trace logger
 67:      *
 68:      * @var Logger
 69:      * @since 1.0
 70:      */
 71:     private static $logger = null;
 72: 
 73:     /**
 74:      * constructor to set up the object
 75:      *
 76:      * @since 1.0
 77:      */
 78:     public function __construct() {
 79:         self::$logger = new Logger('CacheManager');
 80:         self::$logger->debug('>>__construct()');
 81: 
 82:         global $config;
 83: 
 84:         // ensure that the super class constructor is called, indicating the rights group
 85:         parent::__construct('Admin');
 86: 
 87:         $this->setTitle('Cache Manager');
 88:         $this->dataDir  = $config->get('app.file.store.dir').'cache/';
 89: 
 90:         self::$logger->debug('<<__construct');
 91:     }
 92: 
 93:     /**
 94:      * Handle GET requests
 95:      *
 96:      * @param array $params
 97:      * @throws IllegalArguementException
 98:      * @since 1.0
 99:      */
100:     public function doGET($params) {
101:         self::$logger->debug('>>doGET($params=['.var_export($params, true).'])');
102: 
103:         global $config;
104: 
105:         if(!is_array($params))
106:             throw new IllegalArguementException('Bad $params ['.var_export($params, true).'] passed to doGET method!');
107: 
108: 
109:         echo AlphaView::displayPageHead($this);
110: 
111:         $message = $this->getStatusMessage();
112:         if(!empty($message))
113:             echo $message;
114: 
115:         echo '<h3>Listing contents of cache directory: '.$this->dataDir.'</h3>';
116: 
117:         $fileCount = AlphaFileUtils::listDirectoryContents($this->dataDir, 0, array('.htaccess'));
118: 
119:         echo '<h3>Total of '.$fileCount.' files in the cache.</h3>';
120: 
121:         echo '<form action="'.$_SERVER['REQUEST_URI'].'" method="post" name="clearForm" id="clearForm">';
122:         $fieldname = ($config->get('security.encrypt.http.fieldnames') ? base64_encode(AlphaSecurityUtils::encrypt('clearCache')) : 'clearCache');
123:         echo '<input type="hidden" name="'.$fieldname.'" id="'.$fieldname.'" value="false"/>';
124:         $js = "if(window.jQuery) {
125:                     BootstrapDialog.show({
126:                         title: 'Confirmation',
127:                         message: 'Are you sure you want to delete all files in the cache?',
128:                         buttons: [
129:                             {
130:                                 icon: 'glyphicon glyphicon-remove',
131:                                 label: 'Cancel',
132:                                 cssClass: 'btn btn-default btn-xs',
133:                                 action: function(dialogItself){
134:                                     dialogItself.close();
135:                                 }
136:                             },
137:                             {
138:                                 icon: 'glyphicon glyphicon-ok',
139:                                 label: 'Okay',
140:                                 cssClass: 'btn btn-default btn-xs',
141:                                 action: function(dialogItself) {
142:                                     $('[id=\"".$fieldname."\"]').attr('value', 'true');
143:                                     $('#clearForm').submit();
144:                                     dialogItself.close();
145:                                 }
146:                             }
147:                         ]
148:                     });
149:                 }";
150:         $button = new Button($js, "Clear cache", "clearBut");
151:         echo $button->render();
152: 
153:         echo AlphaView::renderSecurityFields();
154:         echo '</form>';
155: 
156:         echo AlphaView::displayPageFoot($this);
157: 
158:         self::$logger->debug('<<doGET');
159:     }
160: 
161:     /**
162:      * Handle POST requests
163:      *
164:      * @param array $params
165:      * @since 1.0
166:      */
167:     public function doPOST($params) {
168:         self::$logger->debug('>>doPOST($params=['.var_export($params, true).'])');
169: 
170:         try {
171:             // check the hidden security fields before accepting the form POST data
172:             if(!$this->checkSecurityFields())
173:                 throw new SecurityException('This page cannot accept post data from remote servers!');
174: 
175:             if(!is_array($params))
176:                 throw new IllegalArguementException('Bad $params ['.var_export($params, true).'] passed to doPOST method!');
177: 
178:             if (isset($params['clearCache']) && $params['clearCache'] == 'true') {
179:                 try {
180:                     AlphaFileUtils::deleteDirectoryContents($this->dataDir, array('.htaccess'));
181: 
182:                     $this->setStatusMessage(AlphaView::displayUpdateMessage('Cache contents deleted successfully.'));
183: 
184:                     self::$logger->info('Cache contents deleted successfully by user ['.$_SESSION['currentUser']->get('displayName').'].');
185:                 }catch (AlphaException $e) {
186:                     self::$logger->error($e->getMessage());
187:                     $this->setStatusMessage(AlphaView::displayErrorMessage($e->getMessage()));
188:                 }
189:             }
190: 
191:             return $this->doGET($params);
192:         }catch(SecurityException $e) {
193:             $this->setStatusMessage(AlphaView::displayErrorMessage($e->getMessage()));
194: 
195:             self::$logger->warn($e->getMessage());
196:         }catch(IllegalArguementException $e) {
197:             self::$logger->error($e->getMessage());
198:             $this->setStatusMessage(AlphaView::displayErrorMessage($e->getMessage()));
199:         }
200: 
201:         echo AlphaView::displayPageHead($this);
202: 
203:         $message = $this->getStatusMessage();
204:         if(!empty($message))
205:             echo $message;
206: 
207:         echo AlphaView::displayPageFoot($this);
208:         self::$logger->debug('<<doPOST');
209:     }
210: 
211:     /**
212:      * Use this callback to inject in the admin menu template fragment
213:      *
214:      * @since 1.2
215:      */
216:     public function after_displayPageHead_callback() {
217:         $menu = AlphaView::loadTemplateFragment('html', 'adminmenu.phtml', array());
218: 
219:         return $menu;
220:     }
221: }
222: 
223: // now build the new controller if this file is called directly
224: if ('CacheManager.php' == basename($_SERVER['PHP_SELF'])) {
225:     $controller = new CacheManager();
226: 
227:     if(!empty($_POST)) {
228:         $controller->doPOST($_QUERY);
229:     }else{
230:         $controller->doGET($_GET);
231:     }
232: }
233: 
234: ?>
Alpha Framework 1.2.4 API Documentation API documentation generated by ApiGen 2.8.0