cattr-app/server-application

View on GitHub
database/migrations/2020_02_04_080909_fix_user_roles.php

Summary

Maintainability
C
7 hrs
Test Coverage
<?php

use App\Models\Role;
use App\Models\Rule;
use Illuminate\Database\Migrations\Migration;

class FixUserRoles extends Migration
{
    protected function updateRules(int $roleID, array $rules, bool $allow)
    {
        foreach ($rules as $object => $actions) {
            foreach ($actions as $action) {
                Rule::updateOrCreate([
                    'role_id' => $roleID,
                    'object'  => $object,
                    'action'  => $action,
                ], ['allow' => $allow]);
            }
        }
    }

    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        $userRole = Role::where(['name' => 'user'])->first();

        if (isset($userRole)) {
            $disallow = [
                'projects' => ['show'],
                'tasks' => ['show'],
            ];

            $this->updateRules($userRole->id, $disallow, false);
        }
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        $userRole = Role::where(['name' => 'user'])->first();

        if (isset($userRole)) {
            $allow = [
                'projects' => ['show'],
                'tasks' => ['show'],
            ];

            $this->updateRules($userRole->id, $allow, true);
        }
    }
}