istic-openstack/server/init.php

59 lines
961 B
PHP
Raw Normal View History

<?php
2016-04-26 20:42:31 +02:00
/**
2016-04-27 14:22:59 +02:00
* File containing the initialisation of the API.
*
* @version 1.0 Initialisation of this file
* @since 1.0 Core application's file
*
* @author Eole 'eoledev at outlook . fr'
*
*/
2016-04-27 14:22:59 +02:00
/*
* Include Main Api Class
*/
2016-04-26 20:42:31 +02:00
include_once("core/App.php");
$user = "";
$password = "";
$project = "";
//token processing
if(isset($_POST["token"])){
2016-04-26 20:42:31 +02:00
$token = $_POST["token"];
2016-04-26 20:42:31 +02:00
}else if(isset($_POST["user"]) && isset($_POST["password"]) && isset($_POST["project"]) ){
2016-01-31 02:38:05 +01:00
2016-04-26 20:42:31 +02:00
$user = $_POST["user"];
$password = $_POST["password"];
$project = $_POST["project"];
}
//Library args
$Args = Array(
"user" => Array(
"name" => $user,
"password" => $password,
"domain" => Array(
"name" => "Default")
),
"scope" => Array(
"project" => Array(
"name" => $project,
"domain" => Array(
"name" => "Default")
)
),
"authUrl" => $config["urlAuth"]
);
//Init core Api
$App = new App($Args);
2016-01-31 04:00:20 +01:00
2016-04-26 20:42:31 +02:00
if(isset($token))
$App->setToken($token);
?>