
Conflicts: marketplace/code/infrastructure/repositories/SapphireRegionalSupportedCompanyServiceRepository.php marketplace/code/interfaces/restfull_api/marketplace/ConsultantsCrudApi.php marketplace/code/ui/admin/MarketPlaceAdminPage.php
247 lines
9.3 KiB
PHP
247 lines
9.3 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2014 Openstack Foundation
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
/**
|
|
* Class PublicCloudCrudApi
|
|
*/
|
|
class PublicCloudCrudApi extends CompanyServiceCrudApi {
|
|
|
|
private $marketplace_type_repository;
|
|
private $public_cloud_repository;
|
|
private $public_cloud_draft_repository;
|
|
|
|
public function __construct(){
|
|
|
|
$this->public_cloud_repository = new SapphirePublicCloudRepository;
|
|
$this->public_cloud_draft_repository = new SapphirePublicCloudRepository(true);
|
|
$this->marketplace_type_repository = new SapphireMarketPlaceTypeRepository;
|
|
|
|
//google geo coding settings
|
|
$google_geo_coding_api_key = null;
|
|
$google_geo_coding_client_id = null;
|
|
$google_geo_coding_private_key = null;
|
|
if(defined('GOOGLE_GEO_CODING_API_KEY')){
|
|
$google_geo_coding_api_key = GOOGLE_GEO_CODING_API_KEY;
|
|
}
|
|
else if (defined('GOOGLE_GEO_CODING_CLIENT_ID') && defined('GOOGLE_GEO_CODING_PRIVATE_KEY')){
|
|
$google_geo_coding_client_id = GOOGLE_GEO_CODING_CLIENT_ID;
|
|
$google_geo_coding_private_key = GOOGLE_GEO_CODING_PRIVATE_KEY;
|
|
}
|
|
|
|
$manager = new PublicCloudManager (
|
|
$this->public_cloud_repository,
|
|
new SapphireMarketPlaceVideoTypeRepository,
|
|
$this->marketplace_type_repository,
|
|
new SapphireGuestOSTypeRepository,
|
|
new SapphireHyperVisorTypeRepository,
|
|
new SapphireOpenStackApiVersionRepository,
|
|
new SapphireOpenStackComponentRepository,
|
|
new SapphireOpenStackReleaseRepository,
|
|
new SapphireRegionRepository,
|
|
new SapphireSupportChannelTypeRepository,
|
|
new SapphireOpenStackReleaseSupportedApiVersionRepository,
|
|
new PublicCloudAddPolicy($this->public_cloud_repository, $this->marketplace_type_repository),
|
|
new CompanyServiceCanAddResourcePolicy,
|
|
new CompanyServiceCanAddVideoPolicy,
|
|
new PublicCloudFactory,
|
|
new MarketplaceFactory,
|
|
new ValidatorFactory,
|
|
new OpenStackApiFactory,
|
|
new GoogleGeoCodingService(
|
|
new SapphireGeoCodingQueryRepository,
|
|
new UtilFactory,
|
|
SapphireTransactionManager::getInstance(),
|
|
$google_geo_coding_api_key,
|
|
$google_geo_coding_client_id,
|
|
$google_geo_coding_private_key),
|
|
null,
|
|
new SessionCacheService,
|
|
SapphireTransactionManager::getInstance()
|
|
);
|
|
|
|
$draft_manager = new PublicCloudManager (
|
|
$this->public_cloud_draft_repository,
|
|
new SapphireMarketPlaceVideoTypeRepository,
|
|
$this->marketplace_type_repository,
|
|
new SapphireGuestOSTypeRepository,
|
|
new SapphireHyperVisorTypeRepository,
|
|
new SapphireOpenStackApiVersionRepository,
|
|
new SapphireOpenStackComponentRepository,
|
|
new SapphireOpenStackReleaseRepository,
|
|
new SapphireRegionRepository,
|
|
new SapphireSupportChannelTypeRepository,
|
|
new SapphireOpenStackReleaseSupportedApiVersionRepository,
|
|
new PublicCloudAddPolicy($this->public_cloud_draft_repository, $this->marketplace_type_repository),
|
|
new CompanyServiceCanAddResourcePolicy,
|
|
new CompanyServiceCanAddVideoPolicy,
|
|
new PublicCloudDraftFactory,
|
|
new MarketplaceDraftFactory,
|
|
new ValidatorFactory,
|
|
new OpenStackApiFactory,
|
|
new GoogleGeoCodingService(
|
|
new SapphireGeoCodingQueryRepository,
|
|
new UtilFactory,
|
|
SapphireTransactionManager::getInstance(),
|
|
$google_geo_coding_api_key,
|
|
$google_geo_coding_client_id,
|
|
$google_geo_coding_private_key),
|
|
null,
|
|
new SessionCacheService,
|
|
SapphireTransactionManager::getInstance()
|
|
);
|
|
|
|
parent::__construct($manager,$draft_manager,new PublicCloudFactory,new PublicCloudDraftFactory);
|
|
|
|
// filters ...
|
|
$this_var = $this;
|
|
$current_user = $this->current_user;
|
|
$repository = $this->public_cloud_repository;
|
|
$draft_repository = $this->public_cloud_draft_repository;
|
|
|
|
$this->addBeforeFilter('addCompanyService','check_add_company',function ($request) use($this_var, $current_user){
|
|
$data = $this_var->getJsonRequest();
|
|
if (!$data) return $this->serverError();
|
|
$company_id = intval(@$data['company_id']);
|
|
if(!$current_user->isMarketPlaceAdminOfCompany(IPublicCloudService::MarketPlaceGroupSlug, $company_id))
|
|
return $this_var->permissionFailure();
|
|
});
|
|
|
|
$this->addBeforeFilter('updateCompanyService','check_update_company',function ($request) use($this_var, $current_user){
|
|
$data = $this_var->getJsonRequest();
|
|
if (!$data) return $this_var->serverError();
|
|
if(!$current_user->isMarketPlaceAdminOfCompany(IPublicCloudService::MarketPlaceGroupSlug,intval(@$data['company_id'])))
|
|
return $this_var->permissionFailure();
|
|
});
|
|
|
|
$this->addBeforeFilter('deleteCompanyService','check_delete_company',function ($request) use($this_var, $current_user,$repository,$draft_repository){
|
|
$company_service_id = intval($request->param('COMPANY_SERVICE_ID'));
|
|
$is_draft = intval($this->request->param('IS_DRAFT'));
|
|
$company_service = ($is_draft) ? $draft_repository->getById($company_service_id) : $repository->getById($company_service_id);
|
|
|
|
if(!$current_user->isMarketPlaceAdminOfCompany(IPublicCloudService::MarketPlaceGroupSlug, $company_service->getCompany()->getIdentifier()))
|
|
return $this_var->permissionFailure();
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
static $url_handlers = array(
|
|
'GET $COMPANY_SERVICE_ID!' => 'getPublicCloud',
|
|
'DELETE $COMPANY_SERVICE_ID!/$IS_DRAFT!' => 'deleteCompanyService',
|
|
'POST ' => 'addCompanyService',
|
|
'PUT ' => 'updateCompanyService',
|
|
'PUT $COMPANY_SERVICE_ID!' => 'publishCompanyService',
|
|
);
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
static $allowed_actions = array(
|
|
'getPublicCloud',
|
|
'deleteCompanyService',
|
|
'addCompanyService',
|
|
'updateCompanyService',
|
|
'publishCompanyService'
|
|
);
|
|
|
|
public function getPublicCloud(){
|
|
$company_service_id = intval($this->request->param('COMPANY_SERVICE_ID'));
|
|
$public_cloud = $this->public_cloud_repository->getById($company_service_id);
|
|
if(!$public_cloud)
|
|
return $this->notFound();
|
|
return $this->ok(CloudAssembler::convertCloudToArray($public_cloud));
|
|
}
|
|
|
|
public function getPublicCloudDraft(){
|
|
$company_service_id = intval($this->request->param('COMPANY_SERVICE_ID'));
|
|
$public_cloud = $this->public_cloud_draft_repository->getByLiveServiceId($company_service_id);
|
|
if(!$public_cloud)
|
|
return $this->notFound();
|
|
return $this->ok(OpenStackImplementationAssembler::convertOpenStackImplementationToArray($public_cloud));
|
|
}
|
|
|
|
public function addCompanyService(){
|
|
try {
|
|
return parent::addCompanyServiceDraft();
|
|
}
|
|
catch (NonSupportedApiVersion $ex1) {
|
|
SS_Log::log($ex1,SS_Log::ERR);
|
|
return $this->validationError($ex1->getMessage());
|
|
}
|
|
catch (NonSupportedComponent $ex2) {
|
|
SS_Log::log($ex2,SS_Log::ERR);
|
|
return $this->validationError($ex2->getMessage());
|
|
}
|
|
catch (Exception $ex) {
|
|
SS_Log::log($ex,SS_Log::ERR);
|
|
return $this->serverError();
|
|
}
|
|
}
|
|
|
|
public function updateCompanyService(){
|
|
try {
|
|
return parent::updateCompanyServiceDraft();
|
|
}
|
|
catch (NonSupportedApiVersion $ex1) {
|
|
SS_Log::log($ex1,SS_Log::ERR);
|
|
return $this->validationError($ex1->getMessage());
|
|
}
|
|
catch (NonSupportedComponent $ex2) {
|
|
SS_Log::log($ex2,SS_Log::ERR);
|
|
return $this->validationError($ex2->getMessage());
|
|
}
|
|
catch (Exception $ex) {
|
|
SS_Log::log($ex,SS_Log::ERR);
|
|
return $this->serverError();
|
|
}
|
|
}
|
|
|
|
public function publishCompanyService(){
|
|
try {
|
|
return parent::publishCompanyService();
|
|
}
|
|
catch (Exception $ex) {
|
|
SS_Log::log($ex,SS_Log::ERR);
|
|
return $this->serverError();
|
|
}
|
|
}
|
|
|
|
public function deleteCompanyService(){
|
|
try {
|
|
$company_service_id = intval($this->request->param('COMPANY_SERVICE_ID'));
|
|
$is_draft = intval($this->request->param('IS_DRAFT'));
|
|
|
|
if ($is_draft) {
|
|
$this->draft_manager->unRegister($this->draft_factory->buildCompanyServiceById($company_service_id));
|
|
} else {
|
|
$this->manager->unRegister($this->factory->buildCompanyServiceById($company_service_id));
|
|
$company_service_draft = $this->public_cloud_draft_repository->getByLiveServiceId($company_service_id);
|
|
if ($company_service_draft) {
|
|
$this->draft_manager->unRegister($company_service_draft);
|
|
}
|
|
}
|
|
|
|
return $this->deleted();
|
|
}
|
|
catch (NotFoundEntityException $ex1) {
|
|
SS_Log::log($ex1,SS_Log::ERR);
|
|
return $this->notFound($ex1->getMessage());
|
|
}
|
|
catch (Exception $ex) {
|
|
SS_Log::log($ex,SS_Log::ERR);
|
|
return $this->serverError();
|
|
}
|
|
}
|
|
}
|