Finishing upload !!!

This commit is contained in:
Yoggzo 2016-05-08 18:17:04 +02:00
parent f0e77d6b65
commit 80ce348e43
2 changed files with 630 additions and 599 deletions

View file

@ -38,7 +38,6 @@
<input type="hidden" name="task" value="image" />
<input type="hidden" name="token" value="{{ getToken()}}" />
<input type="hidden" name="action" value="uploadImage" />
<input type="hidden" name="diskFormat" value="QCOW2" />
<input type="hidden" name="id" value="{{ image.id}}" />
<input type="hidden" name="file_name" value="cirros-0.3.4-x86_64-disk.img" />

View file

@ -1,14 +1,14 @@
<?php
/**
* File containing the Image Class.
*
* @version 1.0 Initialisation of this file
* @since 1.0 Core application's file
*
* @author Evan Pisani 'yogg at epsina . com'
*
*/
* File containing the Image Class.
*
* @version 1.0 Initialisation of this file
* @since 1.0 Core application's file
*
* @author Evan Pisani 'yogg at epsina . com'
*
*/
use OpenCloud\Common\Error\BadResponseError;
use OpenCloud\Common\Error\BaseError;
use OpenCloud\Common\Error\NotImplementedError;
@ -17,12 +17,12 @@ use OpenCloud\Common\Error\UserInputError;
require_once("CoreInterface.php");
/**
* Image Class of the back-end application
*
* Management of images
*
*/
class image implements Core {
* Image Class of the back-end application
*
* Management of images
*
*/
class image implements Core{
/** @var App $app protected, contains the main app object */
protected $app;
@ -37,14 +37,15 @@ class image implements Core {
*
* @return image Object
*/
public function __construct($app) {
if (!isset($app)) {
public function __construct($app){
if(!isset($app)){
$this->app->setOutput("Error", "Incorrect parameter app");
}
$this->app = $app;
$this->libClass = $app->getLibClass("Image");
}
/**
* Execute an action
*
@ -52,8 +53,8 @@ class image implements Core {
*
* @return void
*/
public function action($action) {
$this->{$action . ""}();
public function action($action){
$this->{$action.""}();
}
/**
@ -63,76 +64,82 @@ class image implements Core {
*
* @return void
*/
private function createImage() {
private function createImage(){
$opt = $this->app->getPostParam("opt");
if (!isset($opt)) {
if(!isset($opt)){
$this->app->setOutput("Error", "Incorrect parameter opt");
}
try {
try{
$options = Array();
// Check the image name
if (isset($opt['name'])) {
if(isset($opt['name'])){
$imagesList = $this->listImage();
if (isset($imagesList)) {
foreach ($imagesList as $image) {
if (strcmp($image->name, $opt['name']) == 0) { // if the image name already exists -> error
if(isset($imagesList)){
foreach($imagesList as $image){
if(strcmp($image->name, $opt['name']) == 0){ // if the image name already exists -> error
$this->app->setOutput("Error", "Image name already exists");
}
}
}
$options['name'] = $opt['name'];
} else {
}
else{
$this->app->setOutput("Error", "Missing parameter 'name' for the new image");
}
// Check optionals arguments
if (isset($opt['id'])) { // UUID : nnnnnnnn-nnnn-nnnn-nnnn-nnnnnnnnnnnn
if ($this->libClass->getImage($opt['id']) != null) { // if the id already exists -> error
if(isset($opt['id'])){ // UUID : nnnnnnnn-nnnn-nnnn-nnnn-nnnnnnnnnnnn
if($this->libClass->getImage($opt['id']) != null){ // if the id already exists -> error
$this->app->setOutput("Error", "Image id already exists");
}
$options['id'] = $opt['id'];
}
if (isset($opt['visibility'])) { // public, private
if(isset($opt['visibility'])){ // public, private
$options['visibility'] = $opt['visibility'];
}
if (isset($opt['tags'])) { // list
if(isset($opt['tags'])){ // list
$options['tags'] = $opt['tags'];
}
if (isset($opt['containerFormat'])) { // string : ami, ari, aki, bare, ovf, ova, docker
if(isset($opt['containerFormat'])){ // string : ami, ari, aki, bare, ovf, ova, docker
$options['containerFormat'] = $opt['containerFormat'];
}else{
$options['containerFormat'] = "bare";
}
if (isset($opt['diskFormat'])) { // string : ami, ari, aki, vhd, vmdk, raw, qcow2, vdi, iso
if(isset($opt['diskFormat'])){ // string : ami, ari, aki, vhd, vmdk, raw, qcow2, vdi, iso
$options['diskFormat'] = $opt['diskFormat'];
}else{
$options['diskFormat'] = "iso";
}
if (isset($opt['minDisk'])) { //int
if(isset($opt['minDisk'])){ //int
$options['minDisk'] = $opt['minDisk'];
}
if (isset($opt['minRam'])) { // int
if(isset($opt['minRam'])){ // int
$options['minRam'] = $opt['minRam'];
}
if (isset($opt['protected'])) { // boolean
if(isset($opt['protected'])){ // boolean
$options['protected'] = $opt['protected'];
}
if (isset($opt['properties'])) { // type dict
if(isset($opt['properties'])){ // type dict
$options['properties'] = $opt['properties'];
}
$image = $this->libClass->createImage($options);
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
$this->app->setOutput("Images", $image);
}
/**
@ -140,26 +147,27 @@ class image implements Core {
*
* @return void
*/
private function listImage() {
try {
private function listImage(){
try{
$result = array();
$l = $this->libClass->listImages();
foreach ($l as $tmp) {
foreach($l as $tmp){
$result[] = $tmp;
}
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
$this->app->setOutput("Images", $result);
}
/**
@ -169,29 +177,31 @@ class image implements Core {
*
* @return void
*/
private function detailsImage() {
private function detailsImage(){
$id = $this->app->getPostParam("id");
if (!isset($id)) {
if(!isset($id)){
$this->app->setOutput("Error", "Incorrect id parameter");
} else {
try {
}
else{
try{
$service = $this->libClass;
$image = $service->getImage($id);
if ($image == null) { // if the image don't exists -> error
if($image == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
} else {
}
else{
$this->app->setOutput("Images", $image);
}
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
}
@ -205,53 +215,56 @@ class image implements Core {
*
* @return void
*/
private function updateImage() {
private function updateImage(){
$id = $this->app->getPostParam("id");
$opt = $this->app->getPostParam("opt");
if (!isset($id)) {
if(!isset($id)){
$this->app->setOutput("Error", "Incorrect id parameter");
} else if (!isset($opt)) {
}
else if(!isset($opt)){
$this->app->setOutput("Error", "Incorrect opt parameter");
} else {
try {
}
else{
try{
$service = $this->libClass;
$image = $service->getImage($id);
if ($image == null) { // if the image don't exists -> error
if($image == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
}
$options = Array();
// Voir vérification des types
if (isset($opt['name'])) { //string
if(isset($opt['name'])){ //string
$options['name'] = $opt['name'];
}
if (isset($opt['minDisk'])) { //int
if(isset($opt['minDisk'])){ //int
$options['minDisk'] = $opt['minDisk'];
}
if (isset($opt['minRam'])) { // int
if(isset($opt['minRam'])){ // int
$options['minRam'] = $opt['minRam'];
}
if (isset($opt['protected'])) { // boolean
$options['protected'] = $opt['protected'] == "true" ? true : false;
if(isset($opt['protected'])){ // boolean
$options['protected'] = $opt['protected'];
}
if (isset($opt['visibility'])) { // public, private
if(isset($opt['visibility'])){ // public, private
$options['visibility'] = $opt['visibility'];
}
if (isset($opt['tags'])) { // list
if(isset($opt['tags'])){ // list
$options['tags'] = $opt['tags'];
}
$image->update($options);
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
$this->app->setOutput("Images", $image);
@ -265,27 +278,28 @@ class image implements Core {
*
* @return void
*/
private function deleteImage() {
private function deleteImage(){
$id = $this->app->getPostParam("id");
if (!isset($id)) {
if(!isset($id)){
$this->app->setOutput("Error", "Image doesn't exist");
} else {
try {
}
else{
try{
$service = $this->libClass;
$image = $this->libClass->getImage($id);
if ($image == null) { // if the image doesn't exists -> error
if($image == null){ // if the image doesn't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
}
$image->delete();
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
}
@ -298,29 +312,31 @@ class image implements Core {
*
* @return void
*/
private function reactivateImage() {
private function reactivateImage(){
$id = $this->app->getPostParam("id");
if (!isset($id)) {
if(!isset($id)){
$this->app->setOutput("Error", "Incorrect parameter");
} else {
try {
}
else
{
try{
$service = $this->libClass;
$image = $service->getImage($id);
if ($image == null) { // if the image don't exists -> error
if($image == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
}
$image->reactivate();
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
}
@ -333,28 +349,30 @@ class image implements Core {
*
* @return void
*/
private function desactivateImage() {
private function desactivateImage(){
$id = $this->app->getPostParam("id");
if (!isset($id)) {
if(!isset($id)){
$this->app->setOutput("Error", "Incorrect parameter");
} else {
try {
}
else
{
try{
$service = $this->libClass;
$image = $service->getImage($id);
if ($image == null) { // if the image don't exists -> error
if($image == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
}
$image->deactivate();
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
}
@ -368,34 +386,37 @@ class image implements Core {
*
* @return void
*/
private function uploadImage() {
private function uploadImage(){
$id = $this->app->getPostParam("id");
$file_name = $this->app->getPostParam("file_name");
$file = $this->app->getPostParam("file");
error_log(print_r($file, true), 0);
if (!isset($id)) {
if(!isset($id)){
$this->app->setOutput("Error", "Incorrect id parameter");
} else if (!isset($file_name)) {
}
else if(!isset($file_name)){
$this->app->setOutput("Error", "Incorrect file name parameter");
} else {
try {
}
else{
try{
$service = $this->libClass;
$image = $service->getImage($id);
if ($image == null) { // if the image don't exists -> error
if($image == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
}
$stream = \GuzzleHttp\Psr7\stream_for($file);
$image->uploadData($stream);
} catch (BadResponseError $e) {
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(BadResponseError $e){
echo $e;
//$this->app->getErrorInstance()->BadResponseHandler($e);
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
}
@ -408,28 +429,29 @@ class image implements Core {
*
* @return void
*/
private function downloadImage() {
private function downloadImage(){
$id = $this->app->getPostParam("id");
if (!isset($id)) {
if(!isset($id)){
$this->app->setOutput("Error", "Incorrect id parameter");
} else {
try {
}
else{
try{
$service = $this->libClass;
$image = $service->getImage($id);
if ($image == null) { // if the image don't exists -> error
if($image == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
}
$stream = $image->downloadData();
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
$this->app->setOutput("Images", $stream);
@ -444,38 +466,41 @@ class image implements Core {
*
* @return void
*/
private function addMemberImage() {
private function addMemberImage(){
$image_id = $this->app->getPostParam("image_id");
$member_id = $this->app->getPostParam("member_id");
if (!isset($image_id)) {
if(!isset($image_id)){
$this->app->setOutput("Error", "Incorrect image id parameter");
} else if (!isset($member_id)) {
}
else if(!isset($member_id)){
$this->app->setOutput("Error", "Incorrect member id parameter");
} else {
try {
}
else{
try{
$service = $this->libClass;
$image = $service->getImage($id);
if ($image == null) { // if the image don't exists -> error
if($image == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
}
$member_id = $image->addMember($member_id);
$this->app->setOutput("Images", $member_id);
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
}
}
/**
* List members of an image
*
@ -483,34 +508,36 @@ class image implements Core {
*
* @return void
*/
private function listMemberImage() {
private function listMemberImage(){
$image_id = $this->app->getPostParam("image_id");
$member_id = $this->app->getPostParam("member_id");
if (!isset($image_id)) {
if(!isset($image_id)){
$this->app->setOutput("Error", "Incorrect image id parameter");
} else if (!isset($member_id)) {
}
else if(!isset($member_id)){
$this->app->setOutput("Error", "Incorrect member id parameter");
} else {
try {
}
else{
try{
$service = $this->libClass;
$image = $service->getImage($image_id);
if ($image == null) { // if the image don't exists -> error
if($image == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
}
$members = $image->listMembers();
if ($members == null) { // if the image don't exists -> error
if($members == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "No member");
}
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
$this->app->setOutput("Images", $members);
@ -525,36 +552,38 @@ class image implements Core {
*
* @return void
*/
private function detailMemberImage() {
private function detailMemberImage(){
$image_id = $this->app->getPostParam("image_id");
$member_id = $this->app->getPostParam("member_id");
if (!isset($image_id)) {
if(!isset($image_id)){
$this->app->setOutput("Error", "Incorrect image id parameter");
} else if (!isset($member_id)) {
}
else if(!isset($member_id)){
$this->app->setOutput("Error", "Incorrect member id parameter");
} else {
try {
}
else{
try{
$service = $this->libClass;
$image = $service->getImage($id);
if ($image == null) { // if the image don't exists -> error
if($image == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
}
$member = $image->getMember($member_id);
if ($member == null) { // if the member don't exists -> error
if($member == null){ // if the member don't exists -> error
$this->app->setOutput("Error", "Member doesn't exist");
}
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
$this->app->setOutput("Images", $member);
@ -569,36 +598,38 @@ class image implements Core {
*
* @return void
*/
private function removeMemberImage() {
private function removeMemberImage(){
$image_id = $this->app->getPostParam("image_id");
$member_id = $this->app->getPostParam("member_id");
if (!isset($image_id)) {
if(!isset($image_id)){
$this->app->setOutput("Error", "Incorrect image id parameter");
} else if (!isset($member_id)) {
}
else if(!isset($member_id)){
$this->app->setOutput("Error", "Incorrect member id parameter");
} else {
try {
}
else{
try{
$service = $this->libClass;
$image = $service->getImage($id);
if ($image == null) { // if the image don't exists -> error
if($image == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
}
$member = $image->getMember($member_id);
if ($member == null) { // if the image don't exists -> error
if($member == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Member doesn't exist");
}
$member->delete();
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
}
@ -612,43 +643,44 @@ class image implements Core {
* @param String $status New status for the member
*
* @return void
* */
private function updateMemberImage() {
**/
private function updateMemberImage(){
$image_id = $this->app->getPostParam("image_id");
$member_id = $this->app->getPostParam("member_id");
$status = $this->app->getPostParam("status");
if (!isset($image_id)) {
if(!isset($image_id)){
$this->app->setOutput("Error", "Incorrect image id parameter");
} else if (!isset($member_id)) {
}
else if(!isset($member_id)){
$this->app->setOutput("Error", "Incorrect member id parameter");
} else {
try {
}
else{
try{
$service = $this->libClass;
$image = $service->getImage($id);
if ($image == null) { // if the image don't exists -> error
if($image == null){ // if the image don't exists -> error
$this->app->setOutput("Error", "Image doesn't exist");
}
$member = $image->getMember($member_id);
if ($member == null) { // if the member don't exists -> error
if($member == null){ // if the member don't exists -> error
$this->app->setOutput("Error", "Member doesn't exist");
}
$member->updateStatus($status);
} catch (BadResponseError $e) {
}catch(BadResponseError $e){
$this->app->getErrorInstance()->BadResponseHandler($e);
} catch (UserInputError $e) {
}catch(UserInputError $e){
$this->app->getErrorInstance()->UserInputHandler($e);
} catch (BaseError $e) {
}catch(BaseError $e){
$this->app->getErrorInstance()->BaseErrorHandler($e);
} catch (NotImplementedError $e) {
}catch(NotImplementedError $e){
$this->app->getErrorInstance()->NotImplementedHandler($e);
} catch (Exception $e) {
}catch(Exception $e){
$this->app->getErrorInstance()->OtherException($e);
}
}
}
}
?>