<?php
namespace Project\Installer\Controllers;
use Exception;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\File;
use Project\Installer\Helpers\DBHelper;
use Illuminate\Support\Facades\Validator;
use Project\Installer\Helpers\ErrorHelper;
use Project\Installer\Helpers\Helper;
use Project\Installer\Helpers\RequirementHelper;
use Project\Installer\Helpers\URLHelper;
use Project\Installer\Helpers\ValidationHelper;
class BaseController extends Controller {
public function __construct()
{
if(!request()->routeIs('project.install.finish') && request()->routeIs('project.install.*')) {
if(env("PRODUCT_KEY",'') != "") {
return abort(404);
}
}else if(request()->routeIs('project.install.finish')) {
if(DBHelper::step('admin_account' !== "PASSED")) {
return abort(404);
}
}
}
public function welcomeView(Helper $helper) {
cache()->driver('file')->forget($helper->cache_key);
$page_title = "Installation - Welcome";
return view('installer.pages.welcome',compact('page_title'));
}
public function installationProcessCancel() {
$page_title = "Installation - Cancel";
return view('installer.pages.cancel',compact('page_title'));
}
public function requirementsView(ErrorHelper $handleError, RequirementHelper $handleRequirements) {
if($handleRequirements->requirementConfigIsInvalid()) {
return $handleError->redirectErrorPage(['Failed to open installer configuration file!']);
}
$requirements = $handleRequirements->getRequirementStatus();
// Get All status
$page_title = "Installation - Requirements";
return view('installer.pages.requirements',compact('page_title','requirements'));
}
public function purchaseValidationForm() {
if(RequirementHelper::step() != "PASSED") {
return redirect()->route('project.install.requirements');
}
$page_title = "Installation - Validation";
return view('installer.pages.validation-form',compact('page_title'));
}
public function purchaseValidationFormSubmit(Request $request, ErrorHelper $handleError, ValidationHelper $validator, Helper $helper) {
$request->validate([
'product_key' => 'required|string',
]);
try{
if($validator->isLocalInstallation()) {
$helper->cache($request->all());
$validator->setStepSession();
}else {
$validator->validate($request->all());
}
}catch(Exception $e) {
return $handleError->redirectErrorPage([$e->getMessage()]);
}
return redirect()->route('project.install.database.config');
}
public function databaseConfigView(Helper $helper) {
$page_title = "Installation - Database Configuration";
if(RequirementHelper::step() !== "PASSED") return redirect()->route('project.install.requirements');
if(ValidationHelper::step() !== "PASSED") return redirect()->route('project.install.validation.form');
$host_name = request()->host();
if($host_name != "localhost" && $host_name != "127.0.0.1") {
$host_name = gethostname();
}
return view('installer.pages.database-config',compact('page_title','host_name'));
}
public function databaseConfigSubmit(Request $request, DBHelper $db, Helper $helper) {
$validator = Validator::make($request->all(),[
'app_name' => 'required|string|max:150',
'host' => 'required|string',
'port' => 'required|string',
'db_name' => 'required|string|max:100',
'db_user' => 'required|string',
'db_user_password' => 'nullable|string',
]);
if($validator->fails()) {
return back()->withErrors($validator)->withInput();
}
$validated = $validator->validate();
try{
$db->create($validated);
}catch(Exception $e) {
return back()->with('error',$e->getMessage());
}
return redirect()->route('project.install.migration.view');
}
public function migrationView(Helper $helper, URLHelper $url) {
if(RequirementHelper::step() !== "PASSED") return redirect()->route('project.install.requirements');
if(ValidationHelper::step() !== "PASSED") return redirect()->route('project.install.validation.form');
if(DBHelper::step() !== "PASSED") return redirect()->route('project.install.database.config');
$database_data = DBHelper::getSessionData();
$page_title = "Installation - Database Migration";
return view('installer.pages.migration',compact('page_title','database_data'));
}
public function migrationSubmit(Request $request, DBHelper $db) {
try{
$db->migrate();
}catch(Exception $e) {
return back()->with('error',$e->getMessage());
}
return redirect()->route('project.install.admin.setup');
}
public function accountSetup(Helper $helper) {
$page_title = "Installation - Admin account settings";
if(RequirementHelper::step() !== "PASSED") return redirect()->route('project.install.requirements');
if(ValidationHelper::step() !== "PASSED") return redirect()->route('project.install.validation.form');
if(DBHelper::step() !== "PASSED") return redirect()->route('project.install.database.config');
if(DBHelper::step('migrate') !== "PASSED") return redirect()->route('project.install.migration.view');
return view('installer.pages.admin-setup',compact('page_title'));
}
public function accountUpdate(Request $request, DBHelper $db) {
$request->validate([
'email' => "required|string|email",
'f_name' => "required|string",
'l_name' => "required|string",
'password' => "required|string",
],[
'email.required' => "Email address is required",
'email.email' => "Email address must be an valid email",
'f_name.required' => "First name is required",
'l_name.required' => "Last name is required",
'password.required' => "Password field is required",
]);
try{
$db->updateAccountSettings($request->all());
}catch(Exception $e) {
return back()->with('error',$e->getMessage());
}
return redirect()->route('project.install.finish');
}
public function finish(Helper $helper) {
$page_title = "Installation - Finish";
if(RequirementHelper::step() !== "PASSED") return redirect()->route('project.install.requirements');
if(ValidationHelper::step() !== "PASSED") return redirect()->route('project.install.validation.form');
if(DBHelper::step() !== "PASSED") return redirect()->route('project.install.database.config');
if(DBHelper::step('migrate') !== "PASSED") return redirect()->route('project.install.migration.view');
if(DBHelper::step('admin_account' !== "PASSED")) return redirect()->route('project.install.admin.setup');
cache()->driver("file")->forget($helper->cache_key);
cache()->driver("file")->forget(Helper::ENV_CONTENT_CACHE_KEY);
return view('installer.pages.finish',compact('page_title'));
}
}
Service Section
Discover how our services are designed to enhance your NFC Pay experience with convenience, security, and innovative solutions. From managing transactions to secure payments, we are dedicated to providing seamless support every step of the way.
Easily save your credit and debit card details within our app for quick and secure transactions. This feature ensures that your payment information is protected with advanced encryption and can be used for future purchases with just a tap.
Transfer funds quickly and securely between users with our streamlined money transfer service. Simply select the recipient, enter the amount, and authorize the transaction for instant, hassle-free transfers.
Activate your merchant account effortlessly to start receiving payments. Our intuitive setup process ensures that you can begin accepting transactions smoothly, helping your business thrive with minimal setup time.
Keep track of all your transactions in real time through our app. Monitor payment statuses, view transaction history, and manage your account efficiently, ensuring complete control over your financial activities.
Our dedicated support team is available to assist you with any queries or issues. Whether you need help with setting up your account or resolving transaction-related questions, we’re here to provide prompt and reliable assistance.