This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/service/classes/Controller/User/Service.php

68 lines
1.9 KiB
PHP
Raw Normal View History

2013-10-10 02:44:53 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class provides User Service functions
*
* @package Service
* @category Controllers/User
* @author Deon George
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Controller_User_Service extends Controller_Service {
2013-10-10 02:44:53 +00:00
protected $secure_actions = array(
'ajaxmanage'=>TRUE,
'list'=>TRUE,
'view'=>TRUE,
);
/**
* This ajax functions obtains the manage button login/password for this service
*/
2013-10-10 02:44:53 +00:00
public function action_ajaxmanage() {
$so = ORM::factory('Service',$this->request->param('id'));
$k = Session::instance()->get_once('manage_button');
$amo = $so->plugin(isset($_REQUEST['t']) ? $_REQUEST['t'] : '');
$o = array(
2013-11-28 06:41:34 +00:00
'u'=>$amo->username() ? $amo->username() : strtolower($amo->name()),
'p'=>(! $k OR ! $this->request->is_ajax() OR ! $so->loaded() OR ! isset($_REQUEST['k']) OR $k != $_REQUEST['k']) ? Random::char() : $amo->password(),
2013-10-10 02:44:53 +00:00
);
$this->response->headers('Content-Type','application/json');
$this->response->body(json_encode($o));
}
/**
* Show a list of services
*/
public function action_list() {
2016-07-29 01:19:30 +00:00
$this->meta->title = 'Service List';
Block::factory()
->title(sprintf('Services for Account: %s',$this->ao->refnum()))
->title_icon($this->icon)
->body(View::factory('service/user/list')->set('o',$this->ao->service->find_all()));
2013-10-10 02:44:53 +00:00
}
public function action_view() {
list($id,$output) = Table::page(__METHOD__);
$so = ORM::factory('Service',$id);
if (! $so->loaded() OR ! Auth::instance()->authorised($so->account))
throw HTTP_Exception::factory(403,'Service either doesnt exist, or you are not authorised to see it');
2013-10-10 02:44:53 +00:00
2016-07-29 01:19:30 +00:00
$this->meta->title = 'Service: '.$so->name();
$output .= View::factory('service/user/view')
->set('o',$so);
2013-10-10 02:44:53 +00:00
Block::factory()
2016-08-03 04:00:51 +00:00
->title(sprintf('%s: %s',$so->id(),$so->name()))
->title_icon('fa fa-server')
->body($output);
2013-10-10 02:44:53 +00:00
}
}
?>