コード例 #1
0
 public function out()
 {
     $this->pache = $GLOBALS['pache'];
     $this->service = GetService::getInstance();
     /* 如果出错的话则不返回html */
     if (is_null($this->service->article['id'])) {
         return '';
     }
     $method = 'out' . (strlen($this->pache->duoshuo) ? 'Duoshuo' : 'Pache');
     return $this->{$method}();
 }
コード例 #2
0
 public function backHTML()
 {
     $pache = $GLOBALS['pache'];
     /* 检查当前的位置(是get.php还是index.php) */
     if (isset($GLOBALS['getView'])) {
         $service = GetService::getInstance();
         $currentCategories = $service->article['categories'];
     } else {
         if (isset($_GET['categories'])) {
             $currentCategories = $_GET['categories'];
         } else {
             $currentCategories = NULL;
         }
     }
     $str = '';
     foreach ($this->categories as $value) {
         if (strlen($value)) {
             $str .= self::createLi($value, $currentCategories, $value, $value);
         }
     }
     $str = $str . self::outCustomClassHTML() . self::createLi('', $currentCategories, '', '其它');
     $str = '<nav id="class">' . self::noCategories($currentCategories) . $str . '</nav>';
     return $str;
 }
コード例 #3
0
ファイル: index.php プロジェクト: Tom-Byrne/gocdb
 function getXml()
 {
     try {
         $directory = __DIR__ . '/../../lib/Gocdb_Services/PI/';
         $em = \Factory::getEntityManager();
         switch ($this->method) {
             case "get_site":
                 require_once $directory . 'GetSite.php';
                 $this->authAnyCert();
                 $getSite = new GetSite($em);
                 $getSite->validateParameters($this->params);
                 $getSite->createQuery();
                 $getSite->executeQuery();
                 $xml = $getSite->getXML();
                 break;
             case "get_site_list":
                 require_once $directory . 'GetSite.php';
                 $getSite = new GetSite($em);
                 $getSite->validateParameters($this->params);
                 $getSite->createQuery();
                 $getSite->executeQuery();
                 $xml = $getSite->getXMLShort();
                 break;
             case "get_site_contacts":
                 require_once $directory . 'GetSiteContacts.php';
                 $this->authAnyCert();
                 $getSiteContacts = new GetSiteContacts($em);
                 $getSiteContacts->validateParameters($this->params);
                 $getSiteContacts->createQuery();
                 $getSiteContacts->executeQuery();
                 $xml = $getSiteContacts->getXML();
                 break;
             case "get_site_security_info":
                 require_once $directory . 'GetSiteSecurityInfo.php';
                 $this->authAcl();
                 $getSiteSecurityInfo = new GetSiteSecurityInfo($em);
                 $getSiteSecurityInfo->validateParameters($this->params);
                 $getSiteSecurityInfo->createQuery();
                 $getSiteSecurityInfo->executeQuery();
                 $xml = $getSiteSecurityInfo->getXML();
                 break;
             case "get_roc_list":
                 require_once $directory . 'GetNGIList.php';
                 $getNGIList = new GetNGIList($em);
                 $getNGIList->validateParameters($this->params);
                 $getNGIList->createQuery();
                 $getNGIList->executeQuery();
                 $xml = $getNGIList->getXML();
                 break;
             case "get_subgrid_list":
                 require_once $directory . 'GetSubGridList.php';
                 $getSubGrid = new GetSubGridList($em);
                 $getSubGrid->validateParameters($this->params);
                 $getSubGrid->createQuery();
                 $getSubGrid->executeQuery();
                 $xml = $getSubGrid->getXML();
                 break;
             case "get_roc_contacts":
                 require_once $directory . 'GetNGIContacts.php';
                 $this->authAnyCert();
                 $getNGIContacts = new GetNGIContacts($em);
                 $getNGIContacts->validateParameters($this->params);
                 $getNGIContacts->createQuery();
                 $getNGIContacts->executeQuery();
                 $xml = $getNGIContacts->getXML();
                 break;
             case "get_service":
                 require_once $directory . 'GetService.php';
                 $getSE = new GetService($em);
                 $getSE->validateParameters($this->params);
                 $getSE->createQuery();
                 $getSE->executeQuery();
                 $xml = $getSE->getXML();
                 break;
             case "get_service_endpoint":
                 require_once $directory . 'GetService.php';
                 $getSE = new GetService($em);
                 $getSE->validateParameters($this->params);
                 $getSE->createQuery();
                 $getSE->executeQuery();
                 $xml = $getSE->getXML();
                 break;
             case "get_service_types":
                 require_once $directory . 'GetServiceTypes.php';
                 $getST = new GetServiceTypes($em);
                 $getST->validateParameters($this->params);
                 $getST->createQuery();
                 $getST->executeQuery();
                 $xml = $getST->getXML();
                 break;
             case "get_downtime_to_broadcast":
                 require_once $directory . 'GetDowntimesToBroadcast.php';
                 $getDTTBroadcast = new GetDowntimeToBroadcast($em);
                 $getDTTBroadcast->validateParameters($this->params);
                 $getDTTBroadcast->createQuery();
                 $getDTTBroadcast->executeQuery();
                 $xml = $getDTTBroadcast->getXML();
                 break;
             case "get_downtime":
                 require_once $directory . 'GetDowntime.php';
                 $getDowntime = new GetDowntime($em);
                 $getDowntime->validateParameters($this->params);
                 $getDowntime->createQuery();
                 $getDowntime->executeQuery();
                 $xml = $getDowntime->getXML();
                 break;
             case "get_downtime_nested_services":
                 require_once $directory . 'GetDowntime.php';
                 $getDowntime = new GetDowntime($em, true);
                 $getDowntime->validateParameters($this->params);
                 $getDowntime->createQuery();
                 $getDowntime->executeQuery();
                 $xml = $getDowntime->getXML();
                 break;
             case "get_user":
                 require_once $directory . 'GetUser.php';
                 $this->authAnyCert();
                 $getUser = new GetUser($em);
                 $getUser->validateParameters($this->params);
                 $getUser->createQuery();
                 $getUser->executeQuery();
                 $xml = $getUser->getXML();
                 break;
             case "get_project_contacts":
                 require_once $directory . 'GetProjectContacts.php';
                 $this->authAnyCert();
                 $getProjCon = new GetProjectContacts($em);
                 $getProjCon->validateParameters($this->params);
                 $getProjCon->createQuery();
                 $getProjCon->executeQuery();
                 $xml = $getProjCon->getXML();
                 break;
             case "get_ngi":
                 require_once $directory . 'GetNGI.php';
                 $this->authAnyCert();
                 $getNGI = new GetNGI($em);
                 $getNGI->validateParameters($this->params);
                 $getNGI->createQuery();
                 $getNGI->executeQuery();
                 $xml = $getNGI->getXML();
                 break;
             case "get_service_group":
                 require_once $directory . 'GetServiceGroup.php';
                 $this->authAnyCert();
                 $getServiceGroup = new GetServiceGroup($em);
                 $getServiceGroup->validateParameters($this->params);
                 $getServiceGroup->createQuery();
                 $getServiceGroup->executeQuery();
                 $xml = $getServiceGroup->getXML();
                 break;
             case "get_service_group_role":
                 require_once $directory . 'GetServiceGroupRole.php';
                 $this->authAnyCert();
                 $getServiceGroupRole = new GetServiceGroupRole($em);
                 $getServiceGroupRole->validateParameters($this->params);
                 $getServiceGroupRole->createQuery();
                 $getServiceGroupRole->executeQuery();
                 $xml = $getServiceGroupRole->getXML();
                 break;
             case "get_cert_status_date":
                 require_once $directory . 'GetCertStatusDate.php';
                 $this->authAnyCert();
                 $getCertStatusDate = new GetCertStatusDate($em);
                 $getCertStatusDate->validateParameters($this->params);
                 $getCertStatusDate->createQuery();
                 $getCertStatusDate->executeQuery();
                 $xml = $getCertStatusDate->getXML();
                 break;
             case "get_cert_status_changes":
                 require_once $directory . 'GetCertStatusChanges.php';
                 $this->authAnyCert();
                 $getCertStatusChanges = new GetCertStatusChanges($em);
                 $getCertStatusChanges->validateParameters($this->params);
                 $getCertStatusChanges->createQuery();
                 $getCertStatusChanges->executeQuery();
                 $xml = $getCertStatusChanges->getXML();
                 break;
             case "get_site_count_per_country":
                 require_once $directory . 'GetSiteCountPerCountry.php';
                 $GetSiteCountPerCountry = new GetSiteCountPerCountry($em);
                 $GetSiteCountPerCountry->validateParameters($this->params);
                 $GetSiteCountPerCountry->createQuery();
                 $GetSiteCountPerCountry->executeQuery();
                 $xml = $GetSiteCountPerCountry->getXML();
                 break;
             default:
                 die("Unable to find method: {$this->method}");
                 break;
         }
     } catch (\Exception $e) {
         print_r($e->getMessage());
         die("An error has occured, please contact the GOCDB administrators at gocdb-admins@egi.eu");
     }
     return $xml;
 }
コード例 #4
0
ファイル: get.php プロジェクト: VecHK/pache
 public function __construct()
 {
     $this->controller = new GetController();
     $this->service = GetService::getInstance();
 }
コード例 #5
0
 public function init()
 {
     $this->service = GetService::getInstance();
     $this->article = $this->service->getArticle();
 }