<?php

use Illuminate\Database\Seeder;
use App\SeoFormat;

class UpdateSeoFormat extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        $seoFormat = [
            'area'    => [
                'title'       => '『%title%』の当たると口コミで評判のオススメの占い師｜占いの森 / URAMORI',
                'description' => '『%title%』の的中率の高い・当たると評判のオススメ占い師を口コミ評価レビュー、占い料金、性別、得意な占術・相談お悩み内容などで検索し探せます。',
                'keywords'    => '',
            ],
            'method'  => [
                'title'       => '『%title%』の当たると口コミで評判のオススメの占い師｜占いの森 / URAMORI',
                'description' => '『%title%』の的中率の高い・当たると評判のオススメ占い師を口コミ評価レビュー、占い料金、性別、得意な占術・相談お悩み内容などで検索し探せます。',
                'keywords'    => '',
            ],
            'consultation'  => [
                'title'       => '『%title%』の当たると口コミで評判のオススメの占い師｜占いの森 / URAMORI',
                'description' => '『%title%』の的中率の高い・当たると評判のオススメ占い師を口コミ評価レビュー、占い料金、性別、得意な占術・相談お悩み内容などで検索し探せます。',
                'keywords'    => '',
            ],
            'name'  => [
                'title'       => '『%title%』の当たると口コミで評判のオススメの占い師｜占いの森 / URAMORI',
                'description' => '『%title%』の的中率の高い・当たると評判のオススメ占い師を口コミ評価レビュー、占い料金、性別、得意な占術・相談お悩み内容などで検索し探せます。',
                'keywords'    => '',
            ],
            'fortune' => [
                'title'       => '『%title%』の当たると口コミで評判のオススメの占い師｜占いの森 / URAMORI',
                'description' => '『%title%』の的中率の高い・当たると評判のオススメ占い師を口コミ評価レビュー、占い料金、性別、得意な占術・相談お悩み内容などで検索し探せます。',
                'keywords'    => '',
            ],
            'teller' => [
                'title'       => '『%title%』の当たると口コミで評判のオススメの占い師｜占いの森 / URAMORI',
                'description' => '『%title%』の的中率の高い・当たると評判のオススメ占い師を口コミ評価レビュー、占い料金、性別、得意な占術・相談お悩み内容などで検索し探せます。',
                'keywords'    => '',
            ],
            'note_article' => [
                'title'       => '%title%｜占いの森 NOTE',
                'description' => '%content|160%',
                'keywords'    => '',
            ],
            'note_feature' => [
                'title'       => '%title%｜特集・連載｜占いの森 NOTE',
                'description' => '占いの森 NOTEの%title%特集ページです。占い師さんに占ってもらう前に、どういう占い師さんか知ってもらうキッカケとなる特集、連載をご紹介します。',
                'keywords'    => '',
            ],
        ];

        /*SeoFormat::truncate();*/
        foreach ($seoFormat as $type => $item) {
            $checkSeoFormat = SeoFormat::where('type', $type)->count();
            if ($checkSeoFormat <= 0) {
                SeoFormat::create([
                    'type'        => $type,
                    'title'       => $item['title'],
                    'keywords'    => $item['keywords'],
                    'description' => $item['description'],
                    'created_at'  => date('Y-m-d H:i:s'),
                    'updated_at'  => date('Y-m-d H:i:s')
                ]);
                print "Update SEO format: " . $type . " " . $item['title'] . "\r\n";
            }
        }
    }
}
