• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Command\OperationCommand类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中Guzzle\Service\Command\OperationCommand的典型用法代码示例。如果您正苦于以下问题:PHP OperationCommand类的具体用法?PHP OperationCommand怎么用?PHP OperationCommand使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



在下文中一共展示了OperationCommand类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: getCommandWithArrayParamAndFilters

 protected function getCommandWithArrayParamAndFilters()
 {
     $operation = new Operation(array('httpMethod' => 'POST', 'parameters' => array('foo' => new Parameter(array('type' => 'string', 'location' => 'query', 'sentAs' => 'Foo', 'required' => true, 'default' => 'bar', 'filters' => array('strtoupper'))), 'arr' => new Parameter(array('type' => 'array', 'location' => 'query', 'sentAs' => 'Arr', 'required' => true, 'default' => array(123, 456, 789), 'filters' => array(array('method' => 'implode', 'args' => array(',', '@value'))))))));
     $command = new OperationCommand(array(), $operation);
     $command->setClient(new MockClient());
     return $command;
 }
开发者ID:Frinstio,项目名称:AlfredWorkflow.com,代码行数:7,代码来源:AbstractVisitorTestCase.php


示例2: fromCommand

 public static function fromCommand(OperationCommand $command)
 {
     $response = json_decode($command->getResponse()->getBody(true), true);
     $class = get_called_class();
     // Cannot do new self() with abstract class
     return new $class($response);
 }
开发者ID:hautelook,项目名称:rabbitmq-api,代码行数:7,代码来源:AbstractRabbitMQModel.php


示例3: fromCommand

 /**
  * The fromCommand method is used by Guzzle to create an instance of this class. It "injects"
  * the response data, which is then parsed to populate this and the associated models.
  *
  * @param Guzzle\Service\Command\OperationCommand
  * @return array
  */
 public static function fromCommand(\Guzzle\Service\Command\OperationCommand $command)
 {
     // Grab the results, which will be in JSON format
     //krumo($command->getResponse());
     $result = $command->getResponse()->json();
     // Start building an array, since a call to the API can include several different sites
     $websites = array();
     // Now iterate through the results
     foreach ($result as $key => $row) {
         // "Target" is a stripped-down version of the URL provided
         $url = $row['target'];
         // Create a new Website model
         $website = new Website($url);
         // The 0 axis holds information about trustworthiness
         if (isset($row[0])) {
             $website->setTrustworthiness($row[0][0], $row[0][1]);
         }
         // The 4 axis contins information pertaining to child satefy
         if (isset($row[4])) {
             $website->setChildSafety($row[4][0], $row[4][1]);
         }
         // NOTE: the axes in indexes 1 and 2 are deprecated.
         // If any categories are specified, set them
         if (isset($row['categories'])) {
             $website->setCategories($row['categories']);
         }
         // If provided, set the blacklist information; we'll discard the timestamp information
         if (isset($row['blacklists'])) {
             $website->setBlacklists(array_keys($row['blacklists']));
         }
         // Add the website
         $websites[$key] = $website;
     }
     return $websites;
 }
开发者ID:lukaswhite,项目名称:weboftrust,代码行数:42,代码来源:ResponseParser.php


示例4: fromCommand

 /**
  * {@inheritdoc}
  */
 public static function fromCommand(OperationCommand $command)
 {
     $data = $command->getResponse()->json();
     $brandAddress = self::hydrateModelProperties(new Address(), $data['agentBrand']['address']);
     $brand = self::hydrateModelProperties(new Brand(), $data['agentBrand'], array(), array('address' => $brandAddress));
     $address = self::hydrateModelProperties(new Address(), $data['address']);
     return self::hydrateModelProperties(new self(), $data, array(), array('address' => $address, 'agentBrand' => $brand));
 }
开发者ID:AlexEvesDeveloper,项目名称:hl-stuff,代码行数:11,代码来源:Agent.php


示例5: testAlreadyOverriddenUserAgent

 public function testAlreadyOverriddenUserAgent()
 {
     $_SERVER['HTTP_USER_AGENT'] = 'Opera/9.80 (Windows NT 6.0) Presto/2.12.388 Version/12.14';
     $command = new OperationCommand();
     $command->set('ua', 'some_value');
     $this->dispatchCommand($command);
     $this->assertSame('some_value', $command->get('ua'));
 }
