-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#416 Sinkronisasi Data Program Bantuan OpenSID ke OpenDK.
Sesuaikan tampilan, perbaiki data yang tidak tampil
- Loading branch information
1 parent
d830509
commit f0ea366
Showing
14 changed files
with
711 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
<?php | ||
|
||
/* | ||
* File ini bagian dari: | ||
* | ||
* OpenDK | ||
* | ||
* Aplikasi dan source code ini dirilis berdasarkan lisensi GPL V3 | ||
* | ||
* Hak Cipta 2017 - 2022 Perkumpulan Desa Digital Terbuka (https://opendesa.id) | ||
* | ||
* Dengan ini diberikan izin, secara gratis, kepada siapa pun yang mendapatkan salinan | ||
* dari perangkat lunak ini dan file dokumentasi terkait ("Aplikasi Ini"), untuk diperlakukan | ||
* tanpa batasan, termasuk hak untuk menggunakan, menyalin, mengubah dan/atau mendistribusikan, | ||
* asal tunduk pada syarat berikut: | ||
* | ||
* Pemberitahuan hak cipta di atas dan pemberitahuan izin ini harus disertakan dalam | ||
* setiap salinan atau bagian penting Aplikasi Ini. Barang siapa yang menghapus atau menghilangkan | ||
* pemberitahuan ini melanggar ketentuan lisensi Aplikasi Ini. | ||
* | ||
* PERANGKAT LUNAK INI DISEDIAKAN "SEBAGAIMANA ADANYA", TANPA JAMINAN APA PUN, BAIK TERSURAT MAUPUN | ||
* TERSIRAT. PENULIS ATAU PEMEGANG HAK CIPTA SAMA SEKALI TIDAK BERTANGGUNG JAWAB ATAS KLAIM, KERUSAKAN ATAU | ||
* KEWAJIBAN APAPUN ATAS PENGGUNAAN ATAU LAINNYA TERKAIT APLIKASI INI. | ||
* | ||
* @package OpenDK | ||
* @author Tim Pengembang OpenDesa | ||
* @copyright Hak Cipta 2017 - 2022 Perkumpulan Desa Digital Terbuka (https://opendesa.id) | ||
* @license http://www.gnu.org/licenses/gpl.html GPL V3 | ||
* @link https://github.com/OpenSID/opendk | ||
*/ | ||
|
||
namespace App\Http\Controllers\Api; | ||
|
||
use App\Http\Controllers\Controller; | ||
use App\Http\Requests\ProgramBantuanRequest; | ||
use App\Imports\SinkronBantuan; | ||
use App\Imports\SinkronPesertaBantuan; | ||
use Illuminate\Support\Facades\Storage; | ||
use Illuminate\Support\Str; | ||
use ZipArchive; | ||
|
||
class ProgamBantuanController extends Controller | ||
{ | ||
/** | ||
* Create a new AuthController instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct() | ||
{ | ||
$this->middleware('auth:api'); | ||
} | ||
|
||
public function store(ProgramBantuanRequest $request) | ||
{ | ||
try { | ||
// Upload file zip temporary. | ||
$file = $request->file('file'); | ||
$file->storeAs('temp', $name = $file->getClientOriginalName()); | ||
|
||
// Temporary path file | ||
$path = storage_path("app/temp/{$name}"); | ||
$extract = storage_path('app/public/bantuan/'); | ||
|
||
// Ekstrak file | ||
$zip = new ZipArchive(); | ||
$zip->open($path); | ||
$zip->extractTo($extract); | ||
$zip->close(); | ||
|
||
(new SinkronBantuan()) | ||
->queue($extract . $csvName = Str::replaceLast('zip', 'csv', $name)); | ||
} catch (\Exception $e) { | ||
report($e); | ||
return response()->json([ | ||
"status" => "danger", | ||
"message" => $e->getMessage(), | ||
]); | ||
} | ||
|
||
// Hapus folder temp ketika sudah selesai | ||
Storage::deleteDirectory('temp'); | ||
// Hapus file excell temp ketika sudah selesai | ||
Storage::disk('public')->delete('bantuan' . $csvName); | ||
|
||
return response()->json([ | ||
"message" => "Data Bantuan Sedang di Sinkronkan", | ||
"status" => "success" | ||
]); | ||
} | ||
|
||
public function storePeserta(ProgramBantuanRequest $request) | ||
{ | ||
try { | ||
// Upload file zip temporary. | ||
$file = $request->file('file'); | ||
$file->storeAs('temp', $name = $file->getClientOriginalName()); | ||
// Temporary path file | ||
$path = storage_path("app/temp/{$name}"); | ||
$extract = storage_path('app/public/bantuan/'); | ||
// Ekstrak file | ||
$zip = new ZipArchive(); | ||
$zip->open($path); | ||
$zip->extractTo($extract); | ||
$zip->close(); | ||
// Proses impor excell | ||
(new SinkronPesertaBantuan()) | ||
->queue($extract . $csvName = Str::replaceLast('zip', 'csv', $name)); | ||
} catch (\Exception $e) { | ||
report($e); | ||
return response()->json([ | ||
"status" => "danger", | ||
"message" => $e->getMessage(), | ||
]); | ||
} | ||
// Hapus folder temp ketika sudah selesai | ||
Storage::deleteDirectory('temp'); | ||
// Hapus file excell temp ketika sudah selesai | ||
Storage::disk('public')->delete('bantuan/' . $csvName); | ||
return response()->json([ | ||
"status" => "success", | ||
"message" => "Data Bantuan Sedang di Sinkronkan", | ||
]); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
<?php | ||
|
||
/* | ||
* File ini bagian dari: | ||
* | ||
* OpenDK | ||
* | ||
* Aplikasi dan source code ini dirilis berdasarkan lisensi GPL V3 | ||
* | ||
* Hak Cipta 2017 - 2022 Perkumpulan Desa Digital Terbuka (https://opendesa.id) | ||
* | ||
* Dengan ini diberikan izin, secara gratis, kepada siapa pun yang mendapatkan salinan | ||
* dari perangkat lunak ini dan file dokumentasi terkait ("Aplikasi Ini"), untuk diperlakukan | ||
* tanpa batasan, termasuk hak untuk menggunakan, menyalin, mengubah dan/atau mendistribusikan, | ||
* asal tunduk pada syarat berikut: | ||
* | ||
* Pemberitahuan hak cipta di atas dan pemberitahuan izin ini harus disertakan dalam | ||
* setiap salinan atau bagian penting Aplikasi Ini. Barang siapa yang menghapus atau menghilangkan | ||
* pemberitahuan ini melanggar ketentuan lisensi Aplikasi Ini. | ||
* | ||
* PERANGKAT LUNAK INI DISEDIAKAN "SEBAGAIMANA ADANYA", TANPA JAMINAN APA PUN, BAIK TERSURAT MAUPUN | ||
* TERSIRAT. PENULIS ATAU PEMEGANG HAK CIPTA SAMA SEKALI TIDAK BERTANGGUNG JAWAB ATAS KLAIM, KERUSAKAN ATAU | ||
* KEWAJIBAN APAPUN ATAS PENGGUNAAN ATAU LAINNYA TERKAIT APLIKASI INI. | ||
* | ||
* @package OpenDK | ||
* @author Tim Pengembang OpenDesa | ||
* @copyright Hak Cipta 2017 - 2022 Perkumpulan Desa Digital Terbuka (https://opendesa.id) | ||
* @license http://www.gnu.org/licenses/gpl.html GPL V3 | ||
* @link https://github.com/OpenSID/opendk | ||
*/ | ||
|
||
namespace App\Http\Requests; | ||
|
||
use App\Rules\CekDesa; | ||
use Illuminate\Foundation\Http\FormRequest; | ||
|
||
class ProgramBantuanRequest extends FormRequest | ||
{ | ||
/** | ||
* Determine if the user is authorized to make this request. | ||
* | ||
* @return bool | ||
*/ | ||
public function authorize() | ||
{ | ||
return true; | ||
} | ||
|
||
/** | ||
* Get the validation rules that apply to the request. | ||
* | ||
* @return array | ||
*/ | ||
public function rules() | ||
{ | ||
return [ | ||
'file' => 'file|mimes:zip|max:5120', | ||
"desa_id" => ['required', 'string', new CekDesa()], | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<?php | ||
|
||
/* | ||
* File ini bagian dari: | ||
* | ||
* OpenDK | ||
* | ||
* Aplikasi dan source code ini dirilis berdasarkan lisensi GPL V3 | ||
* | ||
* Hak Cipta 2017 - 2022 Perkumpulan Desa Digital Terbuka (https://opendesa.id) | ||
* | ||
* Dengan ini diberikan izin, secara gratis, kepada siapa pun yang mendapatkan salinan | ||
* dari perangkat lunak ini dan file dokumentasi terkait ("Aplikasi Ini"), untuk diperlakukan | ||
* tanpa batasan, termasuk hak untuk menggunakan, menyalin, mengubah dan/atau mendistribusikan, | ||
* asal tunduk pada syarat berikut: | ||
* | ||
* Pemberitahuan hak cipta di atas dan pemberitahuan izin ini harus disertakan dalam | ||
* setiap salinan atau bagian penting Aplikasi Ini. Barang siapa yang menghapus atau menghilangkan | ||
* pemberitahuan ini melanggar ketentuan lisensi Aplikasi Ini. | ||
* | ||
* PERANGKAT LUNAK INI DISEDIAKAN "SEBAGAIMANA ADANYA", TANPA JAMINAN APA PUN, BAIK TERSURAT MAUPUN | ||
* TERSIRAT. PENULIS ATAU PEMEGANG HAK CIPTA SAMA SEKALI TIDAK BERTANGGUNG JAWAB ATAS KLAIM, KERUSAKAN ATAU | ||
* KEWAJIBAN APAPUN ATAS PENGGUNAAN ATAU LAINNYA TERKAIT APLIKASI INI. | ||
* | ||
* @package OpenDK | ||
* @author Tim Pengembang OpenDesa | ||
* @copyright Hak Cipta 2017 - 2022 Perkumpulan Desa Digital Terbuka (https://opendesa.id) | ||
* @license http://www.gnu.org/licenses/gpl.html GPL V3 | ||
* @link https://github.com/OpenSID/opendk | ||
*/ | ||
|
||
namespace App\Imports; | ||
|
||
use App\Models\Program; | ||
use Illuminate\Contracts\Queue\ShouldQueue; | ||
use Illuminate\Support\Collection; | ||
use Maatwebsite\Excel\Concerns\Importable; | ||
use Maatwebsite\Excel\Concerns\ToCollection; | ||
use Maatwebsite\Excel\Concerns\WithChunkReading; | ||
use Maatwebsite\Excel\Concerns\WithHeadingRow; | ||
|
||
class SinkronBantuan implements ToCollection, WithHeadingRow, WithChunkReading, ShouldQueue | ||
{ | ||
use Importable; | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
public function chunkSize(): int | ||
{ | ||
return 1000; | ||
} | ||
|
||
/** | ||
* @param Collection $collection | ||
*/ | ||
public function collection(Collection $collection) | ||
{ | ||
foreach ($collection as $value) { | ||
$insert = [ | ||
'id' => $value['id'], | ||
'nama' => $value['nama'], | ||
'sasaran' => $value['sasaran'], | ||
'status' => $value['status'], | ||
'start_date' => $value['sdate'], | ||
'end_date' => $value['edate'], | ||
'description' => $value['ndesc'], | ||
'desa_id' => $value['kode_desa'] | ||
]; | ||
|
||
Program::updateOrCreate([ | ||
'desa_id' => $insert['desa_id'], | ||
'id' => $insert['id'] | ||
], $insert); | ||
} | ||
} | ||
} |
Oops, something went wrong.