<?php

namespace App\Http\Controllers\Webprofile\Backend;

use App\Http\Controllers\Controller;
use App\Models\Webprofile\Categories;
use App\Repositories\Webprofile\De\InformationRepository as DeInformationRepository;
use App\Repositories\Webprofile\En\InformationRepository as EnInformationRepository;
use App\Repositories\Webprofile\InformationRepository;
use App\Repositories\Webprofile\Sa\InformationRepository as SaInformationRepository;
use App\Repositories\Webprofile\Zh\InformationRepository as ZhInformationRepository;
use Illuminate\Http\Request;
use Statickidz\GoogleTranslate;

class InformationController 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(
        InformationRepository $repo,
        EnInformationRepository $repoEn,
        DeInformationRepository $repoDe,
        SaInformationRepository $repoSa,
        ZhInformationRepository $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.informations.index')->withTitle(trans('feature.information'));
    }

    /**
     * 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.informations.create', $data)->withTitle(trans('feature.create_information'));
    }

    /**
     * Store a newly created resource in storage.
     *
     * @return \Illuminate\Http\Response
     */
    public function store(Request $request)
    {
        $request['content'] = $request->content;
        $request['title'] = strip_tags($request->title);
        $request->validate([
            'title' => 'required',
            'content' => 'required|min:3',
            'event_date' => 'required',
            'keys' => 'required|max:100'
        ], [
            'title.required' => 'Judul wajib diisi',
            'content.required' => 'Konten wajib diisi',
            'content.min' => 'Konten terlalu singkat',
            'event_date.required' => 'Tanggal posting wajib diisi',
            'keys.max' => 'Keyword terlalu panjang',
            'keys.required' => 'Keyword wajib diisi'
        ]);

        $data = $request->except('_token');
        // $data['content'] = htmlspecialchars($request->content);

        array_key_exists('info_status', $data) ? $data['info_status'] = 1 : $data['info_status'] = 0;
        $data['slug'] = str_slug($request->input('title'));

        $save = $this->repo->store($data);

        if (webprofilesetting()['auto_translate'] == 1) {
            // save translate
            $this->createEn($data, $save);
            $this->createDe($data, $save);
            $this->createSa($data, $save);
            $this->createZh($data, $save);
        }

        return redirect()->route('informations.index');
    }

    private function createEn($data, $information)
    {
        $trans = new GoogleTranslate();
        $title = $trans->translate($this->SOURCE, $this->TARGET, strip_tags($data['title']));
        $keys = $trans->translate($this->SOURCE, $this->TARGET, strip_tags($data['keys']));

        if ($data['content'] == null) {
            $data['content'] = 'kosong';
        }

        $content = $trans->translate($this->SOURCE, $this->TARGET, $data['content']);

        $dataEn['information_id'] = $information->id;
        $dataEn['title'] = $title;
        $dataEn['keys'] = $keys;
        $dataEn['content'] = $content;

        $this->repoEn->store($dataEn);
    }

    private function createDe($data, $information)
    {
        $trans = new GoogleTranslate();
        $title = $trans->translate($this->SOURCE, $this->TARGETDE, strip_tags($data['title']));
        $keys = $trans->translate($this->SOURCE, $this->TARGETDE, strip_tags($data['keys']));

        if ($data['content'] == null) {
            $data['content'] = 'kosong';
        }

        $content = $trans->translate($this->SOURCE, $this->TARGETDE, $data['content']);

        $dataDe['information_id'] = $information->id;
        $dataDe['title'] = $title;
        $dataDe['keys'] = $keys;
        $dataDe['content'] = $content;

        $this->repoDe->store($dataDe);
    }

    private function createSa($data, $information)
    {
        $trans = new GoogleTranslate();
        $title = $trans->translate($this->SOURCE, $this->TARGETSA, strip_tags($data['title']));
        $keys = $trans->translate($this->SOURCE, $this->TARGETSA, strip_tags($data['keys']));

        if ($data['content'] == null) {
            $data['content'] = 'kosong';
        }

        $content = $trans->translate($this->SOURCE, $this->TARGETSA, $data['content']);

        $dataSa['information_id'] = $information->id;
        $dataSa['title'] = $title;
        $dataSa['keys'] = $keys;
        $dataSa['content'] = $content;

        $this->repoSa->store($dataSa);
    }

    private function createZh($data, $information)
    {
        $trans = new GoogleTranslate();
        $title = $trans->translate($this->SOURCE, $this->TARGETZH, strip_tags($data['title']));
        $keys = $trans->translate($this->SOURCE, $this->TARGETZH, strip_tags($data['keys']));

        if ($data['content'] == null) {
            $data['content'] = 'kosong';
        }

        $content = $trans->translate($this->SOURCE, $this->TARGETZH, $data['content']);

        $dataZh['information_id'] = $information->id;
        $dataZh['title'] = $title;
        $dataZh['keys'] = $keys;
        $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');
        $manual=0;

        $data = [
            'data' => $data,
            'categories' => $categories,
            'manual'=> $manual,
        ];

        return view('webprofile.backend.informations.edit', $data)->withTitle(trans('feature.edit_information'));
    }
    public function editPerBahasa($id)
    {
        // $setting = webprofilesetting();
        $data = $this->repo->findId($id, ['rEn', 'rDe', 'rSa', 'rZh']);
        $categories = Categories::pluck('name', 'id');
        $manual=1;

        $data = [
            'data' => $data,
            'categories' => $categories,
            // 'setting' => $setting,
            'manual' => $manual,
        ];

        return view('webprofile.backend.informations.edit_per_bahasa', $data)->withTitle(trans('feature.edit_information'));
    }


    /**
     * Update the specified resource in storage.
     *
     * @param int $id
     *
     * @return \Illuminate\Http\Response
     */
    public function update(Request $request, $id)
    {
        $request['content'] = $request->content;
        $request['content_en'] = $request->content_en;
        $request['content_de'] = $request->content_de;
        $request['content_sa'] = $request->content_sa;
        $request['content_zh'] = $request->content_zh;
        $request['title'] = strip_tags($request->title);
        $request['title_en'] = strip_tags($request->title_en);
        $request['title_de'] = strip_tags($request->title_de);
        $request['title_sa'] = strip_tags($request->title_sa);
        $request['title_zh'] = strip_tags($request->title_zh);
        $request['keys'] = strip_tags($request->keys);
        $request['keys_en'] = strip_tags($request->keys_en);
        $request['keys_de'] = strip_tags($request->keys_de);
        $request['keys_sa'] = strip_tags($request->keys_sa);
        $request['keys_zh'] = strip_tags($request->keys_zh);

        $request->validate([
            'title' => 'required',
            'content' => 'required|min:3',
            'event_date' => 'required',
            'keys' => 'required|max:100'
        ], [
            'title.required' => 'Judul wajib diisi',
            'content.required' => 'Konten wajib diisi',
            'content.min' => 'Konten terlalu singkat',
            'event_date.required' => 'Tanggal posting wajib diisi',
            'keys.max' => 'Keyword terlalu panjang',
            'keys.required' => 'Keyword wajib diisi'
        ]);

        $data = $request->except(['_token', 'manual', 'id', 'title_en', 'keys_en', 'content_en', 'title_de', 'keys_de', 'content_de', 'title_sa', 'keys_sa', 'content_sa', 'title_zh', 'keys_zh', 'content_zh']);
        $dataEn = $request->except(['_token', 'id', 'manual']);
        // $data['title'] = htmlspecialchars($request->title);
        // $data['content'] = htmlspecialchars($request->content);

        // $dataEn = $request->except(['_token', 'id', 'manual', 'title_en', 'content_en', 'title_de', 'content_de', 'title_sa', 'content_sa', 'title_zh', 'content_zh']);
        // $dataEn['title'] = htmlspecialchars($request->title);
        // $dataEn['title_en'] = htmlspecialchars($request->title_en);
        // $dataEn['title_de'] = htmlspecialchars($request->title_de);
        // $dataEn['title_sa'] = htmlspecialchars($request->title_sa);
        // $dataEn['title_zh'] = htmlspecialchars($request->title_zh);
        // $dataEn['content'] = htmlspecialchars($request->content);
        // $dataEn['content_en'] = htmlspecialchars($request->content_en);
        // $dataEn['content_de'] = htmlspecialchars($request->content_de);
        // $dataEn['content_sa'] = htmlspecialchars($request->content_sa);
        // $dataEn['content_zh'] = htmlspecialchars($request->content_zh);

        array_key_exists('info_status', $data) ? $data['info_status'] = 1 : $data['info_status'] = 0;
        $data['slug'] = str_slug($request->input('title'));

        $information = $this->repo->findId($id, ['rEn', 'rDe', 'rSa','rZh']);

        $this->updateEn($dataEn, $information, $request->manual);
        $this->updateDe($dataEn, $information, $request->manual);
        $this->updateSa($dataEn, $information, $request->manual);
        $this->updateZh($dataEn, $information, $request->manual);

        $this->repo->update($data, $information);
        return redirect()->route('informations.index');
    }

    public function updateEn($data, $information, $manual)
    {
        if($manual==1) {
        $dataEn['title'] = strip_tags($data['title_en']);
        $dataEn['keys'] = strip_tags($data['keys_en']);
        $dataEn['content'] = $data['content_en'];
        }
        else{
            if ($data['content'] == null) {
                $data['content'] = 'kosong';
        }

        $trans = new GoogleTranslate();
        $title = $trans->translate($this->SOURCE, $this->TARGET, strip_tags($data['title']));
        $keys = $trans->translate($this->SOURCE, $this->TARGET, strip_tags($data['keys']));
        $content = $trans->translate($this->SOURCE, $this->TARGET, $data['content']);

        $dataEn['title'] = $title;
        $dataEn['keys'] = $keys;
        $dataEn['content'] = $content;

    }
        $this->repoEn->update($dataEn, $information);
    }

    public function updateDe($data, $information, $manual)
    {
        if($manual==1) {
        $dataDe['title'] = strip_tags($data['title_de']);
        $dataDe['keys'] = strip_tags($data['keys_de']);
        $dataDe['content'] = $data['content_de'];
        }
        else{
            if ($data['content'] == null) {
                $data['content'] = 'kosong';
            }

            $trans = new GoogleTranslate();
            $title = $trans->translate($this->SOURCE, $this->TARGETDE, strip_tags($data['title']));
            $keys = $trans->translate($this->SOURCE, $this->TARGETDE, strip_tags($data['keys']));
            $content = $trans->translate($this->SOURCE, $this->TARGETDE, $data['content']);
            
            $dataDe['title'] = $title;
            $dataDe['keys'] = $keys;
            $dataDe['content'] = $content;

        }
        $this->repoDe->update($dataDe, $information);
    }

    public function updateSa($data, $information, $manual)
    {
        if($manual==1) {
        $dataSa['title'] = strip_tags($data['title_sa']);
        $dataSa['keys'] = strip_tags($data['keys_sa']);
        $dataSa['content'] = $data['content_sa'];
        }
        else{

            if ($data['content'] == null) {
                $data['content'] = 'kosong';
            }

            $trans = new GoogleTranslate();
            $title = $trans->translate($this->SOURCE, $this->TARGETSA, strip_tags($data['title']));
            $keys = $trans->translate($this->SOURCE, $this->TARGETSA, strip_tags($data['keys']));
            $content = $trans->translate($this->SOURCE, $this->TARGETSA, $data['content']);

            $dataSa['title'] = $title;
            $dataSa['keys'] = $keys;
            $dataSa['content'] = $content;
        }

        $this->repoSa->update($dataSa, $information);
    }

    public function updateZh($data, $information, $manual)
    {
        if($manual==1) {
        $dataZh['title'] = strip_tags($data['title_zh']);
        $dataZh['keys'] = strip_tags($data['keys_zh']);
        $dataZh['content'] = $data['content_zh'];
        }
        else{

            if ($data['content'] == null) {
                $data['content'] = 'kosong';
            }

            $trans = new GoogleTranslate();
            $title = $trans->translate($this->SOURCE, $this->TARGETZH, strip_tags($data['title']));
            $keys = $trans->translate($this->SOURCE, $this->TARGETZH, strip_tags($data['keys']));
            $content = $trans->translate($this->SOURCE, $this->TARGETZH, $data['content']);

            $dataZh['title'] = $title;
            $dataZh['keys'] = $keys;
            $dataZh['content'] = $content;
        }

        $this->repoZh->update($dataZh, $information);
    }

    /**
     * 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', 'rZh']);
        $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']);
    }
}