This repository has been archived by the owner on May 21, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
233 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |