<?php namespace App\Http\Controllers\Webprofile\Backend; use App\Http\Controllers\Controller; use App\Models\Webprofile\Categories; use App\Repositories\Webprofile\De\PagesRepository as DePagesRepository; use App\Repositories\Webprofile\En\PagesRepository as EnPagesRepository; use App\Repositories\Webprofile\PagesRepository; use App\Repositories\Webprofile\Sa\PagesRepository as SaPagesRepository; use App\Repositories\Webprofile\Zh\PagesRepository as ZhPagesRepository; use Illuminate\Http\Request; use Statickidz\GoogleTranslate; class PageController extends Controller { private $repo; private $repoEn; private $repoDe; private $repoSa; private $repoZh; private $SOURCE = 'id'; private $TARGET = 'en'; private $TARGETDE = 'de'; private $TARGETSA = 'ar'; private $TARGETZH = 'zh'; public function __construct( PagesRepository $repo, EnPagesRepository $repoEn, DePagesRepository $repoDe, SaPagesRepository $repoSa, ZhPagesRepository $repoZh ) { $this->repo = $repo; $this->repoEn = $repoEn; $this->repoDe = $repoDe; $this->repoSa = $repoSa; $this->repoZh = $repoZh; } /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index(Request $request) { if ($request->ajax()) { $data = $this->repo->get(['rEn']); return $this->repo->datatable($data); } return view('webprofile.backend.pages.index')->withTitle(trans('feature.page')); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { $categories = Categories::pluck('name', 'id'); $data = [ 'categories' => $categories, ]; return view('webprofile.backend.pages.create', $data)->withTitle(trans('feature.create_page')); } /** * Store a newly created resource in storage. * * @return \Illuminate\Http\Response */ public function store(Request $request) { $data = $request->except('_token'); $data['slug'] = str_slug($request->input('title')); $save = $this->repo->store($data); if (webprofilesetting()['auto_translate'] == 1) { // save translate if (strlen($data['content']) < 5000) { $this->createEn($data, $save); $this->createDe($data, $save); $this->createSa($data, $save); $this->createZh($data, $save); } } return redirect()->route('pages.index'); } private function createEn($data, $page) { $trans = new GoogleTranslate(); $title = $trans->translate($this->SOURCE, $this->TARGET, $data['title']); if (strip_tags($data['content']) == null) { $data['content'] = 'kosong'; } $content = $trans->translate($this->SOURCE, $this->TARGET, strip_tags($data['content'])); $dataEn['page_id'] = $page->id; $dataEn['title'] = $title; $dataEn['content'] = $content; $this->repoEn->store($dataEn); } private function createDe($data, $page) { $trans = new GoogleTranslate(); $title = $trans->translate($this->SOURCE, $this->TARGETDE, $data['title']); if (strip_tags($data['content']) == null) { $data['content'] = 'kosong'; } $content = $trans->translate($this->SOURCE, $this->TARGETDE, strip_tags($data['content'])); $dataDe['page_id'] = $page->id; $dataDe['title'] = $title; $dataDe['content'] = $content; $this->repoDe->store($dataDe); } private function createSa($data, $page) { $trans = new GoogleTranslate(); $title = $trans->translate($this->SOURCE, $this->TARGETSA, $data['title']); if (strip_tags($data['content']) == null) { $data['content'] = 'kosong'; } $content = $trans->translate($this->SOURCE, $this->TARGETSA, strip_tags($data['content'])); $dataSa['page_id'] = $page->id; $dataSa['title'] = $title; $dataSa['content'] = $content; $this->repoSa->store($dataSa); } private function createZh($data, $page) { $trans = new GoogleTranslate(); $title = $trans->translate($this->SOURCE, $this->TARGETZH, $data['title']); if (strip_tags($data['content']) == null) { $data['content'] = 'kosong'; } $content = $trans->translate($this->SOURCE, $this->TARGETZH, strip_tags($data['content'])); $dataZh['page_id'] = $page->id; $dataZh['title'] = $title; $dataZh['content'] = $content; $this->repoZh->store($dataZh); } /** * Display the specified resource. * * @param int $id * * @return \Illuminate\Http\Response */ public function show($id) { } /** * Show the form for editing the specified resource. * * @param int $id * * @return \Illuminate\Http\Response */ public function edit($id) { $data = $this->repo->findId($id, ['rEn', 'rDe', 'rSa', 'rZh']); $categories = Categories::pluck('name', 'id'); $data = [ 'data' => $data, 'categories' => $categories, ]; return view('webprofile.backend.pages.edit', $data)->withTitle(trans('feature.edit_page')); } /** * Update the specified resource in storage. * * @param int $id * * @return \Illuminate\Http\Response */ public function update(Request $request, $id) { $data = $request->except(['_token', 'id', 'title_en', 'content_en', 'title_de', 'content_de', 'title_sa', 'content_sa', 'title_zh', 'content_zh']); $dataEn = $request->except(['_token', 'id']); $page = $this->repo->findId($id, ['rEn', 'rDe', 'rSa', 'rZh']); $edit = $this->repo->update($data, $page); $this->updateEn($dataEn, $page); $this->updateDe($dataEn, $page); $this->updateSa($dataEn, $page); $this->updateZh($dataEn, $page); return redirect()->route('pages.index'); } public function updateEn($data, $page) { $dataEn['title'] = $data['title_en']; $dataEn['content'] = $data['content_en']; $this->repoEn->update($dataEn, $page); } public function updateDe($data, $page) { $dataDe['title'] = $data['title_de']; $dataDe['content'] = $data['content_de']; $this->repoDe->update($dataDe, $page); } public function updateSa($data, $page) { $dataSa['title'] = $data['title_sa']; $dataSa['content'] = $data['content_sa']; $this->repoSa->update($dataSa, $page); } public function updateZh($data, $page) { $dataZh['title'] = $data['title_zh']; $dataZh['content'] = $data['content_zh']; $this->repoZh->update($dataZh, $page); } /** * Remove the specified resource from storage. * * @param int $id * * @return \Illuminate\Http\Response */ public function destroy($id) { $data = $this->repo->findId($id, ['rEn', 'rDe', 'rSa']); $this->repo->destroy($data); if ($data->rEn) { $this->repoEn->destroy($data->rEn); } if ($data->rDe) { $this->repoDe->destroy($data->rDe); } if ($data->rSa) { $this->repoSa->destroy($data->rSa); } if ($data->rZh) { $this->repoZh->destroy($data->rZh); } return response()->json(['done']); } }