Ejemplo n.º 1
0
 public function run()
 {
     $this->ajaxAuth = true;
     if ($this->getOption('auth')) {
         $this->ajaxAuth = false;
         $subController = new M_Office_Auth($_REQUEST['database']);
         if (!key_exists('adminPrivileges', $_SESSION) || key_exists('logout', $_REQUEST)) {
             $this->assign('username', User::getInstance('office')->getProperty('username'));
             $this->ajaxAuth = true;
         } elseif (!User::getInstance('office')->isLoggedIn()) {
             $this->ajaxAuth = false;
         } else {
             $subController->initOptions();
             $this->assign('username', User::getInstance('office')->getProperty('username'));
         }
     }
     $not = Notifier::getInstance();
     $not->addListener($this);
     if ($this->getOption('auth') && !User::getInstance('office')->isLoggedIn()) {
         if (self::isAjaxRequest()) {
             $this->assign('__action', 'ajaxlogin');
         }
         return;
     }
     if (key_exists('updateSuccess', $_REQUEST)) {
         $this->say(__('Record was successfully updated'));
         M_Office_Util::clearRequest(array('updateSuccess' => 1));
     }
     if (isset($_REQUEST['module'])) {
         $info = M_Office_Util::getModuleInfo($_REQUEST['module']);
         $module = $_REQUEST['module'];
         if (!$info) {
             if (strpos($_REQUEST['module'], ':')) {
                 $info = array('type' => 'dyn', 'title' => 'Plugin');
                 $module = $tab[1];
             } elseif (preg_match('`^(.+)helper$`', $_REQUEST['module'], $tab)) {
                 $info = array('type' => 'dyn', 'title' => __("modules.{$tab[1]}helper.title"));
                 $module = $_REQUEST['module'];
             } else {
                 throw new NotFoundException(__('error.module_not_found', array($_REQUEST['module'])));
             }
         }
     }
     if ($this->isAjaxRequest() && $this->ajaxAuth && $info['type'] != 'dyn') {
         $this->output = '';
         unset($this->localOutput);
     }
     if (isset($_REQUEST['debug']) && MODE == 'development') {
         $debug = (int) $_REQUEST['debug'] % 3;
         DB_DataObject::debugLevel($debug);
         ini_set('display_errors', 1);
     }
     if ($_REQUEST['livesearch']) {
         $aj = new M_Office_livesearch($_REQUEST['searchtext'], $_REQUEST['expand']);
         $this->output = $aj->processRequest();
         return;
     } elseif ($_REQUEST['treesort']) {
         $aj = new M_Office_treesort();
         $this->output = $aj->processRequest();
         return;
     } elseif ($_REQUEST['liveedit']) {
         $aj = new M_Office_liveedit($_REQUEST['liveedit']);
         $this->output = $aj->processRequest();
         return;
     } elseif (key_exists('ajaxfromtable', $_REQUEST)) {
         $table = $_REQUEST['module'];
         $do = DB_DataObject::factory($table);
         $do->get($_REQUEST['filterField'], $_REQUEST['filterValue']);
         $aj = new M_Office_ajaxFromTable($do, $_REQUEST['module'], $_REQUEST['module'], $_REQUEST['filterField'], $_REQUEST['filterValue']);
         $this->output = $aj->processRequest();
         return;
     }
     if (isset($_REQUEST['module'])) {
         if (!$info) {
             $info = M_Office_Util::getModuleInfo($_REQUEST['module']);
         }
         switch ($info['type']) {
             case 'db':
                 // TODO ajouter ce path en avant-dernier et non en dernier
                 Mreg::get('tpl')->addPath(APP_ROOT . 'app/' . APP_NAME . '/templates/' . $info['table'] . '/', 'after');
                 Mreg::get('tpl')->addPath(APP_ROOT . 'app/' . APP_NAME . '/templates/' . $_REQUEST['module'] . '/', 'after');
                 $subController = new M_Office_ShowTable($_REQUEST['module'], $filter);
                 break;
             case 'dyn':
                 // home module = available for everyone
                 $allowAccess = $_REQUEST['module'] == 'home' || M_Office_Util::getGlobalOption('view', 'showtable', $_REQUEST['module']);
                 if (!$allowAccess) {
                     Log::warn('User is NOT allowed to access ' . $_REQUEST['module']);
                     M_Office_Util::refresh(M_Office::URL(array(), array_keys($_REQUEST)));
                 } else {
                     Log::info('User is allowed to access ' . $_REQUEST['module']);
                 }
                 $subController = Module::factory($_REQUEST['module'], M::getPaths('module'));
                 $subController->executeAction($_REQUEST['action'] ? $_REQUEST['action'] : 'index');
                 $this->assign('__action', 'dyn');
                 $layout = $subController->getConfig('layout', $_REQUEST['action'] ? $_REQUEST['action'] : 'index');
                 if ($layout == '__self') {
                     M_Office::$dsp = '__defaut/ajaxindex';
                 } elseif ($layout) {
                     M_Office::$dsp = $layout;
                 }
                 $this->assign('output', $subController->output(null, '__self'));
                 break;
         }
         $this->assign('currentmodule', $_REQUEST['module']);
     } else {
         $subController = new M_Office_FrontEndHome();
     }
 }
