本文整理汇总了PHP中Nette\Utils\Json::decode方法的典型用法代码示例。如果您正苦于以下问题:PHP Json::decode方法的具体用法?PHP Json::decode怎么用?PHP Json::decode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Nette\Utils\Json
的用法示例。
在下文中一共展示了Json::decode方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: handleDelete
/**
* @secured
* @param $usersID
*/
public function handleDelete($usersID)
{
if (is_string($usersID)) {
try {
$usersID = (array) Json::decode($usersID);
$usersID = array_values($usersID);
} catch (JsonException $e) {
$this['notification']->addError($e->getMessage());
if ($this->isAjax()) {
$this['notification']->redrawControl('error');
}
}
}
$result = $this->userRepository->deactivate($usersID);
if ($result === TRUE) {
$this['notification']->addSuccess("Úspěšně deaktivováno...");
} else {
if (strpos("Integrity constraint violation", $result) != -1) {
$this['notification']->addError("Uživatele se nepovedlo deaktivovat.");
} else {
$this['notification']->addError($result);
}
}
if ($this->isAjax()) {
$this['notification']->redrawControl('error');
$this['notification']->redrawControl('success');
$this['grid']->redrawControl();
}
}
示例2: getPanel
/**
* @return string
*/
public function getPanel()
{
if (!$this->queries) {
return NULL;
}
ob_start();
$esc = callback('Nette\\Templating\\Helpers::escapeHtml');
$click = class_exists('\\Tracy\\Dumper') ? function ($o, $c = FALSE, $d = 4) {
return \Tracy\Dumper::toHtml($o, array('collapse' => $c, 'depth' => $d));
} : callback('\\Tracy\\Helpers::clickableDump');
$totalTime = $this->totalTime ? sprintf('%0.3f', $this->totalTime * 1000) . ' ms' : 'none';
$extractData = function ($object) {
if ($object instanceof Elastica\Request) {
$data = $object->getData();
} elseif ($object instanceof Elastica\Response) {
$data = $object->getData();
} else {
return array();
}
try {
return !is_array($data) ? Json::decode($data, Json::FORCE_ARRAY) : $data;
} catch (Nette\Utils\JsonException $e) {
try {
return array_map(function ($row) {
return Json::decode($row, Json::FORCE_ARRAY);
}, explode("\n", trim($data)));
} catch (Nette\Utils\JsonException $e) {
return $data;
}
}
};
$processedQueries = array();
$allQueries = $this->queries;
foreach ($allQueries as $authority => $requests) {
/** @var Elastica\Request[] $item */
foreach ($requests as $i => $item) {
$processedQueries[$authority][$i] = $item;
if (isset($item[3])) {
continue;
// exception, do not re-execute
}
if (stripos($item[0]->getPath(), '_search') === FALSE || $item[0]->getMethod() !== 'GET') {
continue;
// explain only search queries
}
if (!is_array($data = $extractData($item[0]))) {
continue;
}
try {
$response = $this->client->request($item[0]->getPath(), $item[0]->getMethod(), $item[0]->getData(), array('explain' => 1) + $item[0]->getQuery());
// replace the search response with the explained response
$processedQueries[$authority][$i][1] = $response;
} catch (\Exception $e) {
// ignore
}
}
}
require __DIR__ . '/panel.phtml';
return ob_get_clean();
}
示例3: parseResultResponse
/**
* Funkce pro naparsování odpovědi získané od scoreru
* @param array|string $scorerResponseData
*/
private function parseResultResponse($scorerResponseData)
{
if (is_string($scorerResponseData)) {
$scorerResponseData = Json::decode($scorerResponseData);
}
#region score and rule
if (!empty($scorerResponseData['score'])) {
foreach ($scorerResponseData['score'] as $i => $rowResult) {
if ($rowResult == null) {
$this->classificationResults[] = null;
$this->rules[] = null;
continue;
}
if ($this->classificationAttribute == "") {
foreach ($rowResult as $key => $value) {
$this->classificationAttribute = $key;
break;
}
}
$this->classificationResults[] = @$rowResult[$this->classificationAttribute];
if (!empty($scorerResponseData['rule'][$i]) && !empty($scorerResponseData['rule'][$i]['id'])) {
$this->rules[] = $scorerResponseData['rule'][$i]['id'];
} else {
$this->rules[] = null;
}
}
}
#endregion score and rule
#region confusionMatrix
$this->confusionMatrix = new ScoringConfusionMatrix($scorerResponseData['confusionMatrix']['labels'], $scorerResponseData['confusionMatrix']['matrix']);
#endregion confusionMatrix
}
示例4: process
protected function process()
{
$v = $this->getValues();
/** @var Rme\Subject $subject */
$subject = $this->presenter->subject;
$subject->title = $v->title;
$subject->description = $v->description;
/** @var self|EditorSelector[] $this */
if ($this['editors']->isEditable()) {
$subject->editors = $v->editors;
}
$schemas = Json::decode($v['positions']);
foreach ($subject->schemas as $schema) {
$schema->position = NULL;
$schema->subject = NULL;
}
$position = 0;
foreach ($schemas as $schemaId) {
/** @var Rme\Schema $schema */
$schema = $this->orm->schemas->getById($schemaId);
$schema->position = $position;
$schema->subject = $subject;
$position++;
}
$this->orm->flush();
$this->presenter->flashSuccess('editor.edited.schema');
$this->presenter->purgeCacheTag('header');
$this->presenter->redirect('this');
}
示例5: createFromRequest
/**
* @param Request $request
* @return Notification
*/
public static function createFromRequest(Request $request)
{
$notification = new Notification();
$parsed = Json::decode($request->getRawBody());
$notification->setLive($parsed->live === 'true');
$items = array();
foreach ($parsed->notificationItems as $rawItem) {
$item = new NotificationRequestItem($notification);
$item->setAdditionalData(self::getNotificationRequestItemValue($rawItem, 'additionalData'));
$item->setAmountValue(self::getNotificationRequestItemValue($rawItem, 'amount.value'));
$item->setAmountCurrency(self::getNotificationRequestItemValue($rawItem, 'amount.currency'));
$item->setPspReference(self::getNotificationRequestItemValue($rawItem, 'pspReference'));
$item->setEventCode(self::getNotificationRequestItemValue($rawItem, 'eventCode'));
$date = new DateTime(self::getNotificationRequestItemValue($rawItem, 'eventDate'));
$item->setEventDate($date);
$item->setMerchantAccountCode(self::getNotificationRequestItemValue($rawItem, 'merchantAccountCode'));
$item->setOperations(self::getNotificationRequestItemValue($rawItem, 'operations'));
$item->setMerchantReference(self::getNotificationRequestItemValue($rawItem, 'merchantReference'));
$item->setOriginalReference(self::getNotificationRequestItemValue($rawItem, 'originalReference'));
$item->setPaymentMethod(self::getNotificationRequestItemValue($rawItem, 'paymentMethod'));
$item->setReason(self::getNotificationRequestItemValue($rawItem, 'reason'));
$item->setSuccess(self::getNotificationRequestItemValue($rawItem, 'success') === 'true');
$items[] = $item;
}
$notification->setNotificationItems($items);
return $notification;
}
示例6: decode
/**
* Parses a signed_request and validates the signature.
*
* @param string $signedRequest A signed token
* @param string $appSecret
*
* @return array The payload inside it or null if the sig is wrong
*/
public static function decode($signedRequest, $appSecret)
{
if (!$signedRequest || strpos($signedRequest, '.') === false) {
Debugger::log('Signed request is invalid! ' . json_encode($signedRequest), 'facebook');
return NULL;
}
list($encoded_sig, $payload) = explode('.', $signedRequest, 2);
// decode the data
$sig = Helpers::base64UrlDecode($encoded_sig);
$data = Json::decode(Helpers::base64UrlDecode($payload), Json::FORCE_ARRAY);
if (!isset($data['algorithm']) || strtoupper($data['algorithm']) !== Configuration::SIGNED_REQUEST_ALGORITHM) {
Debugger::log("Unknown algorithm '{$data['algorithm']}', expected " . Configuration::SIGNED_REQUEST_ALGORITHM, 'facebook');
return NULL;
}
// check sig
$expected_sig = hash_hmac('sha256', $payload, $appSecret, $raw = TRUE);
if (strlen($expected_sig) !== strlen($sig)) {
Debugger::log('Bad Signed JSON signature! Expected ' . Dumper::toText($expected_sig) . ', but given ' . Dumper::toText($sig), 'facebook');
return NULL;
}
$result = 0;
for ($i = 0; $i < strlen($expected_sig); $i++) {
$result |= ord($expected_sig[$i]) ^ ord($sig[$i]);
}
if ($result !== 0) {
Debugger::log('Bad Signed JSON signature! Expected ' . Dumper::toText($expected_sig) . ', but given ' . Dumper::toText($sig), 'facebook');
return NULL;
}
return $data;
}
示例7: login
/**
* funkce obstaravajici prihlaseni uzivatele
*/
private function login()
{
$this->database = $this->context->getService("database.default.context");
$data = Nette\Utils\Json::decode($this->request->getParameters()["data"]);
$authenticator = new LoginAuthenticator($this->database);
$user = $this->getUser();
$user->setAuthenticator($authenticator);
try {
$user->login($data->username, $data->password);
} catch (Nette\Security\AuthenticationException $e) {
$error["err"] = true;
$error["message"] = $e->getMessage();
return $error;
}
$userIdent = (array) $user->getIdentity()->getData();
$tokenId = base64_encode(mcrypt_create_iv(32));
$issuedAt = time();
$notBefore = $issuedAt;
$expire = $notBefore + 60 * 60;
$serverName = "lolnotepad";
$token = ['iat' => $issuedAt, 'jti' => $tokenId, 'iss' => $serverName, 'nbf' => $notBefore, 'exp' => $expire, 'data' => $userIdent];
$key = base64_decode(KEY);
$jwt = JWT::encode($token, $key, 'HS256');
return $jwt;
}
示例8: execute
protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
{
$output->writeln('Extracting files');
$outputFolder = $input->getOption('o');
if ($outputFolder === NULL) {
$outputFolder = $this->outputFolder;
}
$files = $input->getOption('f');
if ($files === NULL) {
$files = $this->extractDirs;
}
if (!isset($files)) {
$output->writeln('No input files given.');
exit;
}
$remote = $input->getOption('r');
if ($remote === NULL) {
$remote = $this->remote;
} else {
$remote = (bool) $remote;
}
$extractor = new NetteExtractor();
$extractor->setupForms()->setupDataGrid();
$data = $extractor->scan($files);
$builder = new TemplateBuilder();
if ($remote === TRUE) {
$templateData = $builder->formatTemplateData($data);
$response = \Nette\Utils\Json::decode($this->uploader->upload($templateData));
$output->writeln(sprintf('<info>Extracted %d tokens. Uploaded to remote server. Response: %s</info>', count($data), $response->message));
} else {
$outputFile = $outputFolder . '/template.neont';
$builder->buildTemplate($outputFile, $data);
$output->writeln(sprintf('<info>Extracted %d tokens. Output saved in: %s.</info>', count($data), $outputFile));
}
}
示例9: authenticate
public function authenticate(array $credentials)
{
$mcrypt = mcrypt_module_open(MCRYPT_BLOWFISH, '', MCRYPT_MODE_CBC, '');
$iv = mcrypt_create_iv(mcrypt_enc_get_iv_size($mcrypt), MCRYPT_DEV_RANDOM);
mcrypt_generic_init($mcrypt, $this->cryptPassword, $iv);
$url = $this->getUrl($credentials[self::USERNAME], $credentials[self::PASSWORD], $mcrypt, $iv);
try {
$res = $this->httpClient->get($url)->send();
} catch (\Guzzle\Http\Exception\ClientErrorResponseException $e) {
if ($e->getResponse()->getStatusCode() === 403) {
throw new \Nette\Security\AuthenticationException("User '{$credentials[self::USERNAME]}' not found.", self::INVALID_CREDENTIAL);
} elseif ($e->getResponse()->getStatusCode() === 404) {
throw new \Nette\Security\AuthenticationException("Invalid password.", self::IDENTITY_NOT_FOUND);
} else {
throw $e;
}
}
$responseBody = trim(mdecrypt_generic($mcrypt, $res->getBody(TRUE)));
$apiData = Json::decode($responseBody);
$user = $this->db->table('users')->where('id = ?', $apiData->id)->fetch();
$registered = new \DateTimeImmutable($apiData->registered->date, new \DateTimeZone($apiData->registered->timezone));
$userData = array('username' => $credentials[self::USERNAME], 'password' => $this->calculateAddonsPortalPasswordHash($credentials[self::PASSWORD]), 'email' => $apiData->email, 'realname' => $apiData->realname, 'url' => $apiData->url, 'signature' => $apiData->signature, 'language' => $apiData->language, 'num_posts' => $apiData->num_posts, 'apiToken' => $apiData->apiToken, 'registered' => $registered->getTimestamp());
if (!$user) {
$userData['id'] = $apiData->id;
$userData['group_id'] = 4;
$this->db->table('users')->insert($userData);
$user = $this->db->table('users')->where('username = ?', $credentials[self::USERNAME])->fetch();
} else {
$user->update($userData);
}
return $this->createIdentity($user);
}
示例10: request
/**
* @param string $method "/tag"
* @param array $args [data => string]
* @return mixed
* @throws \Nette\Utils\JsonException
*/
protected function request($method, $args)
{
$args = $args + ['output' => 'json'];
$url = self::ENDPOINT . "{$method}?" . http_build_query($args);
$raw = file_get_contents($url);
return Json::decode($raw, Json::FORCE_ARRAY)['result'];
}
示例11: fromActiveRow
public static function fromActiveRow(ActiveRow $row)
{
$version = new static();
$version->id = $row->id;
$version->version = $row->version;
$version->license = $row->license;
$version->distType = $row->distType;
$version->distUrl = $row->distUrl;
$version->sourceType = $row->sourceType;
$version->sourceUrl = $row->sourceUrl;
$version->sourceReference = $row->sourceReference;
$version->composerJson = Json::decode($row->composerJson);
// this may fail
$version->updatedAt = $row->updatedAt;
$linkTypes = self::getLinkTypes();
$linkTypes = array_flip($linkTypes);
foreach ($row->related('dependencies') as $dependencyRow) {
$type = $dependencyRow->type;
$type = $linkTypes[$type];
$version->{$type}[$dependencyRow->packageName] = $dependencyRow->version;
if ($dependencyRow->dependencyId) {
$version->relatedAddons[$dependencyRow->packageName] = $dependencyRow->dependencyId;
}
}
return $version;
}
示例12: updateAddon
private function updateAddon(ActiveRow $addon)
{
$this->writeln('Updating: ' . $addon->name);
$github = $this->normalizeGithubUrl($addon->repository);
if ($github) {
$guzzle = new \Guzzle\Http\Client();
try {
$guzzle->get($github)->send();
$this->db->table('addons_resources')->insert(array('addonId' => $addon->id, 'type' => 'github', 'resource' => $github));
} catch (\Guzzle\Http\Exception\RequestException $e) {
$this->writeln((string) $e);
}
}
if ($addon->type === 'composer') {
$version = $addon->related('versions')->order('id', 'DESC')->fetch();
$composerData = Json::decode($version->composerJson);
$packagist = $this->generatePackagistUrl($composerData->name);
$guzzle = new \Guzzle\Http\Client();
try {
$guzzle->get($packagist . '.json')->send();
$this->db->table('addons_resources')->insert(array('addonId' => $addon->id, 'type' => 'packagist', 'resource' => $packagist));
} catch (\Guzzle\Http\Exception\RequestException $e) {
$this->writeln((string) $e);
}
}
if ($addon->demo) {
$guzzle = new \Guzzle\Http\Client();
try {
$guzzle->get($addon->demo)->send();
$this->db->table('addons_resources')->insert(array('addonId' => $addon->id, 'type' => 'demo', 'resource' => $addon->demo));
} catch (\Guzzle\Http\Exception\RequestException $e) {
$this->writeln((string) $e);
}
}
}
示例13: settingsFromJson
/**
* @param string|object $json
* @param int $forcedDepth
* @return \SimpleXMLElement
*/
public function settingsFromJson($json, $forcedDepth = 3)
{
if (is_string($json)) {
$json = Json::decode($json);
}
$strict = $json->strict;
$rule = $json->rule0;
// Create basic structure of Document.
//TODO taskId
$this->init(!empty($json->taskId) ? $json->taskId : '', $json->limitHits);
// Create antecedent
if (!empty($rule->antecedent->children)) {
$antecedentId = $this->parseCedent($rule->antecedent, 1, $forcedDepth, $strict);
$this->antecedentSetting[0] = (string) $antecedentId;
}
// IMs
foreach ($rule->IMs as $IM) {
$this->createInterestMeasureThreshold($IM);
}
if (!empty($rule->specialIMs)) {
foreach ($rule->specialIMs as $IM) {
$this->createInterestMeasureThreshold($IM);
}
}
// Create consequent
$consequentId = $this->parseCedent($rule->succedent, 1, $forcedDepth, $strict);
$this->consequentSetting[0] = (string) $consequentId;
return $this->pmml;
}
示例14: request
private function request($req, $args = [])
{
$args = $args + ['api_key' => $this->apiKey, 'api_username' => $this->apiUsername];
$url = self::DOMAIN . "{$req}?" . http_build_query($args);
$raw = file_get_contents($url);
return Json::decode($raw, Json::FORCE_ARRAY);
}
示例15: send
public function send(RequestInterface $request)
{
try {
return parent::send($request);
} catch (\GuzzleHttp\Exception\ServerException $e) {
$response = $e->getResponse();
$body = $response->getBody()->getContents();
$message = $e->getMessage();
try {
$data = Json::decode($body);
$message = implode(', ', $data->errors);
} catch (JsonException $e) {
//ignore
}
$ex = new ServerException($message, $e->getCode(), $e);
$ex->setBody($body);
throw $ex;
} catch (\GuzzleHttp\Exception\ClientException $e) {
$response = $e->getResponse();
$body = $response->getBody()->getContents();
$message = $e->getMessage();
try {
$data = Json::decode($body);
$message = implode(', ', $data->errors);
} catch (JsonException $e) {
//ignore
}
$ex = new ClientException($message, $e->getCode(), $e);
$ex->setBody($body);
throw $ex;
}
}