Exemple #1
0
 /**
  * Index Action - admin panel home page
  *
  * @package     las
  * @version     1.0
  */
 public function indexAction()
 {
     $this->tag->setTitle(__('Admin panel'));
     $this->assets->addJs('js/plugins/refresh.js');
     $this->scripts = ["\$('.refresh').refresh(" . ($this->url->getBaseUri() != '/' ? "{ base_uri: '" . $this->url->getBaseUri() . "'}" : '') . ");"];
     $this->view->setVars(['clients' => Clients::find(), 'devices' => Devices::find(), 'balances' => Payments::sum(['conditions' => 'status=' . Payments::SUCCESS, 'column' => 'amount'])]);
 }
Exemple #2
0
 /**
  * Index action - display all devices
  *
  * @package     las
  * @version     1.0
  */
 public function indexAction()
 {
     $this->tag->setTitle(__('Devices'));
     // Available sort to choose
     $this->filter->add('in_array', function ($value) {
         return in_array($value, ['client_id', 'client_id DESC', 'IP', 'IP DESC', 'lastActive', 'lastActive DESC', 'name', 'name DESC', 'status', 'status DESC', 'type', 'type DESC']) ? $value : null;
     });
     // Check if limit to client's devices
     if ($client = $this->request->getQuery('client', 'int', null, true)) {
         $data = Devices::find(['client_id = :client:', 'order' => $this->request->getQuery('order', 'in_array', 'id', true), 'bind' => ['client' => $client]]);
     } else {
         $data = Devices::find(['order' => $this->request->getQuery('order', 'in_array', 'id', true)]);
     }
     // Get devices and prepare pagination
     $paginator = new Paginator(["data" => $data, "limit" => $this->request->getQuery('limit', 'int', 20, true), "page" => $this->request->getQuery('page', 'int', 1, true)]);
     $this->view->setVars(['pagination' => $paginator->getPaginate()]);
 }
Exemple #3
0
 /**
  * Display firewall code
  *
  * @package     las
  * @version     1.0
  */
 public static function display($path, $vars = [])
 {
     $di = \Phalcon\DI::getDefault();
     if ($di->getShared('router')->getModuleName() == 'cli') {
         $view = $di->getShared('view');
     } else {
         $view = new \Phalcon\Mvc\View();
         $view->setDI($di);
         $view->registerEngines(\Las\Library\Tool::registerEngines($view, $di));
     }
     $settings = json_decode(json_encode(\Las\Library\Arr::from_model(Settings::find('status=' . Settings::ACTIVE), 'name', 'value')));
     $lans = Networks::find('status = ' . Networks::ACTIVE . ' AND type = ' . Networks::LAN);
     $wans = Networks::find('status = ' . Networks::ACTIVE . ' AND type = ' . Networks::WAN);
     $vars = ['clients' => Clients::find(), 'devices' => Devices::find('status=' . Devices::ACTIVE), 'messages' => Messages::find('status=' . Messages::ACTIVE), 'tariffs' => Tariffs::find('status=' . Tariffs::ACTIVE), 'settings' => $settings, 'redirects' => Redirects::find('status=' . Redirects::ACTIVE), 'services' => Services::find('status=' . Services::ACTIVE . ' AND client_id=0 AND device_id=0'), 'lans' => $lans, 'lan' => $lans->getFirst(), 'wans' => $wans, 'wan' => $wans->getFirst(), 'ipt' => $settings->iptables, 'tc' => $settings->tc, 'EOL' => PHP_EOL];
     $view->setViewsDir(ROOT_PATH . '/app/common/cache/volt/app/cli/views/');
     ob_start();
     $view->partial($path, $vars);
     return preg_replace(['/^\\s+|^[\\t\\s]*\\n+/m', "/\r/"], '', ob_get_clean());
     //return preg_replace('/^\s+|^[\t\s]*\n+/m', "/\x0D/"], '', $view->partial($path, $vars, false));
 }
Exemple #4
0
 /**
  * Ping Action - ping all active devices
  *
  * @package     las
  * @version     1.0
  */
 public function pingAction()
 {
     $devices = Devices::find('status=' . Devices::ACTIVE);
     foreach ($devices as $device) {
         $ping = \Las\Library\Info::ping(long2ip($device->IP));
         if ($ping) {
             $device->lastActive = time();
             $device->update();
         }
     }
 }
 /**
  * Edit action - edit the redirect
  *
  * @package     las
  * @version     1.0
  */
 public function editAction()
 {
     // Get id from url params and check if record exist
     $params = $this->router->getParams();
     if (isset($params[0]) && ($redirect = Redirects::findFirst($params[0]))) {
         $devices = Devices::find(['status=:status:', 'bind' => ['status' => Devices::ACTIVE]]);
         if (!count($devices)) {
             $this->flashSession->notice($this->tag->linkTo(['#', 'class' => 'close', 'title' => __("Close"), '×']) . '<strong>' . __('Notice') . '!</strong> ' . __("Please add the device first") . ': ' . $this->tag->linkTo('admin/devices/add', __('Add')));
         }
         // Set title, pick view and send variables
         $this->tag->setTitle(__('Redirects') . ' / ' . __('Edit'));
         $this->view->pick('redirects/write');
         $this->view->setVars(['devices' => $devices, 'status' => Redirects::status(true), 'type' => Redirects::type(true)]);
         // Check if the form has been sent
         if ($this->request->isPost() === true && $this->request->hasPost('submit')) {
             $redirect->__set('devices', $devices);
             $valid = $redirect->write('update');
             // Check if data are valid
             if ($valid instanceof Redirects) {
                 $this->flashSession->success($this->tag->linkTo(['#', 'class' => 'close', 'title' => __("Close"), '×']) . '<strong>' . __('Success') . '!</strong> ' . __("The data has been saved."));
             } else {
                 $this->view->setVar('errors', $valid);
                 $this->flashSession->warning($this->tag->linkTo(['#', 'class' => 'close', 'title' => __("Close"), '×']) . '<strong>' . __('Warning') . '!</strong> ' . __("Please correct the errors."));
             }
         } else {
             $diff = ['device' => $redirect->device_id];
             // Values to fill out the form
             $this->tag->setDefaults(array_merge(get_object_vars($redirect), $diff));
         }
     } else {
         parent::notFoundAction();
     }
 }