94 lines
2.8 KiB
PHP
94 lines
2.8 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 CloudFactory
|
|
*/
|
|
abstract class CloudFactory
|
|
extends OpenStackImplementationFactory
|
|
implements ICloudFactory {
|
|
|
|
/**
|
|
* @param int $coverage_percent
|
|
* @param IReleaseSupportedApiVersion $release_supported_api_version
|
|
* @param IOpenStackImplementation $implementation
|
|
* @return IOpenStackImplementationApiCoverage|CloudServiceOffered
|
|
*/
|
|
public function buildCapability($coverage_percent, IReleaseSupportedApiVersion $release_supported_api_version, IOpenStackImplementation $implementation)
|
|
{
|
|
$service = new CloudServiceOffered;
|
|
$service->setCoveragePercent($coverage_percent);
|
|
$service->setReleaseSupportedApiVersion($release_supported_api_version);
|
|
$service->setImplementation($implementation);
|
|
return $service;
|
|
}
|
|
|
|
/**
|
|
* @param $id
|
|
* @return IPricingSchemaType
|
|
*/
|
|
public function buildPricingSchemaById($id){
|
|
$pricing_schema = new PricingSchemaType;
|
|
$pricing_schema->ID = $id;
|
|
return $pricing_schema;
|
|
}
|
|
|
|
/**
|
|
* @param string $city
|
|
* @param string $state
|
|
* @param string $country
|
|
* @param float $lat
|
|
* @param float $lng
|
|
* @param IDataCenterRegion $region
|
|
* @return IDataCenterLocation
|
|
*/
|
|
public function buildDataCenterLocation($city,$state,$country,$lat,$lng,IDataCenterRegion $region) {
|
|
$location = new DataCenterLocation;
|
|
$location->setCity($city);
|
|
$location->setState($state);
|
|
$location->setCountry($country);
|
|
$location->setLat($lat);
|
|
$location->setLng($lng);
|
|
$region->addLocation($location);
|
|
$location->setDataCenterRegion($region);
|
|
return $location;
|
|
}
|
|
|
|
/**
|
|
* @param $name
|
|
* @param IDataCenterLocation $location
|
|
* @return IAvailabilityZone
|
|
*/
|
|
public function buildAZ($name,IDataCenterLocation $location){
|
|
$az = new AvailabilityZone;
|
|
$az->setName($name);
|
|
$az->setLocation($location);
|
|
$location->addAvailabilityZone($az);
|
|
return $az;
|
|
}
|
|
|
|
/**
|
|
* @param string $name
|
|
* @param string $color
|
|
* @param string $endpoint
|
|
* @return IDataCenterRegion
|
|
*/
|
|
public function buildDataCenterRegion($name, $color, $endpoint)
|
|
{
|
|
$region = new DataCenterRegion;
|
|
$region->setName($name);
|
|
$region->setColor($color);
|
|
$region->setEndpoint($endpoint);
|
|
return $region;
|
|
}
|
|
}
|