public function run($inQuery, $args) { // Parsing user request $inQuery = $inQuery; $inDefaultFrom = $this->app->getDefault('from'); $inDefaultTo = $this->app->getDefault('to'); $out = array(); $objQuery = new e4QueryParser($this->app, $inQuery, $inDefaultFrom, $inDefaultTo); if ($objQuery->parse()) { $tmpFrom = $objQuery->getFrom(); $tmpTo = $objQuery->getTo(); $tmpAmount = $objQuery->getAmount(); if (count($tmpFrom) > 1) { foreach ($tmpFrom as $currency) { $suggest = $objQuery->getSuggestion('from', $currency); $out[] = array('uid' => $currency, 'arg' => 'none', 'title' => $suggest, 'subtitle' => e4Currency::currencyName($currency) . ' (' . $currency . ')', 'autocomplete' => $suggest, 'icon' => 'icon.png', 'valid' => 'no'); } } else { if (count($tmpTo) > 1) { foreach ($tmpTo as $currency) { $suggest = $objQuery->getSuggestion('to', $currency); $out[] = array('uid' => $currency, 'arg' => 'none', 'title' => $suggest, 'subtitle' => e4Currency::currencyName($currency) . ' (' . $currency . ')', 'autocomplete' => $suggest, 'icon' => 'icon.png', 'valid' => 'no'); } } else { $tmpResponse = new e4QuerySend($this->app, $tmpAmount, $tmpFrom[0], $tmpTo[0]); if ($tmpResponse->sendRequest()) { $out[] = array('uid' => 'none', 'arg' => $tmpResponse->getToAmount(), 'title' => implode(' ', array($tmpResponse->getFromAmount(), $tmpResponse->getFromCurrency(), '=', $tmpResponse->getToAmount(), $tmpResponse->getToCurrency())), 'subtitle' => 'Processed by ' . $tmpResponse->getService(), 'icon' => 'icon.png', 'valid' => 'yes'); } } } } // Invalid response matched if (!count($out)) { $out[] = array('uid' => 'none', 'arg' => 'none', 'title' => 'Invalid query ' . $inQuery, 'subtitle' => 'Try ‘12 €‘ or ‘12 € to $‘ or ‘€‘ and have fun!', 'icon' => 'icon.png', 'valid' => 'no'); } return $out; }
protected function createRow($id, $selected = false) { return array('uid' => $id, 'arg' => $id, 'title' => 'Set ' . $id . ($selected ? ' (current setting)' : ''), 'subtitle' => e4Currency::currencyName($id), 'autocomplete' => $this->inID . $id, 'icon' => 'icon.png', 'valid' => 'true'); }