开发者ID:moriony,项目名称:ga-measurement-protocol-client,代码行数:8,代码来源:UserAgentOverriderTest.php


示例6: fromCommand

 /**
  * {@inheritdoc}
  */
 public static function fromCommand(OperationCommand $command)
 {
     $activities = new Collection();
     foreach ($command->getResponse()->json() as $key => $activity) {
         $activities->add($key, self::hydrateModelProperties(new self(), $activity));
     }
     return $activities;
 }
开发者ID:AlexEvesDeveloper,项目名称:hl-stuff,代码行数:11,代码来源:Activity.php


示例7: fromCommand

 /**
  * {@inheritdoc}
  */
 public static function fromCommand(OperationCommand $command)
 {
     $items = new Collection();
     foreach ($command->getResponse()->json() as $key => $item) {
         $items[$key] = self::hydrateModelProperties(new self(), $item, array('address1' => 'addressLineOne', 'address2' => 'addressLineTwo', 'address3' => 'addressLineThree', 'address4' => 'addressLineFour', 'address5' => 'addressLineFive'));
     }
     return $items;
 }
开发者ID:AlexEvesDeveloper,项目名称:hl-stuff,代码行数:11,代码来源:PafAddress.php


示例8: fromCommand

 public static function fromCommand(OperationCommand $command)
 {
     $xml = $command->getResponse()->xml();
     if (!isset($xml->AuthInfo)) {
         throw new AuthenticationException((string) $xml, $xml->attributes()['errorcode']);
     }
     $authToken = (string) $xml->AuthInfo->attributes()['authToken'];
     return $authToken;
 }
开发者ID:isometriks,项目名称:galves-api,代码行数:9,代码来源:AuthenticateDealer.php


示例9: testAddsContentTypeWhenExpectsIsSetOnCommand

 public function testAddsContentTypeWhenExpectsIsSetOnCommand()
 {
     $op = new OperationCommand(array(), new Operation());
     $op['command.expects'] = 'application/json';
     $op->setClient(new Client());
     $request = $op->prepare();
     $request->setResponse(new Response(200, null, '{"Baz":"Bar"}'), true);
     $this->assertEquals(array('Baz' => 'Bar'), $op->execute());
 }
开发者ID:Frinstio,项目名称:AlfredWorkflow.com,代码行数:9,代码来源:DefaultResponseParserTest.php


示例10: fromCommand

 /**
  * Create a response model object from a completed command.
  *
  * @param OperationCommand $command That serialized the request
  * @return \Illuminate\Support\Collection
  */
 public static function fromCommand(OperationCommand $command)
 {
     // Initialize the collection
     $collection = new self($command->getResponse()->json());
     // Set the Usergrid API client on the collection
     $collection->setApiClient($command->getClient()->getApiClient());
     // Return the collection
     return $collection;
 }
开发者ID:rodsimpson,项目名称:incubator-usergrid,代码行数:15,代码来源:GuzzleCommandTrait.php


示例11: fromCommand

 public static function fromCommand(OperationCommand $command)
 {
     $response = $command->getResponse();
     $info = $response->getInfo();
     if ($info['content_type'] === 'image/png' || $info['content_type'] === 'image/jpg') {
         return new static(['logo' => $info['url']]);
     }
     throw new BadResponseException('Content type invalid. API returned ' . $info['content_type']);
 }
开发者ID:karllhughes,项目名称:clearbit-php,代码行数:9,代码来源:Logo.php


示例12: testCastPrimitivesToArrays

 /**
  * @covers Desk\Command\PreValidator::castPrimitivesToArrays
  * @dataProvider dataCastPrimitivesToArrays
  *
  * @param array $param    Parameter description/structure
  * @param mixed $value    Input value for the parameter
  * @param mixed $expected Expected output value
  */
 public function testCastPrimitivesToArrays(array $param, $value, $expected)
 {
     $command = new OperationCommand(array('foo' => $value), new Operation(array('parameters' => array('foo' => $param))));
     $command->setClient(new Client());
     $event = new Event(array('command' => $command));
     $preValidator = $this->mock('castPrimitivesToArrays');
     $preValidator->castPrimitivesToArrays($event);
     $this->assertSame($expected, $command->get('foo'));
 }
开发者ID:dh-open,项目名称:desk-php,代码行数:17,代码来源:PreValidatorTest.php


