<?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'));
}
}
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