This commit is contained in:
Yoggzo 2016-02-29 14:20:13 +01:00
parent 6349739a6c
commit cfce59d6dc
47 changed files with 500 additions and 52 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View file

@ -26,6 +26,9 @@
<div class="col-lg-12"> <div class="col-lg-12">
<!-- Login Overlay --> <!-- Login Overlay -->
<div ng-include="'./partials/login.html'"></div> <div ng-include="'./partials/login.html'"></div>
<!-- Machine Details Overlay -->
<div ng-include="'./partials/home/machineDetails.html'"></div>
<!-- Nav --> <!-- Nav -->
<div ng-include="'./partials/nav.html'"></div> <div ng-include="'./partials/nav.html'"></div>
</div> </div>
@ -81,7 +84,9 @@
<script src="./js/controllers/login.js"></script> <script src="./js/controllers/login.js"></script>
<script src="./js/controllers/status.js"></script> <script src="./js/controllers/status.js"></script>
<script src="./js/controllers/home/main.js"></script> <script src="./js/controllers/home/main.js"></script>
<script src="./js/controllers/home/machineDetails.js"></script>
<script src="./js/controllers/network/main.js"></script> <script src="./js/controllers/network/main.js"></script>

View file

@ -0,0 +1,39 @@
/**
* The home controller
*
* @param {$scope} $scope The $scope service from angular
*/
mainApp.controller('machineDetailsCtrl', [ '$scope', 'Compute', '$rootScope', '$timeout', function ($scope, Compute, $rootScope, $timeout)
{
$scope.machine={};
$("#waitingForToggleMachine").hide();
$scope.$on('showMachineDetailsEvent', function(eventName ,machine){
$scope.machine=machine;
$('#machineDetailsModal').modal({backdrop: false, keyboard: true});
});
$scope.toggleMachineState=function(){
$("#waitingForToggleMachine").show();
// Fake timeout
$timeout(function(){
$("#waitingForToggleMachine").hide();
}, 3000);
$timeout(function(){
$scope.machine.online=!$scope.machine.online;
}, 3000);
};
$scope.applyModifications=function(){
//Todo
}
}]);

View file

@ -3,15 +3,22 @@
* *
* @param {$scope} $scope The $scope service from angular * @param {$scope} $scope The $scope service from angular
*/ */
mainApp.controller('homeCtrl', [ '$scope', 'Compute', function ($scope, Compute) mainApp.controller('homeCtrl', [ '$scope', 'Compute', '$rootScope', function ($scope, Compute, $rootScope)
{ {
var updatePage=function(){ var updatePage=function(){
// TODO Update graph etc... // TODO Update graph etc...
} }
// Retrieve all Data // Retrieve all Data
Compute.pullData(updatePage); Compute.pullData(updatePage);
Compute.getMachines(function(adzda){});
$scope.raiseShowMachineDetailsEvent=function(){
var machine={name: "Machine 1", online:true};
$rootScope.$broadcast("showMachineDetailsEvent", machine);
}
}]); }]);

View file

