apigee_m10n-8.x-1.7/modules/apigee_m10n_add_credit/src/Form/ConfirmUpdateForm.php
modules/apigee_m10n_add_credit/src/Form/ConfirmUpdateForm.php
<?php
/**
* Copyright 2021 Google Inc.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
namespace Drupal\apigee_m10n_add_credit\Form;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Form\ConfirmFormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Messenger\MessengerInterface;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Url;
use Drupal\apigee_m10n\MonetizationInterface;
use Drupal\user\Entity\User;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Defines a confirmation form to confirm updating of developer billing type.
*/
class ConfirmUpdateForm extends ConfirmFormBase {
/**
* The user from route.
*
* @var \Drupal\user\UserInterface
*/
protected $user;
/**
* The current route match.
*
* @var \Drupal\Core\Routing\RouteMatchInterface
*/
protected $routeMatch;
/**
* Messenger service.
*
* @var \Drupal\Core\Messenger\MessengerInterface
*/
protected $messenger;
/**
* The Monetization base.
*
* @var \Drupal\apigee_m10n\MonetizationInterface
*/
protected $monetization;
/**
* The user id from route.
*
* @var string
*/
protected $userId;
/**
* The billingtype selected.
*
* @var string
*/
protected $billingtype_selected;
/**
* Constructs a Confirmation object.
*
* @param \Drupal\Core\Messenger\MessengerInterface $messenger
* Messenger service.
* @param \Drupal\Core\Routing\RouteMatchInterface $routeMatch
* The current route match.
* @param \Drupal\apigee_m10n\MonetizationInterface $monetization
* Monetization base.
*/
public function __construct(MessengerInterface $messenger, RouteMatchInterface $routeMatch, MonetizationInterface $monetization) {
$this->messenger = $messenger;
$this->routeMatch = $routeMatch;
$this->monetization = $monetization;
$this->userId = $routeMatch->getParameter('user');
$this->user = User::load($this->userId);
$this->billingtype_selected = $routeMatch->getParameter('billingtype');
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static(
$container->get('messenger'),
$container->get('current_route_match'),
$container->get('apigee_m10n.monetization')
);
}
/**
* Checks current users access to Billing Profile page.
*
* @param \Drupal\Core\Routing\RouteMatchInterface $route_match
* The current route match.
* @param \Drupal\Core\Session\AccountInterface $account
* Run access checks for this account.
*
* @return \Drupal\Core\Access\AccessResult
* Grants access to the route if passed permissions are present.
*/
public function access(RouteMatchInterface $route_match, AccountInterface $account) {
return AccessResult::allowedIf(
$account->hasPermission('update any billing type')
);
}
/**
* {@inheritdoc}
*/
public function buildForm(array $form, FormStateInterface $form_state) {
$form = parent::buildForm($form, $form_state);
return $form;
}
/**
* {@inheritdoc}
*/
public function submitForm(array &$form, FormStateInterface $form_state) {
try {
$developer_billing_type = $this->monetization->updateBillingtype($this->user->getEmail(), strtoupper($this->billingtype_selected));
$this->messenger->addStatus($this->t('Billing type of the user is saved.'));
$form_state->setRedirect('entity.user.edit_form', ['user' => $this->user->id()]);
drupal_flush_all_caches();
}
catch (\Exception $e) {
$this->messenger->addError($e->getMessage());
}
}
/**
* {@inheritdoc}
*/
public function getFormId() : string {
return "confirm_change_billing_type_form";
}
/**
* {@inheritdoc}
*/
public function getCancelUrl() {
return new Url('apigee_m10n_add_credit.userbillingtype', ['user' => $this->userId]);
}
/**
* {@inheritdoc}
*/
public function getQuestion() {
return $this->t('Are you sure you want to change the billing type for user- %email?', ['%email' => $this->user->getEmail()]);
}
/**
* {@inheritdoc}
*/
public function getDescription() {
// Fetch the billing type of the developer.
$original = $this->monetization->getBillingtype($this->user);
if ('prepaid' == strtolower($original) && 'postpaid' == strtolower($this->billingtype_selected)) {
return $this->t('If the developer billing type is changed from "prepaid" to "postpaid," any existing prepaid balance will be treated as a credit transaction when calculating amounts due.');
}
elseif (('postpaid' == strtolower($original) || !($original))&& 'prepaid' == strtolower($this->billingtype_selected)) {
return $this->t('If the developer billing type is changed from "postpaid" to "prepaid," developers should perform a balance top-up to ensure that API calls are not blocked due to an insufficient balance.');
}
elseif (!($original) && 'postpaid' == strtolower($this->billingtype_selected)) {
return $this->t('The billing type will to switched to Postpaid.');
}
}
}
