<?php
namespace App\Http\Controllers\Admin;
use Exception;
use App\Models\User;
use App\Models\UserWallet;
use App\Models\UserMailLog;
use Illuminate\Support\Arr;
use App\Models\UserLoginLog;
use Illuminate\Http\Request;
use App\Constants\GlobalConst;
use App\Http\Helpers\Response;
use Illuminate\Support\Facades\DB;
use App\Http\Controllers\Controller;
use App\Notifications\User\SendMail;
use Illuminate\Support\Facades\Auth;
use App\Constants\PaymentGatewayConst;
use App\Models\Card;
use Illuminate\Support\Facades\Validator;
use Illuminate\Support\Facades\Notification;
use App\Notifications\User\MessageNotification;
class UserCareController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$page_title = "All Users";
$users = User::orderBy('id', 'desc')->paginate(12);
return view('admin.sections.user-care.index', compact(
'page_title',
'users'
));
}
/**
* Display Active Users
* @return view
*/
public function active()
{
$page_title = "Active Users";
$users = User::active()->orderBy('id', 'desc')->paginate(12);
return view('admin.sections.user-care.index', compact(
'page_title',
'users'
));
}
/**
* Display Banned Users
* @return view
*/
public function banned()
{
$page_title = "Banned Users";
$users = User::banned()->orderBy('id', 'desc')->paginate(12);
return view('admin.sections.user-care.index', compact(
'page_title',
'users',
));
}
/**
* Display Email Unverified Users
* @return view
*/
public function emailUnverified()
{
$page_title = "Email Unverified Users";
$users = User::active()->orderBy('id', 'desc')->emailUnverified()->paginate(12);
return view('admin.sections.user-care.index', compact(
'page_title',
'users'
));
}
/**
* Display SMS Unverified Users
* @return view
*/
public function SmsUnverified()
{
$page_title = "SMS Unverified Users";
return view('admin.sections.user-care.index', compact(
'page_title',
));
}
/**
* Display KYC Unverified Users
* @return view
*/
public function KycUnverified()
{
$page_title = "KYC Unverified Users";
$users = User::kycUnverified()->orderBy('id', 'desc')->paginate(8);
return view('admin.sections.user-care.index', compact(
'page_title',
'users'
));
}
/**
* Display Send Email to All Users View
* @return view
*/
public function emailAllUsers()
{
$page_title = "Email To Users";
return view('admin.sections.user-care.email-to-users', compact(
'page_title',
));
}
/**
* Display Specific User Information
* @return view
*/
public function userDetails($username)
{
$page_title = "User Details";
$user = User::with(['merchant_api_keys','merchant_details','wallet'])->where('username', $username)->first();
if(!$user) return back()->with(['error' => ['Opps! User not exists']]);
$card_payments = Card::where('user_id',$user->id)->count();
return view('admin.sections.user-care.details', compact(
'page_title',
'user',
'card_payments'
));
}
public function sendMailUsers(Request $request) {
$request->validate([
'user_type' => "required|string|max:30",
'subject' => "required|string|max:250",
'message' => "required|string|max:2000",
]);
$users = [];
switch($request->user_type) {
case "active";
$users = User::active()->get();
break;
case "all";
$users = User::get();
break;
case "email_verified";
$users = User::emailVerified()->get();
break;
case "kyc_verified";
$users = User::kycVerified()->get();
break;
case "banned";
$users = User::banned()->get();
break;
}
try{
Notification::send($users,new SendMail((object) $request->all()));
}catch(Exception $e) {
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['Email successfully sended']]);
}
public function sendMail(Request $request, $username)
{
$request->merge(['username' => $username]);
$validator = Validator::make($request->all(),[
'subject' => 'required|string|max:200',
'message' => 'required|string|max:2000',
'username' => 'required|string|exists:users,username',
]);
if($validator->fails()) {
return back()->withErrors($validator)->withInput()->with("modal","email-send");
}
$validated = $validator->validate();
$user = User::where("username",$username)->first();
$validated['user_id'] = $user->id;
$validated = Arr::except($validated,['username']);
$validated['method'] = "SMTP";
try{
UserMailLog::create($validated);
$user->notify(new SendMail((object) $validated));
}catch(Exception $e) {
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['Mail successfully sended']]);
}
public function userDetailsUpdate(Request $request, $username)
{
$request->merge(['username' => $username]);
$validator = Validator::make($request->all(),[
'username' => "required|exists:users,username",
'firstname' => "required|string|max:60",
'lastname' => "required|string|max:60",
'mobile' => "nullable|string|max:20",
'address' => "nullable|string|max:250",
'country' => "nullable|string|max:50",
'state' => "nullable|string|max:50",
'city' => "nullable|string|max:50",
'zip_code' => "nullable|string",
'email_verified' => 'required|boolean',
'two_factor_status' => 'required|boolean',
'kyc_verified' => 'required|boolean',
'status' => 'required|boolean',
]);
$validated = $validator->validate();
$validated['address'] = [
'country' => $validated['country'] ?? "",
'state' => $validated['state'] ?? "",
'city' => $validated['city'] ?? "",
'zip' => $validated['zip_code'] ?? "",
'address' => $validated['address'] ?? "",
];
if($validated['mobile'] == ''){
$validated['full_mobile'] = null;
}else{
$validated['full_mobile'] = remove_speacial_char($validated['mobile']);
}
$user = User::where('username', $username)->first();
if(!$user) return back()->with(['error' => ['Opps! User not exists']]);
try {
$user->update($validated);
} catch (Exception $e) {
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['Profile Information Updated Successfully!']]);
}
public function loginLogs($username)
{
$page_title = "Login Logs";
$user = User::where("username",$username)->first();
if(!$user) return back()->with(['error' => ['Opps! User doesn\'t exists']]);
$logs = UserLoginLog::where('user_id',$user->id)->paginate(12);
return view('admin.sections.user-care.login-logs', compact(
'logs',
'page_title',
));
}
public function mailLogs($username) {
$page_title = "User Email Logs";
$user = User::where("username",$username)->first();
if(!$user) return back()->with(['error' => ['Opps! User doesn\'t exists']]);
$logs = UserMailLog::where("user_id",$user->id)->paginate(12);
return view('admin.sections.user-care.mail-logs',compact(
'page_title',
'logs',
));
}
public function loginAsMember(Request $request,$username) {
$request->merge(['username' => $username]);
$request->validate([
'target' => 'required|string|exists:users,username',
'username' => 'required_without:target|string|exists:users',
]);
try{
$user = User::where("username",$request->username)->first();
Auth::guard("web")->login($user);
}catch(Exception $e) {
return back()->with(['error' => [$e->getMessage()]]);
}
return redirect()->intended(route('user.dashboard'));
}
public function kycDetails($username) {
$user = User::where("username",$username)->first();
if(!$user) return back()->with(['error' => ['Opps! User doesn\'t exists']]);
$page_title = "KYC Profile";
return view('admin.sections.user-care.kyc-details',compact("page_title","user"));
}
public function kycApprove(Request $request, $username) {
$request->merge(['username' => $username]);
$request->validate([
'target' => "required|exists:users,username",
'username' => "required_without:target|exists:users,username",
]);
$user = User::where('username',$request->target)->orWhere('username',$request->username)->first();
if($user->kyc_verified == GlobalConst::VERIFIED) return back()->with(['warning' => ['User already KYC verified']]);
if($user->kyc == null) return back()->with(['error' => ['User KYC information not found']]);
try{
$user->update([
'kyc_verified' => GlobalConst::APPROVED,
]);
}catch(Exception $e) {
$user->update([
'kyc_verified' => GlobalConst::PENDING,
]);
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['User KYC successfully approved']]);
}
public function kycReject(Request $request, $username) {
$request->validate([
'target' => "required|exists:users,username",
'reason' => "required|string|max:500"
]);
$user = User::where("username",$request->target)->first();
if(!$user) return back()->with(['error' => ['User doesn\'t exists']]);
if($user->kyc == null) return back()->with(['error' => ['User KYC information not found']]);
try{
$user->update([
'kyc_verified' => GlobalConst::REJECTED,
]);
$user->kyc->update([
'reject_reason' => $request->reason,
]);
}catch(Exception $e) {
$user->update([
'kyc_verified' => GlobalConst::PENDING,
]);
$user->kyc->update([
'reject_reason' => null,
]);
return back()->with(['error' => ['Something went worng! Please try again.']]);
}
return back()->with(['success' => ['User KYC information is rejected']]);
}
public function search(Request $request) {
$validator = Validator::make($request->all(),[
'text' => 'required|string',
]);
if($validator->fails()) {
$error = ['error' => $validator->errors()];
return Response::error($error,null,400);
}
$validated = $validator->validate();
$users = User::search($validated['text'])->limit(10)->get();
return view('admin.components.search.user-search',compact(
'users',
));
}
/**
* Method for update user wallet balance
*/
public function walletBalanceUpdate(Request $request,$username) {
$validator = Validator::make($request->all(),[
'type' => "required|string|in:add,subtract",
'wallet' => "required|numeric|exists:user_wallets,id",
'amount' => "required|numeric",
'remark' => "nullable|string|max:200",
]);
if($validator->fails()) {
return back()->withErrors($validator)->withInput()->with('modal','wallet-balance-update-modal');
}
$validated = $validator->validate();
$user_wallet = UserWallet::whereHas('user',function($q) use ($username){
$q->where('username',$username);
})->find($validated['wallet']);
if(!$user_wallet) return back()->with(['error' => ['User wallet not found!']]);
DB::beginTransaction();
try{
$user_wallet_balance = 0;
$action_type = "";
switch($validated['type']){
case "add":
$action_type = "Added";
$user_wallet_balance = $user_wallet->balance + $validated['amount'];
DB::table($user_wallet->getTable())->where('id',$user_wallet->id)->increment('balance',$validated['amount']);
break;
case "subtract":
$action_type = "Subtract";
if($user_wallet->balance >= $validated['amount']) {
$user_wallet_balance = $user_wallet->balance - $validated['amount'];
DB::table($user_wallet->getTable())->where('id',$user_wallet->id)->decrement('balance',$validated['amount']);
}else {
return back()->with(['error' => ['User do not have sufficient balance']]);
}
break;
}
DB::table("transactions")->insertGetId([
'type' => PaymentGatewayConst::TYPEADDSUBTRACTBALANCE,
'trx_id' => generate_unique_string("transactions","trx_id",16),
'user_id' => $user_wallet->user->id,
'user_wallet_id' => $user_wallet->id,
'request_amount' => $validated['amount'],
'percent_charge' => 0,
'fixed_charge' => 0,
'total_charge' => 0,
'total_payable' => $validated['amount'],
'available_balance' => $user_wallet_balance,
'request_currency' => $user_wallet->currency->code,
'remark' => $validated['remark'],
'status' => PaymentGatewayConst::STATUSSUCCESS,
'created_at' => now(),
]);
// Send Mail to User
$from_or_to = ($action_type == "Added") ? "to" : "from";
$data['message'] = "Your wallet balance updated by ". auth()->user()->getRolesString() .". " . $action_type . " (" . $validated['amount'] . $user_wallet->currency->code . ") ". $from_or_to . " " . $user_wallet->currency->code . " Wallet Balance";
$user_wallet->user->notify(new MessageNotification($data));
DB::commit();
}catch(Exception $e) {
DB::rollBack();
return back()->with(['error' => ['Transaction failed! '. $e->getMessage()]]);
}
return back()->with(['success' => ['Transaction success']]);
}
}
At NFC Pay, your privacy is of utmost importance to us. This Privacy Policy outlines how we collect, use, share, and protect your personal information when you use our services, including our website and mobile applications.
1. Information We Collect
2. How We Use Your Information
We use the information we collect for the following purposes:
3. Sharing Your Information
We may share your personal information in the following circumstances:
4. Security of Your Information
We take the security of your personal information seriously and implement a variety of security measures, including encryption, secure servers, and access controls, to protect your data from unauthorized access, disclosure, alteration, or destruction. However, no method of transmission over the internet or electronic storage is completely secure, and we cannot guarantee its absolute security.
5. Your Privacy Rights
Depending on your location, you may have certain rights regarding your personal information, such as:
6. Third-Party Links
Our services may contain links to third-party websites or services. We are not responsible for the privacy practices or the content of these third-party sites. We encourage you to review the privacy policies of those third parties.
7. Children’s Privacy
Our services are not intended for individuals under the age of 13. We do not knowingly collect personal information from children under 13. If we become aware that we have collected personal information from a child under 13, we will take steps to delete that information.
8. Changes to This Privacy Policy
We may update this Privacy Policy from time to time to reflect changes in our practices or for other operational, legal, or regulatory reasons. We will notify you of any significant changes by posting the new Privacy Policy on our website and updating the effective date.
9. Contact Us
If you have any questions or concerns about this Privacy Policy or our data practices, please contact us at:
Email: support@nfcpay.com