summaryrefslogtreecommitdiff
path: root/server/core/App.php
blob: 09da3946ccc0a1e1b1d68b581ec3f235051abfc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
include_once("/istic-openstack/server/core/Plugin_Api.php");
include_once("/istic-openstack/server/core/LibOverride/genTokenOptions.php");

class App{
	
	protected $openstack;
	protected $pluginsApi;
	protected $tokenClass;
	protected $tokenPost;
	protected $output;

	public function __construct($args){

		$this->tokenPost = NULL;
		$this->tokenClass = new genTokenOptions($args);
		$this->openstack = new OpenStack\OpenStack([]);
		$this->pluginsApi = plugin_api::getInstance();
		$this->output = array();

	}
	
	public function setToken($token){
		
		$this->tokenPost = $token;
		$this->tokenClass->loadBackup($his->tokenPost);
		
	}
	
	public function getLibClass($service){
		
		switch($service){
			case "Identity":
				if($tokenPost == NULL) $tokenClass->genIdentityToken();
				$opt = $tokenClass->getOptions($service);
				return $this->openstack->identityV3($opt);
				break;
			case "Image":
				if($tokenPost == NULL) $tokenClass->genImageToken();
				$opt = $tokenClass->getOptions($service);
				return $this->$openstack->imagesV2($opt);
				break;
		}
		
	}
	
	public function authenticate(){
		
		try{
			$this->tokenClass->genIdentityToken();
			$this->tokenClass->genComputeToken();
			$this->tokenClass->genImageToken();
			$this->tokenClass->genNetworkToken();
			
			$this->setOutput("token", $this->tokenClass->getBackup());
		}catch(Exception $e){
			echo $e;
			exit();
		}
		
	}
	
	public function setOutput($key, $out){
		
		$this->output[$key] = $out;
		
	}
	
	public function show(){
		echo json_encode($this->output);
	}
	
}