Skip to content
This repository has been archived by the owner on May 21, 2021. It is now read-only.

Commit

Permalink
Create order request template
Browse files Browse the repository at this point in the history
  • Loading branch information
sanmai committed Oct 16, 2020
1 parent 859749d commit 154d3a0
Show file tree
Hide file tree
Showing 5 changed files with 233 additions and 0 deletions.
56 changes: 56 additions & 0 deletions examples/090_CreateOrderRequest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<?php
/**
* This code is licensed under the MIT License.
*
* Copyright (c) 2018-2020 Alexey Kopytko <alexey@kopytko.com> and contributors
* Copyright (c) 2018 Appwilio (http://appwilio.com), greabock (https://github.com/greabock), JhaoDa (https://github.com/jhaoda)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/

declare(strict_types=1);

use Tests\YDeliverySDK\Integration\DebuggingLogger;
use YDeliverySDK\Requests\CreateOrderRequest;

include_once 'vendor/autoload.php';

$builder = new \YDeliverySDK\ClientBuilder();
$builder->setToken($_SERVER['YANDEX_DELIVERY_TOKEN'] ?? '');
$builder->setLogger(new DebuggingLogger());
/** @var \YDeliverySDK\Client $client */
$client = $builder->build();

$request = new CreateOrderRequest();

$response = $client->sendCreateOrderRequest($request);

if ($response->hasErrors()) {
// Обрабатываем ошибки
foreach ($response->getMessages() as $message) {
if ($message->getErrorCode() !== '') {
// Это ошибка
echo "{$message->getErrorCode()}: {$message->getMessage()}\n";
}
}

return;
}

\var_dump($response->id);
1 change: 1 addition & 0 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
* @method Responses\IntervalsResponse|Responses\Types\Interval[] sendWithdrawIntervalsRequest(Requests\WithdrawIntervalsRequest $request)
* @method Responses\IntervalsResponse|Responses\Types\Interval[] sendImportIntervalsRequest(Requests\ImportIntervalsRequest $request)
* @method Responses\DeliveryOptionsResponse|Responses\Types\DeliveryOption[] sendDeliveryOptionsRequest(Requests\DeliveryOptionsRequest $request)
* @method Responses\OrderResponse sendCreateOrderRequest(Requests\CreateOrderRequest $request)
*/
final class Client extends CommonClient
{
Expand Down
45 changes: 45 additions & 0 deletions src/Requests/CreateOrderRequest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?php
/**
* This code is licensed under the MIT License.
*
* Copyright (c) 2018-2020 Alexey Kopytko <alexey@kopytko.com> and contributors
* Copyright (c) 2018 Appwilio (http://appwilio.com), greabock (https://github.com/greabock), JhaoDa (https://github.com/jhaoda)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/

declare(strict_types=1);

namespace YDeliverySDK\Requests;

use CommonSDK\Concerns\RequestCore;
use YDeliverySDK\Requests\Templates\OrderRequest;

/**
* CreateOrderRequest.
*
* @see https://yandex.ru/dev/delivery-3/doc/dg/reference/post-orders.html
*/
final class CreateOrderRequest extends OrderRequest
{
use RequestCore;

private const METHOD = 'POST';
private const ADDRESS = '/orders';
}
79 changes: 79 additions & 0 deletions src/Requests/Templates/OrderRequest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
<?php
/**
* This code is licensed under the MIT License.
*
* Copyright (c) 2018-2020 Alexey Kopytko <alexey@kopytko.com> and contributors
* Copyright (c) 2018 Appwilio (http://appwilio.com), greabock (https://github.com/greabock), JhaoDa (https://github.com/jhaoda)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/

declare(strict_types=1);

namespace YDeliverySDK\Requests\Templates;

use CommonSDK\Concerns\ObjectPropertyRead;
use CommonSDK\Concerns\PropertyWrite;
use CommonSDK\Contracts\JsonRequest;
use JMS\Serializer\Annotation as JMS;
use YDeliverySDK\Responses\OrderResponse;

/**
* Основа для методов создания или изменения заказов.
*
* @property-write int $senderId
* @property-write string $externalId
* @property-write string $comment
* @property-write string $deliveryType Тип доставки (COURIER — курьером, PICKUP — в пункт выдачи, POST — на почту).
*/
abstract class OrderRequest implements JsonRequest
{
use PropertyWrite;
use ObjectPropertyRead;

protected const RESPONSE = OrderResponse::class;

/**
* @JMS\Type("int")
*
* @var int
*/
protected $senderId;

/**
* @JMS\Type("string")
*
* @var string
*/
protected $externalId;

/**
* @JMS\Type("string")
*
* @var string
*/
protected $comment;

/**
* @JMS\Type("string")
*
* @var string
*/
protected $deliveryType;
}
52 changes: 52 additions & 0 deletions src/Responses/OrderResponse.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<?php
/**
* This code is licensed under the MIT License.
*
* Copyright (c) 2018-2020 Alexey Kopytko <alexey@kopytko.com> and contributors
* Copyright (c) 2018 Appwilio (http://appwilio.com), greabock (https://github.com/greabock), JhaoDa (https://github.com/jhaoda)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/

declare(strict_types=1);

namespace YDeliverySDK\Responses;

use CommonSDK\Concerns\PropertyRead;
use CommonSDK\Concerns\SuccessfulResponse;
use CommonSDK\Contracts\Response;
use JMS\Serializer\Annotation as JMS;

/**
* OrderResponse.
*
* @property-read int $id
*/
final class OrderResponse implements Response
{
use PropertyRead;
use SuccessfulResponse;

/**
* @JMS\Type("int")
*
* @var int
*/
private $id;
}

0 comments on commit 154d3a0

Please sign in to comment.