示例13: testAllowsRawResponses

 public function testAllowsRawResponses()
 {
     $description = new ServiceDescription(array('operations' => array('foo' => array('responseClass' => 'bar', 'responseType' => 'model')), 'models' => array('bar' => array())));
     $op = new OperationCommand(array(OperationCommand::RESPONSE_PROCESSING => OperationCommand::TYPE_RAW), $description->getOperation('foo'));
     $op->setClient(new Client());
     $request = $op->prepare();
     $response = new Response(200, array('Content-Type' => 'application/xml'), '<Foo><Baz>Bar</Baz></Foo>');
     $request->setResponse($response, true);
     $this->assertSame($response, $op->execute());
 }
开发者ID:jorjoh,项目名称:Varden,代码行数:10,代码来源:OperationCommandTest.php


示例14: testSkipsUnkownModels

 public function testSkipsUnkownModels()
 {
     $parser = new OperationResponseParser();
     $operation = $this->getDescription()->getOperation('test');
     $operation->setResponseClass('Baz')->setResponseType('model');
     $op = new OperationCommand(array(), $operation);
     $op->setResponseParser($parser)->setClient(new Client());
     $op->prepare()->setResponse(new Response(201), true);
     $this->assertInstanceOf('Guzzle\\Http\\Message\\Response', $op->execute());
 }
开发者ID:xkeygmbh,项目名称:ifresco-php,代码行数:10,代码来源:OperationResponseParserTest.php


示例15: fromCommand

 /**
  * Create a response model object from a completed command
  *
  * @param OperationCommand $command That serialized the request
  *
  * @return CurrencyCollection
  */
 public static function fromCommand(OperationCommand $command)
 {
     $response = $command->getResponse();
     $json = $response->json();
     $currencies = array();
     foreach ($json as $currency) {
         $currencies[] = new Currency($currency['code'], $currency['name'], $currency['rate']);
     }
     return new self($currencies);
 }
开发者ID:symm,项目名称:guzzle-bitpay,代码行数:17,代码来源:CurrencyCollection.php


示例16: fromCommand

 public static function fromCommand(OperationCommand $command)
 {
     $xml = $command->getResponse()->xml();
     $styles = $xml->StyleList->style;
     $output = array();
     foreach ($styles as $style) {
         $output[(int) $style->attributes()['guid']] = trim((string) $style);
     }
     return $output;
 }
开发者ID:isometriks,项目名称:galves-api,代码行数:10,代码来源:GetStyles.php


示例17: fromCommand

 public static function fromCommand(OperationCommand $command)
 {
     $xml = $command->getResponse()->xml();
     $makes = $xml->MakeList->make;
     $output = array();
     foreach ($makes as $make) {
         $output[] = trim((string) $make);
     }
     return $output;
 }
开发者ID:isometriks,项目名称:galves-api,代码行数:10,代码来源:GetMakes.php


示例18: fromCommand

 public static function fromCommand(OperationCommand $command)
 {
     $xml = $command->getResponse()->xml();
     $years = $xml->YearList->year;
     $output = array();
     foreach ($years as $year) {
         $output[] = (int) $year;
     }
     return $output;
 }
开发者ID:isometriks,项目名称:galves-api,代码行数:10,代码来源:GetYears.php


示例19: testForceSet

 public function testForceSet()
 {
     $plugin = new DataSetter(array('test_key' => 'test_value'), true);
     $command = new OperationCommand();
     $command->set('test_key', 'already_stated_value');
     $event = new Event(array('command' => $command));
     $plugin->register($this->client);
     $this->client->getEventDispatcher()->dispatch('command.before_prepare', $event);
     $this->assertSame('test_value', $command->get('test_key'));
 }
开发者ID:moriony,项目名称:ga-measurement-protocol-client,代码行数:10,代码来源:DataSetterTest.php


示例20: fromCommand

 public static function fromCommand(OperationCommand $command)
 {
     $json = $command->getResponse()->json();
     // support collections
     if (array_key_exists(0, $json)) {
         return array_map(function (array $properties) {
             return new static($properties);
         }, $json);
     }
     return new static($json);
 }
开发者ID:smaft-sarl,项目名称:okta-php-sdk,代码行数:11,代码来源:BaseModel.php



注:本文中的Guzzle\Service\Command\OperationCommand类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Description\Parameter类代码示例发布时间:2022-05-23
下一篇:
PHP Command\CommandInterface类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap