123 lines
3.6 KiB
PHP
123 lines
3.6 KiB
PHP
<?php
|
|
class Responder {
|
|
private $Response;
|
|
public function show_response(){
|
|
// get the response detailed by the url requested
|
|
$response = $this->get_response();
|
|
if ($response){
|
|
// send response
|
|
$this->send_response($response);
|
|
} else {
|
|
// Send error instead
|
|
$e = new Errors();
|
|
$e->throw_error("NotFound");
|
|
}
|
|
}
|
|
private function send_response($response){
|
|
switch ($response->content_type){
|
|
case "json":
|
|
header('Content-Type: application/json');
|
|
// Send json encoded response
|
|
echo json_encode($response, true);
|
|
break;
|
|
case "xml":
|
|
header('Content-Type: application/xml');
|
|
include ($response->content);
|
|
break;
|
|
}
|
|
|
|
|
|
}
|
|
private function get_response(){
|
|
$resp = false;
|
|
switch (Core::$CurrentPage){
|
|
case "get/test":
|
|
$resp = $this->dummy_response();
|
|
break;
|
|
case "get/all":
|
|
$resp = $this->all_urls();
|
|
break;
|
|
case "mail/config-v1.1.xml":
|
|
$resp = $this->moz_auto_config();
|
|
break;
|
|
case "autodiscover/autodiscover.xml":
|
|
case "Autodiscover/Autodiscover.xml":
|
|
$resp = $this->ms_autodiscover();
|
|
break;
|
|
case "/autodiscover/autodiscover.json": //?Email=psw%40wilde.cloud&Protocol=Autodiscoverv1&RedirectCount=1"
|
|
$resp = $this->ms_autodiscover_json();
|
|
break;
|
|
case "none":
|
|
case "test":
|
|
case "home":
|
|
case "root":
|
|
$resp = $this->get_test_working();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
return $resp;
|
|
}
|
|
private function all_urls(){
|
|
$response = new Response();
|
|
|
|
// TODO:: Will work out a better message later
|
|
$response->message = "All URLs Requested";
|
|
|
|
// Cycle through each service and add to payload
|
|
foreach (Core::$Config["Services"] as $key => $service){
|
|
$response->content[$key] = $service;
|
|
}
|
|
|
|
return $response;
|
|
}
|
|
private function moz_auto_config(){
|
|
$response = new Response();
|
|
$response->content_type = "xml";
|
|
$response->content = "public/autoconfig.php";
|
|
return $response;
|
|
}
|
|
private function ms_autodiscover(){
|
|
$response = new Response();
|
|
$response->content_type = "xml";
|
|
$response->content = "public/autodiscover.php";
|
|
return $response;
|
|
}
|
|
private function ms_autodiscover_json(){
|
|
$response = new Response();
|
|
$response->content_type = "xml";
|
|
$response->content = "public/autodiscover.php";
|
|
return $response;
|
|
}
|
|
private function dummy_response(){
|
|
// Generate a dummy response for testing
|
|
$response = new Response();
|
|
$response->message = "OK, here's some scrumptious data! Enjoy!";
|
|
$response->content = array("data" => array("some_data" => "Ohhhhhmmmm nom nom nom nom nom nom",
|
|
"extra_data" => array("garnish" => "buuuuuuuuuuurp")),
|
|
"more_data" => "yuuuuuum yum yum yum");
|
|
return $response;
|
|
}
|
|
private function get_test_working(){
|
|
// Generate a dummy response for testing
|
|
$response = new Response();
|
|
$response->message = "Success! Things are working! Please request a valid URL i.e. get/all";
|
|
return $response;
|
|
}
|
|
}
|
|
class Response {
|
|
public $url;
|
|
public $content_type = "json";
|
|
public $message;
|
|
public $content = array();
|
|
public function __construct(){
|
|
// add requested page to response. I don't know why, but it could helpful for diagnostics at some point
|
|
$this->url = Core::$CurrentPage;
|
|
if (!Core::$Config["CommitID"]){
|
|
$this->version = Core::VERSION;
|
|
} else {
|
|
$this->version = "git commit ".Core::$Config["CommitID"];
|
|
}
|
|
|
|
}
|
|
}
|