View file modules/forum/Install/Installer.php

File size: 6.38Kb
<?php

/**
 * This file is part of JohnCMS Content Management System.
 *
 * @copyright JohnCMS Community
 * @license   https://opensource.org/licenses/GPL-3.0 GPL-3.0
 * @link      https://johncms.com JohnCMS Project
 */

namespace Forum\Install;

use Illuminate\Database\Capsule\Manager as Capsule;
use Illuminate\Database\Schema\Blueprint;

class Installer extends \Johncms\Modules\Installer
{
    public function install(): void
    {
        $this->createTables();
    }

    public function uninstall(): void
    {
    }

    private function createTables(): void
    {
        $schema = Capsule::schema();
        $connection = Capsule::connection();

        // Файлы форума
        $schema->create(
            'cms_forum_files',
            static function (Blueprint $table) {
                $table->increments('id');
                $table->integer('cat')->unsigned()->default(0)->index('cat');
                $table->integer('subcat')->unsigned()->default(0)->index('subcat');
                $table->integer('topic')->unsigned()->default(0)->index('topic');
                $table->integer('post')->unsigned()->default(0)->index('post');
                $table->integer('time')->unsigned()->default(0);
                $table->text('filename');
                $table->tinyInteger('filetype')->unsigned()->default(0);
                $table->integer('dlcount')->unsigned()->default(0);
                $table->boolean('del')->default(0);
            }
        );

        // Непрочитанное форума
        $schema->create(
            'cms_forum_rdm',
            static function (Blueprint $table) {
                $table->integer('topic_id')->unsigned()->default(0);
                $table->integer('user_id')->unsigned()->default(0);
                $table->integer('time')->unsigned()->default(0)->index('time');
                $table->primary(['topic_id', 'user_id'], 'topic_user');
            }
        );

        // Опросы форума
        $schema->create(
            'cms_forum_vote',
            static function (Blueprint $table) {
                $table->increments('id');
                $table->integer('type')->default(0)->index('type');
                $table->integer('time')->unsigned()->default(0);
                $table->integer('topic')->unsigned()->default(0)->index('topic');
                $table->string('name');
                $table->integer('count')->unsigned()->default(0);
                $table->index(['type', 'topic'], 'type_topic');
            }
        );

        // Участники опросов
        $schema->create(
            'cms_forum_vote_users',
            static function (Blueprint $table) {
                $table->increments('id');
                $table->integer('user')->default(0);
                $table->integer('topic')->index('topic');
                $table->integer('vote');
                $table->index(['topic', 'user'], 'topic_user');
            }
        );

        // Форум
        $schema->create(
            'forum_messages',
            static function (Blueprint $table) {
                $table->bigIncrements('id');
                $table->integer('topic_id')->index('topic_id');
                $table->longText('text');
                $table->integer('date')->nullable();
                $table->integer('user_id')->unsigned();
                $table->string('user_name')->nullable();
                $table->string('user_agent')->nullable();
                $table->bigInteger('ip')->nullable();
                $table->bigInteger('ip_via_proxy')->nullable();
                $table->boolean('pinned')->nullable();
                $table->string('editor_name')->nullable();
                $table->integer('edit_time')->nullable();
                $table->integer('edit_count')->nullable();
                $table->boolean('deleted')->nullable()->index('deleted');
                $table->string('deleted_by')->nullable();
            }
        );
        $connection->statement('ALTER TABLE `forum_messages` ADD FULLTEXT `text` (`text`)');

        $schema->create(
            'forum_sections',
            static function (Blueprint $table) {
                $table->increments('id');
                $table->integer('parent')->nullable()->index('parent');
                $table->string('name');
                $table->text('description')->nullable();
                $table->text('meta_description')->nullable();
                $table->string('meta_keywords')->nullable();
                $table->integer('sort')->default('100');
                $table->integer('access')->nullable();
                $table->integer('section_type')->nullable();
            }
        );

        $schema->create(
            'forum_topic',
            static function (Blueprint $table) {
                $table->increments('id');
                $table->integer('section_id')->unsigned()->nullable();
                $table->string('name');
                $table->text('description')->nullable();
                $table->text('meta_description')->nullable();
                $table->string('meta_keywords')->nullable();
                $table->integer('view_count')->nullable();
                $table->integer('user_id')->unsigned();
                $table->string('user_name')->nullable();
                $table->dateTime('created_at')->nullable();
                $table->integer('post_count')->nullable();
                $table->integer('mod_post_count')->nullable();
                $table->integer('last_post_date')->nullable();
                $table->integer('last_post_author')->unsigned()->nullable();
                $table->string('last_post_author_name')->nullable();
                $table->bigInteger('last_message_id')->nullable();
                $table->integer('mod_last_post_date')->nullable();
                $table->integer('mod_last_post_author')->unsigned()->nullable();
                $table->string('mod_last_post_author_name')->nullable();
                $table->bigInteger('mod_last_message_id')->nullable();
                $table->boolean('closed')->nullable();
                $table->string('closed_by')->nullable();
                $table->boolean('deleted')->nullable()->index('deleted');
                $table->string('deleted_by')->nullable();
                $table->mediumText('curators')->nullable();
                $table->boolean('pinned')->nullable();
                $table->boolean('has_poll')->nullable();
            }
        );
    }
}