123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- <?php
- /**
- * Administrator restricted stealth tariffs implementeation
- */
- class StealthTariffs {
- /**
- * Contains array of all available stealth tariffs as tariffName=>stealthData
- *
- * @var array
- */
- protected $allStealthTariffs = array();
- /**
- * Contains array of all available system tariffs as tariffName=>tariffData
- *
- * @var array
- */
- protected $allTariffs = array();
- /**
- * Stealth tariffs database abstraction layer placeholder
- *
- * @var object
- */
- protected $stealthDb = '';
- /**
- * System messages helper instance placeholder
- *
- * @var object
- */
- protected $messages = '';
- //some other predefined stuff
- const TABLE_STEALTH = 'stealthtariffs';
- const RIGHT_STEALTH = 'STEALTHTARIFFS';
- const RIGHT_CONFIG = 'STEALTHTARIFFSCFG';
- const URL_ME = '?module=stealthtariffs';
- const ROUTE_DELETE = 'deletestealthtariff';
- const PROUTE_CREATE = 'createstealthtariff';
- public function __construct() {
- $this->initMessages();
- $this->initStealthDb();
- $this->loadStealtTariffs();
- }
- /**
- * Inits message helper instance
- *
- * @return void
- */
- protected function initMessages() {
- $this->messages = new UbillingMessageHelper();
- }
- /**
- * Inits database abstraction layer object for further usage
- *
- * @return void
- */
- protected function initStealthDb() {
- $this->stealthDb = new NyanORM(self::TABLE_STEALTH);
- }
- /**
- * Loads available stealth tariffs data from database
- *
- * @return void
- */
- protected function loadStealtTariffs() {
- $this->allStealthTariffs = $this->stealthDb->getAll('tariff');
- }
- /**
- * Loads existing tariffs. Required only for cfg iface.
- *
- * @return void
- */
- protected function loadAllTariffs() {
- $this->allTariffs = zb_TariffGetAllData();
- }
- /**
- * Checks is tariff marked as stealth?
- *
- * @param string $tariffName
- *
- * @return bool
- */
- protected function isStealth($tariffName) {
- $result = false;
- if (isset($this->allStealthTariffs[$tariffName])) {
- $result = true;
- }
- return($result);
- }
- /**
- * Checks is tariff not marked as stealth?
- *
- * @param string $tariffName
- *
- * @return bool
- */
- protected function isNotStealth($tariffName) {
- $result = true;
- if (isset($this->allStealthTariffs[$tariffName])) {
- $result = false;
- }
- return($result);
- }
- /**
- * Creates new stealth-tariff
- *
- * @param string $tariffName
- *
- * @return void/string on error
- */
- public function create($tariffName) {
- $result = '';
- //preloading existing tariffs
- $this->loadAllTariffs();
- $tariffNameF = ubRouting::filters($tariffName, 'mres');
- if (isset($this->allTariffs[$tariffName])) {
- if ($this->isNotStealth($tariffName)) {
- $this->stealthDb->data('tariff', $tariffNameF);
- $this->stealthDb->create();
- log_register('STEALTHTARIFFS CREATE `' . $tariffName . '`');
- } else {
- $result .= __('Tariff') . ' `' . $tariffName . '` ' . __('Already stealth');
- }
- } else {
- $result .= __('Strange exception') . ': ' . __('Tariff') . ' `' . $tariffName . '` ' . __('Not exists');
- }
- return($result);
- }
- /**
- * Deletes existing stealth tariff
- *
- * @param string $tariffName
- *
- * @return void/string on error
- */
- public function delete($tariffName) {
- $result = '';
- $tariffNameF = ubRouting::filters($tariffName, 'mres');
- if ($this->isStealth($tariffName)) {
- $this->stealthDb->where('tariff', '=', $tariffNameF);
- $this->stealthDb->delete();
- log_register('STEALTHTARIFFS DELETE `' . $tariffName . '`');
- } else {
- $result .= __('Stealth tariffs') . ' `' . $tariffName . '` ' . __('Not exists');
- }
- return($result);
- }
- /**
- * Flushes existing stealth tariff on system tariff deletion
- *
- * @param string $tariffName
- *
- * @return void
- */
- public function flush($tariffName) {
- $result = '';
- $tariffNameF = ubRouting::filters($tariffName, 'mres');
- $this->stealthDb->where('tariff', '=', $tariffNameF);
- $this->stealthDb->delete();
- log_register('STEALTHTARIFFS FLUSH `' . $tariffName . '`');
- }
- /**
- * Returns array copy without stealth tariffs
- *
- * @param array $tariffsArr
- *
- * @return array
- */
- public function truncateStealth($tariffsArr) {
- $result = array();
- if (!empty($tariffsArr)) {
- foreach ($tariffsArr as $eachTariff => $eachData) {
- if ($this->isNotStealth($eachTariff)) {
- $result[$eachTariff] = $eachData;
- }
- }
- }
- return($result);
- }
- /**
- * Renders new stealth-tariff creation form
- *
- * @return string
- */
- protected function renderCreateForm() {
- $result = '';
- if (!empty($this->allTariffs)) {
- $params = array();
- foreach ($this->allTariffs as $eachTariffName => $tariffData) {
- //excluding already stealth tariffs
- if (!$this->isStealth($eachTariffName)) {
- $params[$eachTariffName] = $eachTariffName;
- }
- }
- //
- // \ /
- // _\/\/_
- // _____/_//\\_\_____
- // 1981-2006
- //
- if (!empty($params)) {
- $inputs = wf_Selector(self::PROUTE_CREATE, $params, __('Tariff'), '', false) . ' ';
- $inputs .= wf_Submit(__('Mark this tariff as stealth'));
- $result .= wf_Form('', 'POST', $inputs, 'glamour');
- } else {
- $result .= $this->messages->getStyledMessage(__('All tariffs marked as stealth'), 'info');
- }
- } else {
- $result .= $this->messages->getStyledMessage(__('Any tariffs available'), 'warning');
- }
- return($result);
- }
- /**
- * Renders existing stealth tariff deletion form
- *
- * @param string $tariffName
- *
- * @return string
- */
- protected function renderDeleteForm($tariffName) {
- $result = '';
- if ($this->isStealth($tariffName)) {
- $deleteUrl = self::URL_ME . '&' . self::ROUTE_DELETE . '=' . $tariffName;
- $cancelUrl = self::URL_ME;
- $control = web_delete_icon();
- $customTitle = __('Delete') . ' ' . $tariffName . '?';
- $label = $this->messages->getDeleteAlert();
- $result .= wf_ConfirmDialog($deleteUrl, $control, $label, '', $cancelUrl, $customTitle);
- }
- return($result);
- }
- /**
- * Renders list of available stealth tariffs
- *
- * @return string
- */
- public function renderList() {
- $result = '';
- //preloading system data required in future
- $this->loadAllTariffs();
- if (!empty($this->allStealthTariffs)) {
- $cells = wf_TableCell(__('Tariff'));
- $cells .= wf_TableCell(__('Fee'));
- $cells .= wf_TableCell(__('Actions'));
- $rows = wf_TableRow($cells, 'row1');
- foreach ($this->allStealthTariffs as $io => $each) {
- if (isset($this->allTariffs[$each['tariff']])) {
- $tariffFee = $this->allTariffs[$each['tariff']]['Fee'];
- $rowClass = 'row5';
- } else {
- $tariffFee = __('Deleted');
- $rowClass = 'sigdeleteduser';
- }
- $cells = wf_TableCell($each['tariff']);
- $cells .= wf_TableCell($tariffFee);
- $cells .= wf_TableCell($this->renderDeleteForm($each['tariff']));
- $rows .= wf_TableRow($cells, $rowClass);
- }
- $result .= wf_TableBody($rows, '100%', 0, 'sortable');
- } else {
- $result .= $this->messages->getStyledMessage(__('Nothing to show'), 'info');
- }
- $result .= wf_delimiter();
- $result .= $this->renderCreateForm();
- return($result);
- }
- }
|