mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
108 lines
3.7 KiB
PHP
108 lines
3.7 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* Invoice Ninja (https://invoiceninja.com).
|
||
|
*
|
||
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
||
|
*
|
||
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
||
|
*
|
||
|
* @license https://www.elastic.co/licensing/elastic-license
|
||
|
*/
|
||
|
|
||
|
namespace App\Http\Controllers\InAppPurchase;
|
||
|
|
||
|
use App\Http\Controllers\BaseController;
|
||
|
use Illuminate\Http\Request;
|
||
|
|
||
|
/**
|
||
|
* Class AppleController.
|
||
|
*/
|
||
|
class AppleController extends BaseController
|
||
|
{
|
||
|
|
||
|
public function __construct()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Process Apple Purchase Confirmation Webhook.
|
||
|
*
|
||
|
*
|
||
|
* @OA\Post(
|
||
|
* path="/api/v1/apple/confirm_purchase",
|
||
|
* operationId="confirmApplePurchase",
|
||
|
* tags={"postmark"},
|
||
|
* summary="Processing webhooks from Apple for in app purchases",
|
||
|
* description="Adds an credit to the system",
|
||
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
||
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
||
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
||
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
||
|
* @OA\Response(
|
||
|
* response=200,
|
||
|
* description="Returns the saved credit object",
|
||
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
||
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
||
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit")
|
||
|
* ),
|
||
|
* @OA\Response(
|
||
|
* response=422,
|
||
|
* description="Validation error",
|
||
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
||
|
*
|
||
|
* ),
|
||
|
* @OA\Response(
|
||
|
* response="default",
|
||
|
* description="Unexpected Error",
|
||
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
||
|
* ),
|
||
|
* )
|
||
|
*/
|
||
|
public function confirm_purchase(Request $request)
|
||
|
{
|
||
|
|
||
|
//store transaction_id in accounts table for future reference.
|
||
|
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Process Apple Purchase Confirmation Webhook.
|
||
|
*
|
||
|
*
|
||
|
* @OA\Post(
|
||
|
* path="/api/v1/apple/process_webhook",
|
||
|
* operationId="processAppleWebhook",
|
||
|
* tags={"postmark"},
|
||
|
* summary="Processing event webhooks from Apple for in purchase / subscription status update",
|
||
|
* description="Adds an credit to the system",
|
||
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
||
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
|
||
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
||
|
* @OA\Parameter(ref="#/components/parameters/include"),
|
||
|
* @OA\Response(
|
||
|
* response=200,
|
||
|
* description="Returns the saved credit object",
|
||
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
||
|
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
|
||
|
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit")
|
||
|
* ),
|
||
|
* @OA\Response(
|
||
|
* response=422,
|
||
|
* description="Validation error",
|
||
|
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
|
||
|
*
|
||
|
* ),
|
||
|
* @OA\Response(
|
||
|
* response="default",
|
||
|
* description="Unexpected Error",
|
||
|
* @OA\JsonContent(ref="#/components/schemas/Error"),
|
||
|
* ),
|
||
|
* )
|
||
|
*/
|
||
|
public function process_webhook(Request $request)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|