Refactor Admin Panel with more features (#384)
Co-authored-by: Julien Nahum <julien@nahum.net>
This commit is contained in:
155
app/Http/Controllers/Admin/AdminController.php
Normal file
155
app/Http/Controllers/Admin/AdminController.php
Normal file
@@ -0,0 +1,155 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Models\Forms\Form;
|
||||
use App\Models\User;
|
||||
use Illuminate\Http\Request;
|
||||
use Laravel\Cashier\Cashier;
|
||||
|
||||
class AdminController extends Controller
|
||||
{
|
||||
public const ADMIN_LOG_PREFIX = '[admin_action] ';
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('moderator');
|
||||
}
|
||||
|
||||
public function fetchUser($identifier)
|
||||
{
|
||||
$user = null;
|
||||
if (is_numeric($identifier)) {
|
||||
$user = User::find($identifier);
|
||||
} elseif (filter_var($identifier, FILTER_VALIDATE_EMAIL)) {
|
||||
$user = User::whereEmail($identifier)->first();
|
||||
} else {
|
||||
// Find by form slug
|
||||
$form = Form::whereSlug($identifier)->first();
|
||||
if ($form) {
|
||||
$user = $form->creator;
|
||||
}
|
||||
}
|
||||
|
||||
if (!$user) {
|
||||
return $this->error([
|
||||
'message' => 'User not found.'
|
||||
]);
|
||||
} elseif ($user->admin) {
|
||||
return $this->error([
|
||||
'message' => 'You cannot fetch an admin.'
|
||||
]);
|
||||
}
|
||||
|
||||
return $this->success([
|
||||
'user' => $user
|
||||
]);
|
||||
}
|
||||
|
||||
public function applyDiscount(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required'
|
||||
]);
|
||||
$user = User::find($request->get("user_id"));
|
||||
|
||||
$activeSubscriptions = $user->subscriptions()->where(function ($q) {
|
||||
$q->where('stripe_status', 'trialing')
|
||||
->orWhere('stripe_status', 'active');
|
||||
})->get();
|
||||
|
||||
if ($activeSubscriptions->count() != 1) {
|
||||
return $this->error([
|
||||
"message" => "The user has more than one active subscriptions or doesn't have one."
|
||||
]);
|
||||
}
|
||||
|
||||
$couponId = config('pricing.discount_coupon_id');
|
||||
if (is_null($couponId)) {
|
||||
return $this->error([
|
||||
"message" => "Coupon id not defined."
|
||||
]);
|
||||
}
|
||||
|
||||
$subscription = $activeSubscriptions->first();
|
||||
Cashier::stripe()->subscriptions->update($subscription->stripe_id, [
|
||||
'coupon' => $couponId
|
||||
]);
|
||||
|
||||
\Log::warning(self::ADMIN_LOG_PREFIX . 'Applying NGO/Student discount to sub', [
|
||||
'user_id' => $user->id,
|
||||
'subcription_id' => $subscription->id,
|
||||
'coupon_id' => $couponId,
|
||||
'subscription_stripe_id' => $subscription->stripe_id,
|
||||
'moderator_id' => auth()->id(),
|
||||
]);
|
||||
|
||||
return $this->success([
|
||||
"message" => "40% Discount applied for the next 12 months."
|
||||
]);
|
||||
}
|
||||
|
||||
public function extendTrial(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required',
|
||||
'number_of_day' => 'required|numeric|max:14'
|
||||
]);
|
||||
$user = User::find($request->get("user_id"));
|
||||
|
||||
$subscription = $user->subscriptions()
|
||||
->where('stripe_status', 'trialing')
|
||||
->firstOrFail();
|
||||
|
||||
$trialEndDate = now()->addDays($request->get('number_of_day'));
|
||||
$subscription->extendTrial($trialEndDate);
|
||||
|
||||
\Log::warning(self::ADMIN_LOG_PREFIX . 'Trial extended', [
|
||||
'user_id' => $user->id,
|
||||
'subcription_id' => $subscription->id,
|
||||
'nb_days' => $request->get('number_of_day'),
|
||||
'subscription_stripe_id' => $subscription->stripe_id,
|
||||
'moderator_id' => auth()->id(),
|
||||
]);
|
||||
|
||||
return $this->success([
|
||||
"message" => "Subscription trial extend until the " . $trialEndDate->format('d/m/Y')
|
||||
]);
|
||||
}
|
||||
|
||||
public function cancelSubscription(Request $request)
|
||||
{
|
||||
$request->validate([
|
||||
'user_id' => 'required',
|
||||
'cancellation_reason' => 'required'
|
||||
]);
|
||||
$user = User::find($request->get("user_id"));
|
||||
|
||||
$activeSubscriptions = $user->subscriptions()->where(function ($q) {
|
||||
$q->where('stripe_status', 'trialing')
|
||||
->orWhere('stripe_status', 'active');
|
||||
})->get();
|
||||
|
||||
if ($activeSubscriptions->count() != 1) {
|
||||
return $this->error([
|
||||
"message" => "The user has more than one active subscriptions or doesn't have one."
|
||||
]);
|
||||
}
|
||||
|
||||
$subscription = $activeSubscriptions->first();
|
||||
$subscription->cancel();
|
||||
|
||||
\Log::warning(self::ADMIN_LOG_PREFIX . 'Cancel Subscription', [
|
||||
'user_id' => $user->id,
|
||||
'cancel_reason' => $request->get('cancellation_reason'),
|
||||
'moderator_id' => auth()->id(),
|
||||
'subcription_id' => $subscription->id,
|
||||
'subscription_stripe_id' => $subscription->stripe_id
|
||||
]);
|
||||
|
||||
return $this->success([
|
||||
"message" => "The subscription cancellation has been successfully completed."
|
||||
]);
|
||||
}
|
||||
}
|
||||
@@ -3,7 +3,6 @@
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Models\Forms\Form;
|
||||
use App\Models\User;
|
||||
|
||||
class ImpersonationController extends Controller
|
||||
@@ -13,22 +12,10 @@ class ImpersonationController extends Controller
|
||||
$this->middleware('moderator');
|
||||
}
|
||||
|
||||
public function impersonate($identifier)
|
||||
public function impersonate($userId)
|
||||
{
|
||||
$user = null;
|
||||
if (is_numeric($identifier)) {
|
||||
$user = User::find($identifier);
|
||||
} elseif (filter_var($identifier, FILTER_VALIDATE_EMAIL)) {
|
||||
$user = User::whereEmail($identifier)->first();
|
||||
} else {
|
||||
// Find by form slug
|
||||
$form = Form::whereSlug($identifier)->first();
|
||||
if ($form) {
|
||||
$user = $form->creator;
|
||||
}
|
||||
}
|
||||
|
||||
if (! $user) {
|
||||
$user = User::find($userId);
|
||||
if (!$user) {
|
||||
return $this->error([
|
||||
'message' => 'User not found.',
|
||||
]);
|
||||
@@ -38,7 +25,7 @@ class ImpersonationController extends Controller
|
||||
]);
|
||||
}
|
||||
|
||||
\Log::warning('Impersonation started', [
|
||||
\Log::warning(AdminController::ADMIN_LOG_PREFIX . 'Impersonation started', [
|
||||
'from_id' => auth()->id(),
|
||||
'from_email' => auth()->user()->email,
|
||||
'target_id' => $user->id,
|
||||
|
||||
Reference in New Issue
Block a user