77 lines
1.9 KiB
PHP
Executable File
77 lines
1.9 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @api {post} /system/csv-import CSV import
|
|
* @apiVersion 4.1.0
|
|
*
|
|
* @apiName CSV import
|
|
*
|
|
* @apiGroup System
|
|
*
|
|
* @apiDescription This path receives a csv file with a list of users to signup.
|
|
*
|
|
* @apiPermission staff3
|
|
*
|
|
* @apiParam {String} file A csv file with this content format: email, password, name.
|
|
*
|
|
* @apiUse NO_PERMISSION
|
|
* @apiUse INVALID_FILE
|
|
*
|
|
* @apiSuccess {String[]} data Array of errors found
|
|
*
|
|
*/
|
|
|
|
class CSVImportController extends Controller {
|
|
const PATH = '/csv-import';
|
|
const METHOD = 'POST';
|
|
|
|
public function validations() {
|
|
return [
|
|
'permission' => 'staff_3',
|
|
'requestData' => []
|
|
];
|
|
}
|
|
|
|
public function handler() {
|
|
$fileUploader = $this->uploadFile(true);
|
|
|
|
if(!$fileUploader instanceof FileUploader) {
|
|
throw new Exception(ERRORS::INVALID_FILE);
|
|
}
|
|
|
|
$file = fopen($fileUploader->getFullFilePath(),'r');
|
|
$errors = [];
|
|
|
|
while(!feof($file)) {
|
|
$userList = fgetcsv($file);
|
|
|
|
Controller::setDataRequester(function ($key) use ($userList) {
|
|
switch ($key) {
|
|
case 'email':
|
|
return $userList[0];
|
|
case 'password':
|
|
return $userList[1];
|
|
case 'name':
|
|
return $userList[2];
|
|
}
|
|
|
|
return null;
|
|
});
|
|
|
|
$signupController = new SignUpController(true);
|
|
|
|
try {
|
|
$signupController->validate();
|
|
$signupController->handler();
|
|
} catch (\Exception $exception) {
|
|
$errors[] = $exception->getMessage() . ' in email ' . $userList[0];
|
|
}
|
|
}
|
|
|
|
fclose($file);
|
|
|
|
unlink($fileUploader->getFullFilePath());
|
|
|
|
Response::respondSuccess($errors);
|
|
}
|
|
} |