@ -13,14 +13,19 @@ mainApp.controller('loginCtrl', ['$scope','$sce','Identity', function ($scope,$s
if(!Identity.isAlreadyLogin()){ if(!Identity.isAlreadyLogin()){
$('#loginModal').modal({backdrop: 'static', keyboard: false}); $('#loginModal').modal({backdrop: 'static', keyboard: false});
} }
// Manager logout event
$scope.$on('logoutEvent', function(){ $scope.$on('logoutEvent', function(){
Identity.logout();
$('#loginModal').modal({backdrop: 'static', keyboard: false}); $('#loginModal').modal({backdrop: 'static', keyboard: false});
}); });
// Hide loading button and message alert
$('#loadingLoginButton').hide(); $('#loadingLoginButton').hide();
$('#failedToLoginAlert').hide(); $('#failedToLoginAlert').hide();
// Defined function for login
$scope.loginAction=function(){ $scope.loginAction=function(){
// Begin login state for template // Begin login state for template

View file

@ -10,13 +10,11 @@ mainApp.controller('statusCtrl', ['$scope','Identity', '$rootScope', function ($
{ {
// Give profile to model // Give profile to model
$scope.profile=Identity.profile; $scope.profile=Identity.getProfile();
// Function to logout // Function to logout
$scope.logout=function(){ $scope.raiseLogoutEvent=function(){
Identity.logout();
$rootScope.$broadcast('logoutEvent'); $rootScope.$broadcast('logoutEvent');
}; };
}]); }]);

View file

@ -2,11 +2,12 @@
mainApp.factory('Compute',[ '$http', 'Identity', function($http, Identity){ mainApp.factory('Compute',[ '$http', 'Identity', function($http, Identity){
// Create data
var data={}; var data={};
data.machines={}; data.machines={};
// Parser // Parser
var parseGetMachinesAnswer=function(response, failedToSendRequest){ var parseGetMachinesAnswer=function(response, failedToSendRequest){
@ -16,8 +17,24 @@ mainApp.factory('Compute',[ '$http', 'Identity', function($http, Identity){
// Get Machine // Get Machine
var getMachines=function(callback){ var getMachines=function(callback){
var params={
"token" : Identity.getToken(),
"task" : "compute",
"action":"getServer",
"serverId":"69d5bcc4-2fab-4634-b0d2-f455fee5b7bd"
};
var result=$http.post('../server/index.php', var result=$http.post('../server/index.php',
$.param({"token" : Identity.profile.token, "task" : "Compute"})); $.param(params));
// Wait and handle the response
result.then(function (response){
console.log(response.data.Servers);
callback(parseGetMachinesAnswer(response, false));
},function(response){
alert(response.status);
callback(parseGetMachinesAnswer(response, true));
});
}; };
@ -31,8 +48,8 @@ mainApp.factory('Compute',[ '$http', 'Identity', function($http, Identity){
// Return services objects // Return services objects
return { return {
getMachines: getMachines getMachines: getMachines,
pullData: pullData pullData: pullData,
data:data data:data
}; };

View file

@ -7,37 +7,47 @@ mainApp.factory('Identity',[ '$http', '$cookies', function($http, $cookies){
var profile={}; var profile={};
profile.username=null; profile.username=null;
profile.projectname=null; profile.projectname=null;
profile.token=null; var token=null;
/**
* Save profile in cookies
*/
var saveCookieForSession=function(){
$cookies.putObject('profile', 5);
};
/* /*
* @returns {boolean} Return true if a cookie is found (and load it in profile) false else * @returns {boolean} Return true if a cookie is found (and load it in profile) false else
*/ */
var isAlreadyLogin=function(){ var isAlreadyLogin=function(){
// Load cookies
var profileInCookie=$cookies.getObject('profile'); var profileInCookie=$cookies.getObject('profile');
console.log(profileInCookie); var tokenPart_0InCookie=$cookies.getObject('token.part_0');
var tokenPart_1InCookie=$cookies.getObject('token.part_1');
if(typeof profileInCookie !== 'undefined'){ // Check if cookie is defined
if(typeof profileInCookie !== 'undefined'
&& typeof tokenPart_0InCookie !== 'undefined'
&& typeof tokenPart_1InCookie !== 'undefined'
){
// If yes, put it into variables
angular.extend(profile, profileInCookie); angular.extend(profile, profileInCookie);
token=tokenPart_0InCookie+tokenPart_1InCookie;
// Return I'm Login
return true; return true;
} }
// Return I'm not Login
return false; return false;
} }
/* /*
* Destroy profile cookies * Destroy profile cookies
*/ */
var logout=function(){ var logout=function(){
$cookies.remove('profile'); $cookies.remove('profile');
$cookies.remove('token.part_0');
$cookies.remove('token.part_1');
} }
@ -49,15 +59,28 @@ mainApp.factory('Identity',[ '$http', '$cookies', function($http, $cookies){
*/ */
var parseLoginAnswer=function(response, failedToSendRequest){ var parseLoginAnswer=function(response, failedToSendRequest){
// Defined return object
var requestParserResult={}; var requestParserResult={};
requestParserResult.status=1; requestParserResult.status=1;
requestParserResult.failReason=null; requestParserResult.failReason=null;
if (typeof response.data.token !== 'undefined') { if (typeof response.data.token !== 'undefined') {
// Set status code
requestParserResult.status=0; requestParserResult.status=0;
profile.token=response.data.token;
saveCookieForSession(); // Find the middle of the token to split it
var middle=parseInt(response.data.token.length/2);
// Create expire date (cookie expire in 55 mins)
var expireDate=new Date();
expireDate.setMinutes(expireDate.getMinutes()+55);
// Save profile
$cookies.putObject('profile', profile, {'expires': expireDate});
// Save first part of token
$cookies.putObject('token.part_0', response.data.token.substring(0, middle), {'expires': expireDate});
// Save second part of token
$cookies.putObject('token.part_1', response.data.token.substring(middle, response.data.token.length), {'expires': expireDate});
} }
else if(failedToSendRequest){ else if(failedToSendRequest){
requestParserResult.failReason="Failed to send request"; requestParserResult.failReason="Failed to send request";
@ -69,7 +92,6 @@ mainApp.factory('Identity',[ '$http', '$cookies', function($http, $cookies){
return requestParserResult; return requestParserResult;
}; };
/** /**
* Function to connect to OpenStack * Function to connect to OpenStack
@ -87,24 +109,39 @@ mainApp.factory('Identity',[ '$http', '$cookies', function($http, $cookies){
profile.projectname=projectname; profile.projectname=projectname;
var result=$http.post('../server/index.php', var result=$http.post('../server/index.php',
$.param({"task" : "Authenticate", "user" : username, "password" : password, "project" : projectname})); $.param({"task" : "Authenticate", "user" : username, "password" : password, "project" : projectname}));
// Wait and handle the response // Wait and handle the response
result.then(function (response){ result.then(function (response){
callback(parseLoginAnswer(response), false); callback(parseLoginAnswer(response, false));
},function(response){ },function(response){
callback(parseLoginAnswer(response), true) callback(parseLoginAnswer(response, true));
}); });
}; };
/*
* Get the profile
*/
var getProfile=function(){
return profile;
}
/*
* Get the token
*/
var getToken=function(){
return token;
}
// Return services objects // Return services objects
return { return {
login: login, login: login,
profile: profile, getProfile: getProfile,
isAlreadyLogin: isAlreadyLogin, isAlreadyLogin: isAlreadyLogin,
logout:logout logout:logout,
getToken:getToken
}; };

View file

@ -0,0 +1,84 @@
<div class="modal" id="machineDetailsModal" ng-controller="machineDetailsCtrl" >
<div class="modal-dialog">
<div class="modal-content"></div>
</div>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<!--<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>-->
<h4 class="modal-title">Machine</h4>
</div>
<div class="modal-body">
<form class="form-horizontal" role="form">
<div class="form-group">
<label class="control-label col-sm-2" for="email">Name</label>
<div class="col-sm-10">
<p class="form-control-static">{{ machine.name }}</p>
</div>
</div>
<div class="form-group">
<label class="control-label col-sm-2" for="pwd">State</label>
<div class="col-sm-10">
<span ng-if="machine.online">Online</span>
<span ng-if="!machine.online">Offline</span>
&nbsp;
<button class="btn btn-danger" ng-if="machine.online" ng-click="toggleMachineState()">Turn Off</button>
<button class="btn btn-success" ng-if="!machine.online" ng-click="toggleMachineState()">Turn On</button>
&nbsp;<img src="images/spin/32x32/Preloader_1.gif" id="waitingForToggleMachine"></span>
</div>
</div>
<fieldset class="form-group">
<label class="control-label col-sm-2">RAM</label>
<select class="col-sm-20" id="ramSelected">
<option>128 MB</option>
<option>512 MB</option>
<option>1024 MB</option>
<option>2048 MB</option>
<option>4096 MB</option>
</select>
</fieldset>
<fieldset class="form-group">
<label class="control-label col-sm-2">Disk</label>
<select class="col-sm-20" id="ramSelected">
<option>1 Go</option>
<option>2 Go</option>
<option>5 Go</option>
<option>10 Go</option>
<option>25 Go</option>
<option>50 Go</option>
<option>100 Go</option>
<option>150 Go</option>
<option>200 Go</option>
</select>
</fieldset>
<fieldset class="form-group">
<label class="control-label col-sm-2">Image</label>
<select class="col-sm-20" id="ramSelected">
<option>Cirros</option>
<option>Debian</option>
<option>Tiny Core</option>
<option>Centos</option>
</select>
</fieldset>
</form>
</div>
<div class="modal-footer">
<a href="#" data-dismiss="modal" class="btn btn-primary">Apply</a>
<a href="#" data-dismiss="modal" class="btn btn-default">Cancel</a>
</div>
</div>
</div>
</div>

View file

@ -1,8 +1,11 @@
<div class="panel panel-default"> <div class="panel panel-default" ng-controller="homeCtrl">
<div class="panel-heading"> <div class="panel-heading">
Home Home
</div> </div>
<div class="panel-body"> <div class="panel-body">
Main Content Main Content
<button ng-click="raiseShowMachineDetailsEvent()" > Show Machine details</button>
<div id="test">
</div>
</div> </div>
</div> </div>

View file

@ -32,7 +32,7 @@
<li><a href="#">Informations</a></li> <li><a href="#">Informations</a></li>
<li><a href="#">Settings</a></li> <li><a href="#">Settings</a></li>
<li role="separator" class="divider"></li> <li role="separator" class="divider"></li>
<li><a href="#" ng-click="logout()">Logout</a></li> <li><a href="#" ng-click="raiseLogoutEvent()">Logout</a></li>
</ul> </ul>
</li> </li>
</ul> </ul>

View file

@ -12,6 +12,7 @@ class AppTest{
protected $openstack; protected $openstack;
protected $pluginsApi; protected $pluginsApi;
protected $postParams;
protected $tokenClass; protected $tokenClass;
protected $tokenPost; protected $tokenPost;
protected $output; protected $output;
@ -23,8 +24,13 @@ class AppTest{
$this->tokenClass = new genTokenOptions($args); $this->tokenClass = new genTokenOptions($args);
$this->openstack = new OpenStack\OpenStack([]); $this->openstack = new OpenStack\OpenStack([]);
$this->pluginsApi = plugin_api::getInstance(); $this->pluginsApi = plugin_api::getInstance();
$this->output = array();
$this->errorClass = new errorManagement($this); $this->errorClass = new errorManagement($this);
$this->output = array();
<<<<<<< HEAD
$this->errorClass = new errorManagement($this);
=======
$this->postParams = $_POST;
>>>>>>> develop
} }
@ -48,6 +54,16 @@ class AppTest{
$opt = $this->tokenClass->getOptions($service); $opt = $this->tokenClass->getOptions($service);
return $this->openstack->imagesV2($opt); return $this->openstack->imagesV2($opt);
break; break;
case "Compute":
if($this->tokenPost == NULL) $this->tokenClass->genComputeToken();
$opt = $this->tokenClass->getOptions($service);
return $this->openstack->computeV2($opt);
break;
case "Network":
if($this->tokenPost == NULL) $this->tokenClass->genNetworkToken();
$opt = $this->tokenClass->getOptions($service);
return $this->openstack->networkingV2($opt);
break;
} }
} }
@ -61,10 +77,21 @@ class AppTest{
$this->tokenClass->genNetworkToken(); $this->tokenClass->genNetworkToken();
$this->setOutput("token", $this->tokenClass->getBackup()); $this->setOutput("token", $this->tokenClass->getBackup());
}catch(Exception $e){ }catch(BadResponseError $e){
echo $e; $this->errorClass->BadResponseHandler($e);
exit(); }catch(UserInputError $e){
} $this->errorClass->UserInputHandler($e);
}catch(BaseError $e){
$this->errorClass->BaseErrorHandler($e);
}catch(NotImplementedError $e){
$this->errorClass->NotImplementedHandler($e);
}
}
public function getPostParam($name){
return $this->postParams[$name];
} }
@ -75,12 +102,16 @@ class AppTest{
} }
public function show(){ public function show(){
echo json_encode($this->output); return json_encode($this->output);
} }
<<<<<<< HEAD
public function getErrorInstance(){ public function getErrorInstance(){
return $this->errorClass; return $this->errorClass;
} }
} }
=======
}
>>>>>>> develop

View file

@ -0,0 +1,20 @@
re '../vendor/autoload.php';
include('/istic-openstack/server/init.php');
include_once("../core/Compute.php");
$compute = new compute($App);
$servers = $compute->listServers();
$servers= $compute->listServers(true);
foreach($servers as $server){
//print_r($server);
echo $server->name." ".$server->id."<br>";
//$opt = Array();
//$opt['name'] = "Test";
//$serverid = Array("id"=>"69d5bcc4-2fab-4634-b0d2-f455fee5b7bd");
//$serverid["id"] = "{69d5bcc4-2fab-4634-b0d2-f455fee5b7bd}";
//unset($server);
//$server = $compute->getServer($serverid);
//echo $server->name." ".$server->image;
//$server->update(array('name' => 'test'));

15
server/core/App.php Normal file → Executable file
View file

@ -33,7 +33,7 @@ class App{
public function setToken($token){ public function setToken($token){
$this->tokenPost = $token; $this->tokenPost = $token;
$this->tokenClass->loadBackup($his->tokenPost); $this->tokenClass->loadBackup($this->tokenPost);
} }
@ -50,6 +50,16 @@ class App{
$opt = $this->tokenClass->getOptions($service); $opt = $this->tokenClass->getOptions($service);
return $this->openstack->imagesV2($opt); return $this->openstack->imagesV2($opt);
break; break;
case "Network":
if($this->tokenPost == NULL) $this->tokenClass->genNetworkToken();
$opt = $this->tokenClass->getOptions($service);
return $this->openstack->networkingV2($opt);
break;
case "Compute":
if($this->tokenPost == NULL) $this->tokenClass->genComputeToken();
$opt = $this->tokenClass->getOptions($service);
return $this->openstack->computeV2($opt);
break;
} }
} }
@ -95,6 +105,7 @@ class App{
public function show(){ public function show(){
echo json_encode($this->output); echo json_encode($this->output);
//error_log(var_dump(json_encode($this->output), true), 0);
} }
} }

View file

@ -1 +1,176 @@
<?php
//namespace istic-openstack\Server\core;
// TODO introduce error-handling based on errors specific to the compute module
use OpenStack\Common\Error;
class compute
{
/** @var App $app protected, contains the main app object */
protected $app;
/** @var OpenStack\Identity $libClass protected, contains the library Compute object */
protected $libClass;
public function __construct($app)
{
$this->app = $app;
$this->libClass = $app->getLibClass("Compute");
}
/**
* Execute an action
*
* @param String $action name of another function of this class
*
* @return void
*/
public function action($action){
$this->{$action.""}();
}
/**
* List servers.
* @return array
*/
public function listServers()
{
$servers = $this->libClass->listServers();
$this->app->setOutput("Servers", $servers);
return;
}
/**
* List flavors.
* @return array
*/
public function listFlavors()
{
$flavors = $this->libClass->listFlavors();
$this->app->setOutput("Flavors", $flavors);
return;
}
/**
* List images.
* @return array
*/
public function listImages()
{
$images = $this->libClass->listImages();
$this->app->setOutput("Images", $images);
return;
}
/**
* Create server.
* @return array
*
public function createServer()
{
$server = $this->libClass->createServer();
}
*/
/**
* Get server details.
* @return array
*/
public function getServer()
{
$serverId = $this->app->getPostParam("serverId");
$opt = array('id' => $serverId);
$server = $this->libClass->getServer($opt);
$server->retrieve();
$this->app->setOutput("MyServer", $server);
return;
}
/**
* Get flavor details.
* @return array
*/
public function getFlavor()
{
$flavorId = $this->app->getPostParam("flavorId");
$opt = array('id' => $flavorId);
$flavor = $this->libClass->getFlavor($opt);
$flavor->retrieve();
$this->app->setOutput("MyFlavor", $flavor);
return;
}
/**
* Get image details.
* @return array
*/
public function getImage()
{
$imageId = $this->app->getPostParam("imageId");
$opt = array('id' => $imageId);
$image = $this->libClass->getImage($opt);
$image->retrieve();
$this->app->setOutput("MyImage", $image);
return;
}
/* working on tests
public function update()
{
$image = $this->app->getServer(array $options = []);
}
public function delete()
{
//TODO
}
public function changePassword($newPassword)
{
//TODO
}
public function reboot($type = Enum::REBOOT_SOFT)
{
//TODO
}
public function rebuild(array $options)
{
//TODO
}
public function resize($flavorId)
{
//TODO
}
public function confirmResize()
{
//TODO
}
public function revertResize()
{
//TODO
}
public function createImage(array $options)
{
//TODO
}
public function listAddresses(array $options = [])
{
//TODO
}
public function getMetadata()
{
//TODO
}
public function resetMetadata(array $metadata)
{
//TODO
}
public function mergeMetadata(array $metadata)
{
//TODO
}
public function getMetadataItem($key)
{
//TODO
}
public function deleteMetadataItem($key)
{
//TODO
}
*/
}

10
server/core/LibOverride/genTokenOptions.php Normal file → Executable file
View file

@ -260,13 +260,14 @@ class genTokenOptions
public function loadBackup($back){ public function loadBackup($back){
$backup = unserialize($back); $backup = unserialize($back);
$this->backup["roles"] = $backup["roles"]; $this->backup["roles"] = $backup["roles"];
$this->backup["project"] = $backup["project"]; $this->backup["project"] = $backup["project"];
$this->backup["user"] = $backup["user"]; $this->backup["user"] = $backup["user"];
loadComputeBackup($backup["Compute"]); $this->loadComputeBackup($backup["Compute"]);
loadIdentityBackup($backup["Identity"]); $this->loadIdentityBackup($backup["Identity"]);
loadImageBackup($backup["Image"]); $this->loadImageBackup($backup["Image"]);
loadNetworkBackup($backup["Network"]); $this->loadNetworkBackup($backup["Network"]);
} }
@ -324,6 +325,7 @@ class genTokenOptions
private function unserializeToken($tokenSerialized){ private function unserializeToken($tokenSerialized){
$Saved = file_get_contents("core/LibOverride/projectTokenData/".$this->backup["project"]); $Saved = file_get_contents("core/LibOverride/projectTokenData/".$this->backup["project"]);
$Saved = unserialize($Saved);
$api = new Api(); $api = new Api();
$token = new Models\Token($this->httpClient, $api); $token = new Models\Token($this->httpClient, $api);
$token->methods = unserialize($tokenSerialized["methods"]); $token->methods = unserialize($tokenSerialized["methods"]);

View file

@ -27,12 +27,26 @@
$identityObject->action($action); $identityObject->action($action);
$App->show(); $App->show();
break; break;
case "network":
include_once("core/Network.php");
$networkObject = new network($App);
$networkObject->action($action);
$App->show();
break;
case "image": case "image":
include_once("core/Image.php"); include_once("core/Image.php");
$imageObject = new image($App); $imageObject = new image($App);
$imageObject->action($action); $imageObject->action($action);
$App->show(); $App->show();
break; break;
case "compute":
include_once("core/Compute.php");
$computeObject = new compute($App);
$computeObject->action($action);
$App->show();
break;
} }

@ -1 +1 @@
Subproject commit 1419eb2e01164bb6b8b837df37724423907352d7 Subproject commit 15aca73f423166c7ef8337ba08615c103c66e931