Ejemplo n.º 2
0
 public function run()
 {
     $this->do = $this->getRecord();
     deny_unless_can('read', $this->do);
     $this->assign('__action', 'edit');
     $this->append('subActions', '<a href="' . M_Office_Util::getQueryParams(array(), array('record', 'doSingleAction', '__record_ref')) . '">' . __('&lt; Back to list') . '</a>');
     $tpl = Mreg::get('tpl');
     $tpl->concat('adminTitle', $this->do->__toString() . ' :: ' . $this->moduloptions['title']);
     $tpl->assign('adminHeader', $this->do->__toString());
     $database = $this->do->database();
     /**
      *
      * Actions
      *
      **/
     if (isset($_REQUEST['doSingleAction']) && $this->getGlobalOption('actions', 'showtable', $this->module)) {
         $subController = new M_Office_Actions($this->getOptions());
         $subController->run($this->do, $_REQUEST['doSingleAction'], 'single');
         if ($subController->hasOutput()) {
             return;
         }
     }
     $this->createActions();
     $formBuilder = MyFB::create($this->do);
     if (!can('update', $this->module)) {
         $formBuilder->userEditableFields = array('__fakefield');
     }
     $editopts = PEAR::getStaticProperty('m_office_editrecord', 'options');
     if (!empty($editopts['tableOptions'][$this->module]['fields'])) {
         $formBuilder->fieldsToRender = $editopts['tableOptions'][$this->module]['fields'];
     }
     $form = new MyQuickForm('editRecord', 'POST', M_Office_Util::doURL($this->do, $this->module, array()), '_self', null, true);
     $formBuilder->elementTypeAttributes = array('longtext' => array('cols' => 50, 'rows' => 10));
     $formBuilder->useForm($form);
     if ($this->getOption('edit', $this->module)) {
         $this->assign('editable', true);
     } else {
         $doFreeze = true;
     }
     $form = $formBuilder->getForm();
     if (PEAR::isError($form)) {
         throw new Exception($form->getMessage() . ' ' . print_r($form->getUserInfo(), true));
     }
     if ($doFreeze) {
         $form->freeze();
         $submit = $form->getElement('__submit__');
         if (!PEAR::isError($submit)) {
             $form->removeElement('__submit__');
         }
     }
     if ($form->validate()) {
         $ret = $form->process(array($formBuilder, 'processForm'), false);
         if (PEAR::isError($ret)) {
             $this->append('errors', __('An error occured while updating record') . ' : ' . $ret->getMessage());
             $this->assign('__action', 'error');
             return;
         } else {
             $params_to_remove = array();
             $values = $form->exportValues();
             if ($values['__backtolist__']) {
                 $params_to_remove[] = 'record';
             }
             if (!key_exists('debug', $_REQUEST)) {
                 $this->say(__('Record saved !'));
                 M_Office_Util::refresh(M_Office_Util::doURL($this->do, $this->module, array(), $params_to_remove));
             }
         }
     }
     $this->assign('editForm', $form);
     if ($linkFromTables = $this->getOption('linkFromTables', $this->table)) {
         $ajaxFrom = $this->getOption('ajaxLinksFromTable', $this->table);
         if (!is_array($ajaxFrom)) {
             $ajaxFrom = array();
         }
         foreach ($this->do->reverseLinks() as $linkFromTable => $field) {
             list($linkTab, $linkField) = explode(':', $linkFromTable);
             switch (true) {
                 case !$this->getGlobalOption('view', 'showtable', $linkTab):
                     break;
                 case key_exists($linkTab, $ajaxFrom):
                     $fromfield = $ajaxFrom[$linkFromTable]['fromfield'];
                     if ($fromfield == $linkField || !$fromfield) {
                         $info = $ajaxFrom[$linkTab];
                         $aja = new M_Office_ajaxFromTable($this->do, $this->module, $linkTab, $linkField, $this->do->{$field});
                         if ($info['position'] == 'before') {
                             $ajaxLinksBefore[] = $aja->getBlock();
                         } else {
                             $ajaxLinksAfter[] = $aja->getBlock();
                         }
                     }
                     break;
                 case $linkFromTables === TRUE || is_array($linkFromTables) && in_array($linkTab, $linkFromTables):
                     if ($linkInfo = $this->getLinkFromTableItem($linkTab, $linkField, $field)) {
                         $linkFromTableArray[] = $linkInfo;
                     }
                     break;
             }
         }
     }
     M::hook($this->do->tableName(), 'alterLinkFromTables', array(&$linkFromTableArray, $this->do));
     $this->assign('linkFromTables', $linkFromTableArray);
     $this->assign('ajaxFrom', array('before' => $ajaxLinksBefore, 'after' => $ajaxLinksAfter));
     $related = '';
     if (($linkToTables = $this->getOption('linkToTables', $this->table)) && is_array($links = $this->do->links())) {
         foreach ($links as $linkField => $link) {
             list($linkTab, $linkRec) = explode(':', $link);
             if ((!is_array($linkToTables) || in_array($linkTab, $linkToTables)) && $this->getOption('view', $linkTab)) {
                 $linkDo = $this->do->getLink($linkField);
                 if ($linkDo) {
                     $this->append('linkToTables', array('table' => $linkTab, 'link' => M_Office_Util::DoUrl($linkDo, $linkTab, array(), array('page'))));
                 }
             }
         }
     }
     $this->assign('related', $related);
     $this->assign('do', $this->do);
 }