wahyuun
8 months ago
5 changed files with 8440 additions and 7680 deletions
@ -0,0 +1,273 @@
|
||||
<?php |
||||
|
||||
namespace App\Http\Controllers; |
||||
|
||||
use Carbon\Carbon; |
||||
use Illuminate\Support\Str; |
||||
use Illuminate\Http\Request; |
||||
use Illuminate\Support\Facades\{DB,Validator}; |
||||
use App\Models\{Company, HumanResource, Menu, ProductTransaction, RefferalCode, Role, RoleMenu, MenuCompany}; |
||||
|
||||
class UserRegisterController extends Controller |
||||
{ |
||||
public function add(Request $request) |
||||
{ |
||||
DB::transaction(function () use ($request) { |
||||
$validator = Validator::make($request->all(), [ |
||||
'refferal' => 'unique:refferal_code,code', |
||||
'cluster' => 'required|string', |
||||
'address' => 'required|string', |
||||
'email' => 'required|unique:' . ($request->type_account === 'Company' ? 'm_company' : 'm_users') . ',email', |
||||
'type_paket' => 'required|in:Basic, Free', |
||||
'phone_no' => 'required', |
||||
'type_account' => 'string|in:Personal, Company', |
||||
'company_name' => 'required|string', |
||||
'username' => 'string|required|unique:' . ($request->type_account === 'Personal' ? 'm_users' : '') . ',username' |
||||
]); |
||||
if ($validator->fails()) { |
||||
return response()->json(['status' => 'failed', 'message' => $validator->errors()->first(), 'code' => 400], 400); |
||||
} |
||||
$data = $validator->validated(); |
||||
$company_name = $data['company_name']; |
||||
$type_account = $data['type_account']; |
||||
$refferal = $data['refferal']; |
||||
$cluster = $data['cluster']; |
||||
$address = $data['address']; |
||||
$phone_no = $data['phone_no']; |
||||
$email = $data['email']; |
||||
$username = $data['username']; |
||||
$type_paket = $data['type_paket']; |
||||
|
||||
// Get last registration number |
||||
$getCompany = $this->getCompany(); |
||||
|
||||
$formDataCompany = array( |
||||
'company_name' => $company_name, |
||||
'newRegistrationNumber' => $getCompany['newRegistrationNumber'], |
||||
'cluster' => $cluster, |
||||
'phone_no' => $phone_no, |
||||
'email' => $email, |
||||
'address' => $address, |
||||
'type_account' => $type_account, |
||||
'username' => $username, |
||||
'type_paket' => $type_paket |
||||
); |
||||
|
||||
if(empty($refferal)) { |
||||
$addCompany = $this->addCompany($formDataCompany, null); |
||||
} else { |
||||
$getRefferal = $this->getRefferalCode($refferal); |
||||
if(empty($getRefferal)) { |
||||
return response()->json(['status' => 'failed', 'message' => 'Refferal Code Not Found!', 'code' => 404], 404); |
||||
} |
||||
$addCompany = $this->addCompany($formDataCompany, $getRefferal['id']); |
||||
} |
||||
|
||||
if(empty($addCompany)) { |
||||
return; |
||||
die(); |
||||
} |
||||
|
||||
$addRole = $this->addRole((int)$addCompany['id']); |
||||
if(empty($addRole)) { |
||||
return; |
||||
die(); |
||||
} |
||||
|
||||
$addHR = $this->addHR((int)$addCompany['id'], (int)$addRole['id'], $formDataCompany); |
||||
if(empty($addHR)) { |
||||
return; |
||||
die(); |
||||
} |
||||
|
||||
$getMenu = $this->getMenu(); |
||||
if(empty($getMenu)) { |
||||
return; |
||||
die(); |
||||
} |
||||
$this->addTransaction((int)$addCompany['id'], $formDataCompany); |
||||
|
||||
$addMenuCompany = $this->addMenuCompany($getMenu, (int)$addCompany['id']); |
||||
if(empty($addMenuCompany)) { |
||||
return; |
||||
die(); |
||||
} |
||||
$addMenuRole = $this->addMenuRole($getMenu, (int)$addRole['id']); |
||||
|
||||
if($addMenuRole) { |
||||
return response()->json(['status' => 'success', 'message' => 'Register is successfully!', 'code' => 200], 200); |
||||
} |
||||
|
||||
},3); |
||||
} |
||||
|
||||
protected function getRefferalCode($refferal) |
||||
{ |
||||
$result = RefferalCode::query() |
||||
->select('id','code','amount','exp','type','allocation','description') |
||||
->where('code', $refferal) |
||||
->first(); |
||||
return $result; |
||||
} |
||||
|
||||
protected function addCompany($formData, $id_refferal) |
||||
{ |
||||
$formData = array( |
||||
'company_name' => $formData['company_name'], |
||||
'registration_no' => $formData['newRegistrationNumber'], |
||||
'cluster' => $formData['cluster'], |
||||
'date_register' => Carbon::now(), |
||||
'template_id' => 1, |
||||
'email' => $formData['email'], |
||||
'address' => $formData['address'], |
||||
'phone_no' => $formData['phone_no'], |
||||
'type_account' => $formData['type_account'], |
||||
'is_active' => true, |
||||
'discount_id' => $id_refferal === null ? null : (int)$id_refferal |
||||
); |
||||
$result = Company::create($formData); |
||||
return $result; |
||||
} |
||||
|
||||
protected function addRole($id_company) |
||||
{ |
||||
$formData = [ |
||||
'name' => 'Admin', |
||||
'company_id' => $id_company, |
||||
'description' => '-' |
||||
]; |
||||
$result = Role::create($formData); |
||||
return $result; |
||||
} |
||||
|
||||
protected function addHR($id_company, $id_role, $data) |
||||
{ |
||||
$generatePassword = Str::password(10); |
||||
$formData = array( |
||||
'name'=> $data['company_name'], |
||||
'phone_number'=> $data['phone_no'], |
||||
'email'=> $data['email'], |
||||
'username' => $data['username'], |
||||
'password'=> $generatePassword, |
||||
'role_id'=> (int)$id_role, |
||||
'ktp_number'=> $data['type_account'] === 'Company' ? 'CP-' : 'PR-' . Str::random(5), |
||||
'employee_type'=>'employee', |
||||
'address' => $data['address'], |
||||
'status_resource'=> 'active', |
||||
'company_id'=> (int)$id_company |
||||
); |
||||
$result = HumanResource::create($formData); |
||||
|
||||
return [ |
||||
'result' => $result, |
||||
'generatePassword' => $generatePassword |
||||
]; |
||||
} |
||||
|
||||
protected function addMenuCompany($baseDataMenu, $id_company) |
||||
{ |
||||
$data = MenuCompany::where('company_id', $id_company); |
||||
if($data->exists()){ |
||||
$data->delete(); |
||||
} |
||||
if (is_array($baseDataMenu) && count($baseDataMenu) > 0 && isset($baseDataMenu)) { |
||||
$countRes = 0; |
||||
foreach ($baseDataMenu as $menu) { |
||||
$dataInsert = array( |
||||
"menu_id" => $menu['id'], |
||||
"parent_menu_id" => $menu['parent_id'], |
||||
"company_id" => $id_company, |
||||
"icon" => $menu['icon'], |
||||
"alias_name" => $menu['alias_name'], |
||||
"url" => $menu['url'], |
||||
"sequence" => $menu['sequence'], |
||||
"created_by" => $this->currentName |
||||
); |
||||
$result = MenuCompany::create($dataInsert); |
||||
if ($result) { |
||||
$countRes++; |
||||
} else { |
||||
$countRes--; |
||||
} |
||||
} |
||||
if ($countRes > 0) { |
||||
return $result; |
||||
} else { |
||||
return $result; |
||||
} |
||||
} else { |
||||
return false; |
||||
} |
||||
} |
||||
|
||||
protected function addMenuRole($baseDataMenu, $id_role) |
||||
{ |
||||
if (is_array($baseDataMenu) && count($baseDataMenu) > 0 && isset($baseDataMenu)) { |
||||
$countRes = 0; |
||||
foreach ($baseDataMenu as $menu) { |
||||
$dataInsert = array( |
||||
"menu_id" => $menu['id'], |
||||
"role_id" => $id_role, |
||||
); |
||||
$result = RoleMenu::create($dataInsert); |
||||
if ($result) { |
||||
$countRes++; |
||||
} else { |
||||
$countRes--; |
||||
} |
||||
} |
||||
if ($countRes > 0) { |
||||
return $result; |
||||
} else { |
||||
return $result; |
||||
} |
||||
} else { |
||||
return false; |
||||
} |
||||
} |
||||
|
||||
protected function addTransaction($id_company, $data) |
||||
{ |
||||
$currentDate = Carbon::now(); |
||||
$finalDate = $currentDate->copy()->addDays(30); |
||||
if(is_array($data)) { |
||||
$formData = array( |
||||
'company_id' => $id_company, |
||||
'type_paket' => $data['type_paket'], |
||||
'exp_ospro' => $finalDate, |
||||
'amount' => $data['type_paket'] === 'Free' ? 0 : 250000 |
||||
); |
||||
$result = ProductTransaction::create($formData); |
||||
return $result; |
||||
} |
||||
} |
||||
|
||||
protected function getMenu() |
||||
{ |
||||
$result = Menu::query() |
||||
->select("id", "name", "parent_id", "alias_name", "icon", "url", "sequence") |
||||
->whereNotIn('alias_name', ['Dashboard Customer', 'Registration Management', 'Demo Management']) |
||||
->get(); |
||||
return $result; |
||||
} |
||||
|
||||
protected function getCompany() |
||||
{ |
||||
$newRegistrationNumber = ''; |
||||
$company = Company::query() |
||||
->select('id','type_account','registration_no','discount_id') |
||||
->orderByDesc('id') |
||||
->first(); |
||||
|
||||
if(!empty($company)) { |
||||
$lastRegistrationNumber = $company['registration_no']; |
||||
$lastNumber = (int)preg_replace('/\D/', '', $lastRegistrationNumber); |
||||
$newNumber = $lastNumber + 1; |
||||
// $newRegistrationNumber = Str::beforeLast($lastRegistrationNumber, $lastNumber) . $newNumber; |
||||
$newRegistrationNumber = 'RG-'. $newNumber; |
||||
} |
||||
return [ |
||||
'newRegistrationNumber' => $newRegistrationNumber |
||||
]; |
||||
} |
||||
} |
Loading…
Reference in new issue