<?php

namespace App\Admin\Controllers\System;

use App\Http\Controllers\Controller;
use App\Models\Email;
use App\Services\Common\EmailService;
use Encore\Admin\Controllers\HasResourceActions;
use Encore\Admin\Facades\Admin;
use Encore\Admin\Form;
use Encore\Admin\Grid;
use Encore\Admin\Layout\Content;
use Encore\Admin\Show;
use Illuminate\Http\Request;

class EmailController extends Controller
{
    use HasResourceActions;

    /**
     * Index interface.
     *
     * @param Content $content
     * @return Content
     */
    public function index(Content $content)
    {
        return $content
            ->header('邮件规则')
            ->description('')
            ->body($this->grid());
    }

    /**
     * Show interface.
     *
     * @param mixed $id
     * @param Content $content
     * @return Content
     */
    public function show($id, Content $content)
    {
        return $content
            ->header('邮件规则')
            ->description('详细')
            ->body($this->detail($id));
    }

    /**
     * Edit interface.
     *
     * @param mixed $id
     * @param Content $content
     * @return Content
     */
    public function edit($id, Content $content)
    {
        return $content
            ->header('邮件规则')
            ->description('编辑')
            ->body($this->editForm()->edit($id));
    }

    /**
     * Create interface.
     *
     * @param Content $content
     * @return Content
     */
    public function create(Content $content)
    {
        return $content
            ->header('邮件规则')
            ->description('创建')
            ->body($this->createForm());
    }

    /**
     * Make a grid builder.
     *
     * @return Grid
     */
    protected function grid()
    {
        $grid = new Grid(new Email);
        $grid->id('ID');
        $grid->name('规则名称')->width(200);
        $grid->alias('别名')->width(200);
        $states = [
            'on'  => ['value' => 1, 'text' => '开启', 'color' => 'primary'],
            'off' => ['value' => 0, 'text' => '关闭', 'color' => 'default'],
        ];
        $grid->status('状态')->switch($states);
        $grid->created_at('添加时间');
        $grid->updated_at('更新时间');
        $grid->actions(function ($actions) use ($grid) {
            if (Admin::user()->can('system_email_rule_edit')) {
                $actions->disableEdit(false);
            }
            if (Admin::user()->can('system_email_rule_delete')) {
                $actions->disableDelete(false);
            }
        });

        if (Admin::user()->can('system_email_rule_delete')) {
            $grid->tools(function ($tools) {
                $tools->batch(function ($batch) {
                    $batch->disableDelete(false);
                });
            });
            $grid->disableRowSelector(false);
        }

        if (Admin::user()->can('system_email_rule_create')) {
            $grid->disableCreateButton(false);
        }
        return $grid;
    }

    /**
     * Make a show builder.
     *
     * @param mixed $id
     * @return Show
     */
    protected function detail($id)
    {
        $show = new Show(Email::findOrFail($id));

        $show->id('ID');
        $show->name('规则名称');
        $show->alias('别名');
        $show->status('状态')->as(function ($status) {
            return $status ? '开启' : '关闭';
        });
        $show->created_at('添加时间');
        $show->updated_at('更新时间');
        return $show;
    }

    /**
     * Make a form builder.
     *
     * @return Form
     */
    protected function editForm()
    {
        $form = new Form(new Email);
        $form->display('name', '规则名称')->setWidth(3);
        $form->display('alias', '别名')->setWidth(3);
        $form->radio('status', '状态')->options([0=>'关闭',1=>'开启']);
        $form->tools(function (Form\Tools $tools) {
            $tools->disableView();
            $tools->disableDelete();
        });
        $form->saving(function (Form $form) {
            if ($form->status=='on') {
                $form->status=1;
            } elseif ($form->status=='off') {
                $form->status=0;
            }
        });

        return $form;
    }

    protected function createForm()
    {
        $form = new Form(new Email);
        $form->text('name', '规则名称')->rules([
            'required',
            'unique:emails',
        ])->setWidth(3)->setMustMark();
        $form->text('alias', '别名')->rules([
            'required',
            'unique:emails',
        ])->setWidth(3)->setMustMark();
        $form->radio('status', '状态')->options([0=>'关闭',1=>'开启'])->default(0);

        return $form;
    }

    /**
     * Store a newly created resource in storage.
     *
     * @return mixed
     */
    public function store()
    {
        return $this->createForm()->store();
    }
    /**
     * Update the specified resource in storage.
     *
     * @param int $id
     *
     * @return \Illuminate\Http\Response|\Symfony\Component\HttpFoundation\Response
     */
    public function update($id)
    {
        return $this->editForm()->update($id);
    }

    /**
     * 邮件测试.
     * @param Content $content
     * @return Content
     */
    public function test(Content $content)
    {
        return $content
            ->header('邮件测试')
            ->description('创建')
            ->body($this->testForm());
    }
    protected function testForm()
    {
        $form = new Form(new Email);
        $form->setAction(admin_base_path("sys/email/test"));
        $form->email('email', '收件人地址')->rules('required', ['required'=>'输入邮件地址'])->setWidth('3');
        $form->disableReset();
        $form->tools(function (Form\Tools $tools) {
            // 去掉跳转列表按钮
            $tools->disableListButton();
            // 去掉删除按钮
            $tools->disableDelete();
            // 去掉查看按钮
            $tools->disableView();
        });
        $form->footer(function ($footer) {
            // 去掉`重置`按钮
            $footer->disableReset();
            // 去掉`查看`checkbox
            $footer->disableViewCheck();
            // 去掉`继续编辑`checkbox
            $footer->disableEditingCheck();
            // 去掉`继续创建`checkbox
            $footer->disableCreatingCheck();
        });
        return $form;
    }


    public function testPost(EmailService $emailService)
    {
        $emailService->sendMail(request()->email, EmailService::TEMPLATE_TEST);
        admin_toastr('操作成功,可在发送记录里查看', 'success');
        return redirect(route('admin.sys.queue.index'));
    }
    /**
     * Make a form builder.
     *
     * @return Form
     */
    protected function form()
    {
        $form = new Form(new Email);

        $form->display('ID');
        $form->display('Created at');
        $form->display('Updated at');

        return $form;
    }
}