Implement roles and authorization
This commit is contained in:
parent
621a8cf7c4
commit
d9bea7f39a
47 changed files with 660 additions and 101 deletions
4
Gemfile
4
Gemfile
|
@ -17,6 +17,10 @@ gem 'omniauth-reddit', :git => 'git://github.com/jackdempsey/omniauth-reddit.git
|
||||||
|
|
||||||
gem 'active_model_serializers'
|
gem 'active_model_serializers'
|
||||||
|
|
||||||
|
# AUTHORIZATION
|
||||||
|
gem 'pundit'
|
||||||
|
gem 'rolify'
|
||||||
|
|
||||||
group :production do
|
group :production do
|
||||||
gem 'rails_12factor'
|
gem 'rails_12factor'
|
||||||
gem 'pg'
|
gem 'pg'
|
||||||
|
|
|
@ -120,6 +120,8 @@ GEM
|
||||||
omniauth (~> 1.2)
|
omniauth (~> 1.2)
|
||||||
pg (0.18.3)
|
pg (0.18.3)
|
||||||
puma (2.14.0)
|
puma (2.14.0)
|
||||||
|
pundit (1.0.1)
|
||||||
|
activesupport (>= 3.0.0)
|
||||||
quiet_assets (1.1.0)
|
quiet_assets (1.1.0)
|
||||||
railties (>= 3.1, < 5.0)
|
railties (>= 3.1, < 5.0)
|
||||||
rack (1.6.4)
|
rack (1.6.4)
|
||||||
|
@ -161,6 +163,7 @@ GEM
|
||||||
thor (>= 0.18.1, < 2.0)
|
thor (>= 0.18.1, < 2.0)
|
||||||
rake (10.4.2)
|
rake (10.4.2)
|
||||||
rdoc (4.2.0)
|
rdoc (4.2.0)
|
||||||
|
rolify (4.1.1)
|
||||||
ruby-graphviz (1.2.2)
|
ruby-graphviz (1.2.2)
|
||||||
sass (3.4.18)
|
sass (3.4.18)
|
||||||
sass-rails (5.0.4)
|
sass-rails (5.0.4)
|
||||||
|
@ -224,10 +227,12 @@ DEPENDENCIES
|
||||||
omniauth-reddit!
|
omniauth-reddit!
|
||||||
pg
|
pg
|
||||||
puma
|
puma
|
||||||
|
pundit
|
||||||
quiet_assets
|
quiet_assets
|
||||||
rails (= 4.2.4)
|
rails (= 4.2.4)
|
||||||
rails-erd
|
rails-erd
|
||||||
rails_12factor
|
rails_12factor
|
||||||
|
rolify
|
||||||
sass-rails (~> 5.0)
|
sass-rails (~> 5.0)
|
||||||
sdoc (~> 0.4.0)
|
sdoc (~> 0.4.0)
|
||||||
simple_form
|
simple_form
|
||||||
|
|
3
app/assets/javascripts/users.coffee
Normal file
3
app/assets/javascripts/users.coffee
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Place all the behaviors and hooks related to the matching controller here.
|
||||||
|
# All this logic will automatically be available in application.js.
|
||||||
|
# You can use CoffeeScript in this file: http://coffeescript.org/
|
3
app/assets/stylesheets/users.scss
Normal file
3
app/assets/stylesheets/users.scss
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
// Place all the styles related to the Users controller here.
|
||||||
|
// They will automatically be included in application.css.
|
||||||
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
|
@ -1,4 +1,6 @@
|
||||||
class ApplicationController < ActionController::Base
|
class ApplicationController < ActionController::Base
|
||||||
|
include Pundit
|
||||||
|
|
||||||
protect_from_forgery with: :exception
|
protect_from_forgery with: :exception
|
||||||
|
|
||||||
helper_method :current_user
|
helper_method :current_user
|
||||||
|
|
|
@ -1,20 +1,28 @@
|
||||||
class AwakenTypesController < ApplicationController
|
class AwakenTypesController < ApplicationController
|
||||||
before_action :set_awaken_type, only: [:show, :edit, :update, :destroy]
|
before_action :set_awaken_type, only: [:show, :edit, :update, :destroy]
|
||||||
|
after_action :verify_authorized
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@awaken_types = AwakenType.all
|
@awaken_types = AwakenType.all
|
||||||
|
|
||||||
|
authorize AwakenType
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
authorize @awaken_type
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@awaken_type = AwakenType.new
|
@awaken_type = AwakenType.new
|
||||||
|
|
||||||
|
authorize @awaken_type
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@awaken_type = AwakenType.new(awaken_type_params)
|
@awaken_type = AwakenType.new(awaken_type_params)
|
||||||
|
|
||||||
|
authorize @awaken_type
|
||||||
|
|
||||||
if @awaken_type.save
|
if @awaken_type.save
|
||||||
redirect_to awaken_types_path, notice: 'Awaken Type was created'
|
redirect_to awaken_types_path, notice: 'Awaken Type was created'
|
||||||
else
|
else
|
||||||
|
@ -23,9 +31,12 @@ class AwakenTypesController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
|
authorize @awaken_type
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
|
authorize @awaken_type
|
||||||
|
|
||||||
if @awaken_type.update(awaken_type_params)
|
if @awaken_type.update(awaken_type_params)
|
||||||
redirect_to awaken_types_path, notice: 'Awaken Type was updated'
|
redirect_to awaken_types_path, notice: 'Awaken Type was updated'
|
||||||
else
|
else
|
||||||
|
|
|
@ -1,20 +1,28 @@
|
||||||
class CardsController < ApplicationController
|
class CardsController < ApplicationController
|
||||||
before_action :set_card, only: [:show, :edit, :update, :destroy]
|
before_action :set_card, only: [:show, :edit, :update, :destroy]
|
||||||
|
after_action :verify_authorized
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@cards = Card.includes(:character).all
|
@cards = Card.includes(:character).all
|
||||||
|
|
||||||
|
authorize Card
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
authorize @card
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@card = Card.new
|
@card = Card.new
|
||||||
|
|
||||||
|
authorize @card
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@card = Card.new(card_params)
|
@card = Card.new(card_params)
|
||||||
|
|
||||||
|
authorize @card
|
||||||
|
|
||||||
if @card.save
|
if @card.save
|
||||||
redirect_to cards_path, notice: 'Card was created'
|
redirect_to cards_path, notice: 'Card was created'
|
||||||
else
|
else
|
||||||
|
@ -23,9 +31,12 @@ class CardsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
|
authorize @card
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
|
authorize @card
|
||||||
|
|
||||||
if @card.update(card_params)
|
if @card.update(card_params)
|
||||||
redirect_to cards_path, notice: 'Card was updated'
|
redirect_to cards_path, notice: 'Card was updated'
|
||||||
else
|
else
|
||||||
|
@ -34,6 +45,8 @@ class CardsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
|
authorize @card
|
||||||
|
|
||||||
@card.destroy
|
@card.destroy
|
||||||
|
|
||||||
redirect_to cards_path, notice: 'Card was deleted'
|
redirect_to cards_path, notice: 'Card was deleted'
|
||||||
|
|
|
@ -1,20 +1,28 @@
|
||||||
class CharactersController < ApplicationController
|
class CharactersController < ApplicationController
|
||||||
before_action :set_character, only: [:show, :edit, :update, :destroy]
|
before_action :set_character, only: [:show, :edit, :update, :destroy]
|
||||||
|
after_action :verify_authorized
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@characters = Character.all
|
@characters = Character.all
|
||||||
|
|
||||||
|
authorize Character
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
authorize @character
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@character = Character.new
|
@character = Character.new
|
||||||
|
|
||||||
|
authorize @character
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@character = Character.new(character_params)
|
@character = Character.new(character_params)
|
||||||
|
|
||||||
|
authorize @character
|
||||||
|
|
||||||
if @character.save
|
if @character.save
|
||||||
redirect_to characters_path, notice: 'Character was created'
|
redirect_to characters_path, notice: 'Character was created'
|
||||||
else
|
else
|
||||||
|
@ -23,9 +31,12 @@ class CharactersController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
|
authorize @character
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
|
authorize @character
|
||||||
|
|
||||||
if @character.update(character_params)
|
if @character.update(character_params)
|
||||||
redirect_to characters_path, notice: 'Character was updated'
|
redirect_to characters_path, notice: 'Character was updated'
|
||||||
else
|
else
|
||||||
|
@ -34,6 +45,8 @@ class CharactersController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
|
authorize @character
|
||||||
|
|
||||||
@character.destroy
|
@character.destroy
|
||||||
|
|
||||||
redirect_to characters_path, notice: 'Character was deleted'
|
redirect_to characters_path, notice: 'Character was deleted'
|
||||||
|
|
|
@ -1,20 +1,28 @@
|
||||||
class LeaderSkillsController < ApplicationController
|
class LeaderSkillsController < ApplicationController
|
||||||
before_action :set_leader_skill, only: [:show, :edit, :update, :destroy]
|
before_action :set_leader_skill, only: [:show, :edit, :update, :destroy]
|
||||||
|
after_action :verify_authorized
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@leader_skills = LeaderSkill.all
|
@leader_skills = LeaderSkill.all
|
||||||
|
|
||||||
|
authorize LeaderSkill
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
authorize @leader_skill
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@leader_skill = LeaderSkill.new
|
@leader_skill = LeaderSkill.new
|
||||||
|
|
||||||
|
authorize @leader_skill
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@leader_skill = LeaderSkill.new(leader_skill_params)
|
@leader_skill = LeaderSkill.new(leader_skill_params)
|
||||||
|
|
||||||
|
authorize @leader_skill
|
||||||
|
|
||||||
if @leader_skill.save
|
if @leader_skill.save
|
||||||
redirect_to leader_skills_path, notice: 'Leader Skill was created'
|
redirect_to leader_skills_path, notice: 'Leader Skill was created'
|
||||||
else
|
else
|
||||||
|
@ -23,9 +31,12 @@ class LeaderSkillsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
|
authorize @leader_skill
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
|
authorize @leader_skill
|
||||||
|
|
||||||
if @leader_skill.update(leader_skill_params)
|
if @leader_skill.update(leader_skill_params)
|
||||||
redirect_to leader_skills_path, notice: 'Leader Skill was updated'
|
redirect_to leader_skills_path, notice: 'Leader Skill was updated'
|
||||||
else
|
else
|
||||||
|
@ -34,6 +45,8 @@ class LeaderSkillsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
|
authorize @leader_skill
|
||||||
|
|
||||||
@leader_skill.destroy
|
@leader_skill.destroy
|
||||||
|
|
||||||
redirect_to leader_skills_path, notice: 'Leader Skills was deleted'
|
redirect_to leader_skills_path, notice: 'Leader Skills was deleted'
|
||||||
|
|
|
@ -1,20 +1,28 @@
|
||||||
class LinksController < ApplicationController
|
class LinksController < ApplicationController
|
||||||
before_action :set_link, only: [:show, :edit, :update, :destroy]
|
before_action :set_link, only: [:show, :edit, :update, :destroy]
|
||||||
|
after_action :verify_authorized
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@links = Link.all
|
@links = Link.all
|
||||||
|
|
||||||
|
authorize Link
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
authorize @link
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@link = Link.new
|
@link = Link.new
|
||||||
|
|
||||||
|
authorize @link
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@link = Link.new(link_params)
|
@link = Link.new(link_params)
|
||||||
|
|
||||||
|
authorize @link
|
||||||
|
|
||||||
if @link.save
|
if @link.save
|
||||||
redirect_to links_path, notice: 'Link was created'
|
redirect_to links_path, notice: 'Link was created'
|
||||||
else
|
else
|
||||||
|
@ -23,9 +31,12 @@ class LinksController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
|
authorize @link
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
|
authorize @link
|
||||||
|
|
||||||
if @link.update(link_params)
|
if @link.update(link_params)
|
||||||
redirect_to links_path, notice: 'Link was updated'
|
redirect_to links_path, notice: 'Link was updated'
|
||||||
else
|
else
|
||||||
|
@ -34,6 +45,8 @@ class LinksController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
|
authorize @link
|
||||||
|
|
||||||
@link.destroy
|
@link.destroy
|
||||||
|
|
||||||
redirect_to links_path, notice: 'Link was deleted'
|
redirect_to links_path, notice: 'Link was deleted'
|
||||||
|
|
|
@ -1,20 +1,28 @@
|
||||||
class PassiveSkillsController < ApplicationController
|
class PassiveSkillsController < ApplicationController
|
||||||
before_action :set_passive_skill, only: [:show, :edit, :update, :destroy]
|
before_action :set_passive_skill, only: [:show, :edit, :update, :destroy]
|
||||||
|
after_action :verify_authorized
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@passive_skills = PassiveSkill.all
|
@passive_skills = PassiveSkill.all
|
||||||
|
|
||||||
|
authorize PassiveSkill
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
authorize @passive_skill
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@passive_skill = PassiveSkill.new
|
@passive_skill = PassiveSkill.new
|
||||||
|
|
||||||
|
authorize @passive_skill
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@passive_skill = PassiveSkill.new(passive_skill_params)
|
@passive_skill = PassiveSkill.new(passive_skill_params)
|
||||||
|
|
||||||
|
authorize @passive_skill
|
||||||
|
|
||||||
if @passive_skill.save
|
if @passive_skill.save
|
||||||
redirect_to passive_skills_path, notice: 'Passive Skill was created'
|
redirect_to passive_skills_path, notice: 'Passive Skill was created'
|
||||||
else
|
else
|
||||||
|
@ -23,9 +31,12 @@ class PassiveSkillsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
|
authorize @passive_skill
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
|
authorize @passive_skill
|
||||||
|
|
||||||
if @passive_skill.update(passive_skill_params)
|
if @passive_skill.update(passive_skill_params)
|
||||||
redirect_to passive_skills_path, notice: 'Passive Skill was updated'
|
redirect_to passive_skills_path, notice: 'Passive Skill was updated'
|
||||||
else
|
else
|
||||||
|
@ -34,6 +45,8 @@ class PassiveSkillsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
|
authorize @passive_skill
|
||||||
|
|
||||||
@passive_skill.destroy
|
@passive_skill.destroy
|
||||||
|
|
||||||
redirect_to passive_skills_path, notice: 'Passive Skill was deleted'
|
redirect_to passive_skills_path, notice: 'Passive Skill was deleted'
|
||||||
|
|
|
@ -1,20 +1,28 @@
|
||||||
class RaritiesController < ApplicationController
|
class RaritiesController < ApplicationController
|
||||||
before_action :set_rarity, only: [:show, :edit, :update, :destroy]
|
before_action :set_rarity, only: [:show, :edit, :update, :destroy]
|
||||||
|
after_action :verify_authorized
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@rarities = Rarity.all
|
@rarities = Rarity.all
|
||||||
|
|
||||||
|
authorize Rarity
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
authorize @rarity
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@rarity = Rarity.new
|
@rarity = Rarity.new
|
||||||
|
|
||||||
|
authorize @rarity
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@rarity = Rarity.new(rarity_params)
|
@rarity = Rarity.new(rarity_params)
|
||||||
|
|
||||||
|
authorize @rarity
|
||||||
|
|
||||||
if @rarity.save
|
if @rarity.save
|
||||||
redirect_to rarities_path, notice: 'Rarity was created'
|
redirect_to rarities_path, notice: 'Rarity was created'
|
||||||
else
|
else
|
||||||
|
@ -23,9 +31,12 @@ class RaritiesController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
|
authorize @rarity
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
|
authorize @rarity
|
||||||
|
|
||||||
if @rarity.update(rarity_params)
|
if @rarity.update(rarity_params)
|
||||||
redirect_to rarities_path, notice: 'Rarity was updated'
|
redirect_to rarities_path, notice: 'Rarity was updated'
|
||||||
else
|
else
|
||||||
|
@ -34,6 +45,8 @@ class RaritiesController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
|
authorize @rarity
|
||||||
|
|
||||||
@rarity.destroy
|
@rarity.destroy
|
||||||
|
|
||||||
redirect_to rarities_path, notice: 'Rarity was deleted'
|
redirect_to rarities_path, notice: 'Rarity was deleted'
|
||||||
|
|
|
@ -1,20 +1,28 @@
|
||||||
class SuperAttacksController < ApplicationController
|
class SuperAttacksController < ApplicationController
|
||||||
before_action :set_super_attack, only: [:show, :edit, :update, :destroy]
|
before_action :set_super_attack, only: [:show, :edit, :update, :destroy]
|
||||||
|
after_action :verify_authorized
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@super_attacks = SuperAttack.all
|
@super_attacks = SuperAttack.all
|
||||||
|
|
||||||
|
authorize SuperAttack
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
authorize @super_attack
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@super_attack = SuperAttack.new
|
@super_attack = SuperAttack.new
|
||||||
|
|
||||||
|
authorize @super_attack
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@super_attack = SuperAttack.new(super_attack_params)
|
@super_attack = SuperAttack.new(super_attack_params)
|
||||||
|
|
||||||
|
authorize @super_attack
|
||||||
|
|
||||||
if @super_attack.save
|
if @super_attack.save
|
||||||
redirect_to super_attacks_path, notice: 'Super Attack was created'
|
redirect_to super_attacks_path, notice: 'Super Attack was created'
|
||||||
else
|
else
|
||||||
|
@ -23,9 +31,12 @@ class SuperAttacksController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
|
authorize @super_attack
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
|
authorize @super_attack
|
||||||
|
|
||||||
if @super_attack.update(super_attack_params)
|
if @super_attack.update(super_attack_params)
|
||||||
redirect_to super_attacks_path, notice: 'Super Attack was updated'
|
redirect_to super_attacks_path, notice: 'Super Attack was updated'
|
||||||
else
|
else
|
||||||
|
@ -34,6 +45,8 @@ class SuperAttacksController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
|
authorize @super_attack
|
||||||
|
|
||||||
@super_attack.destroy
|
@super_attack.destroy
|
||||||
|
|
||||||
redirect_to super_attacks_path, notice: 'Super Attack was deleted'
|
redirect_to super_attacks_path, notice: 'Super Attack was deleted'
|
||||||
|
|
|
@ -1,20 +1,27 @@
|
||||||
class TypesController < ApplicationController
|
class TypesController < ApplicationController
|
||||||
before_action :set_type, only: [:show, :edit, :update, :destroy]
|
before_action :set_type, only: [:show, :edit, :update, :destroy]
|
||||||
|
after_action :verify_authorized
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@types = Type.all
|
@types = Type.all
|
||||||
|
authorize Type
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
|
authorize @type
|
||||||
end
|
end
|
||||||
|
|
||||||
def new
|
def new
|
||||||
@type = Type.new
|
@type = Type.new
|
||||||
|
|
||||||
|
authorize @type
|
||||||
end
|
end
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@type = Type.new(type_params)
|
@type = Type.new(type_params)
|
||||||
|
|
||||||
|
authorize @type
|
||||||
|
|
||||||
if @type.save
|
if @type.save
|
||||||
redirect_to types_path, notice: 'Type was created'
|
redirect_to types_path, notice: 'Type was created'
|
||||||
else
|
else
|
||||||
|
@ -23,9 +30,12 @@ class TypesController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def edit
|
def edit
|
||||||
|
authorize @type
|
||||||
end
|
end
|
||||||
|
|
||||||
def update
|
def update
|
||||||
|
authorize @type
|
||||||
|
|
||||||
if @type.update(type_params)
|
if @type.update(type_params)
|
||||||
redirect_to types_path, notice: 'Type was updated'
|
redirect_to types_path, notice: 'Type was updated'
|
||||||
else
|
else
|
||||||
|
@ -34,6 +44,8 @@ class TypesController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def destroy
|
def destroy
|
||||||
|
authorize @type
|
||||||
|
|
||||||
@type.destroy
|
@type.destroy
|
||||||
|
|
||||||
redirect_to types_path, notice: 'Type was deleted'
|
redirect_to types_path, notice: 'Type was deleted'
|
||||||
|
|
46
app/controllers/users_controller.rb
Normal file
46
app/controllers/users_controller.rb
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
class UsersController < ApplicationController
|
||||||
|
before_action :set_user, only: [:show, :edit, :update, :destroy]
|
||||||
|
after_action :verify_authorized
|
||||||
|
|
||||||
|
def index
|
||||||
|
@users = User.all
|
||||||
|
|
||||||
|
authorize User
|
||||||
|
end
|
||||||
|
|
||||||
|
def show
|
||||||
|
authorize @user
|
||||||
|
end
|
||||||
|
|
||||||
|
def edit
|
||||||
|
authorize @user
|
||||||
|
end
|
||||||
|
|
||||||
|
def update
|
||||||
|
authorize @user
|
||||||
|
|
||||||
|
if @user.update(user_params)
|
||||||
|
redirect_to users_path, notice: 'User was updated'
|
||||||
|
else
|
||||||
|
render :edit
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy
|
||||||
|
authorize @user
|
||||||
|
|
||||||
|
@user.destroy
|
||||||
|
|
||||||
|
redirect_to users_path, notice: 'User was deleted'
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def user_params
|
||||||
|
params.require(:user).permit(role_ids: [])
|
||||||
|
end
|
||||||
|
|
||||||
|
def set_user
|
||||||
|
@user = User.find(params[:id])
|
||||||
|
end
|
||||||
|
end
|
2
app/helpers/users_helper.rb
Normal file
2
app/helpers/users_helper.rb
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
module UsersHelper
|
||||||
|
end
|
10
app/models/role.rb
Normal file
10
app/models/role.rb
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
class Role < ActiveRecord::Base
|
||||||
|
has_and_belongs_to_many :users, :join_table => :users_roles
|
||||||
|
belongs_to :resource, :polymorphic => true
|
||||||
|
|
||||||
|
validates :resource_type,
|
||||||
|
:inclusion => { :in => Rolify.resource_types },
|
||||||
|
:allow_nil => true
|
||||||
|
|
||||||
|
scopify
|
||||||
|
end
|
|
@ -1,4 +1,8 @@
|
||||||
class User < ActiveRecord::Base
|
class User < ActiveRecord::Base
|
||||||
|
rolify
|
||||||
|
|
||||||
|
after_create :set_admin, if: User.count == 1
|
||||||
|
|
||||||
def self.create_with_omniauth(auth)
|
def self.create_with_omniauth(auth)
|
||||||
where(provider: auth[:provider], uid: auth[:uid]).first_or_create do |user|
|
where(provider: auth[:provider], uid: auth[:uid]).first_or_create do |user|
|
||||||
user.provider = auth[:provider]
|
user.provider = auth[:provider]
|
||||||
|
@ -7,4 +11,18 @@ class User < ActiveRecord::Base
|
||||||
user.email = auth[:info][:email]
|
user.email = auth[:info][:email]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def admin?
|
||||||
|
self.has_role?(:admin)
|
||||||
|
end
|
||||||
|
|
||||||
|
def moderator?
|
||||||
|
self.has_role?(:moderator)
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def set_admin
|
||||||
|
self.add_role :admin
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
53
app/policies/application_policy.rb
Normal file
53
app/policies/application_policy.rb
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
class ApplicationPolicy
|
||||||
|
attr_reader :user, :record
|
||||||
|
|
||||||
|
def initialize(user, record)
|
||||||
|
@user = user
|
||||||
|
@record = record
|
||||||
|
end
|
||||||
|
|
||||||
|
def index?
|
||||||
|
false
|
||||||
|
end
|
||||||
|
|
||||||
|
def show?
|
||||||
|
scope.where(:id => record.id).exists?
|
||||||
|
end
|
||||||
|
|
||||||
|
def create?
|
||||||
|
false
|
||||||
|
end
|
||||||
|
|
||||||
|
def new?
|
||||||
|
create?
|
||||||
|
end
|
||||||
|
|
||||||
|
def update?
|
||||||
|
false
|
||||||
|
end
|
||||||
|
|
||||||
|
def edit?
|
||||||
|
update?
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy?
|
||||||
|
false
|
||||||
|
end
|
||||||
|
|
||||||
|
def scope
|
||||||
|
Pundit.policy_scope!(user, record.class)
|
||||||
|
end
|
||||||
|
|
||||||
|
class Scope
|
||||||
|
attr_reader :user, :scope
|
||||||
|
|
||||||
|
def initialize(user, scope)
|
||||||
|
@user = user
|
||||||
|
@scope = scope
|
||||||
|
end
|
||||||
|
|
||||||
|
def resolve
|
||||||
|
scope
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
17
app/policies/awaken_type_policy.rb
Normal file
17
app/policies/awaken_type_policy.rb
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
class AwakenTypePolicy < ApplicationPolicy
|
||||||
|
def index?
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
|
def create?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def update?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
end
|
17
app/policies/card_policy.rb
Normal file
17
app/policies/card_policy.rb
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
class CardPolicy < ApplicationPolicy
|
||||||
|
def index?
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
|
def create?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def update?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
end
|
17
app/policies/character_policy.rb
Normal file
17
app/policies/character_policy.rb
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
class CharacterPolicy < ApplicationPolicy
|
||||||
|
def index?
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
|
def create?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def update?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
end
|
17
app/policies/leader_skill_policy.rb
Normal file
17
app/policies/leader_skill_policy.rb
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
class LeaderSkillPolicy < ApplicationPolicy
|
||||||
|
def index?
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
|
def create?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def update?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
end
|
17
app/policies/link_policy.rb
Normal file
17
app/policies/link_policy.rb
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
class LinkPolicy < ApplicationPolicy
|
||||||
|
def index?
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
|
def create?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def update?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
end
|
17
app/policies/passive_skill_policy.rb
Normal file
17
app/policies/passive_skill_policy.rb
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
class PassiveSkillPolicy < ApplicationPolicy
|
||||||
|
def index?
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
|
def create?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def update?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
end
|
17
app/policies/rarity_policy.rb
Normal file
17
app/policies/rarity_policy.rb
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
class RarityPolicy < ApplicationPolicy
|
||||||
|
def index?
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
|
def create?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def update?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
end
|
17
app/policies/super_attack_policy.rb
Normal file
17
app/policies/super_attack_policy.rb
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
class SuperAttackPolicy < ApplicationPolicy
|
||||||
|
def index?
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
|
def create?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def update?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy?
|
||||||
|
user.moderator? || user.admin?
|
||||||
|
end
|
||||||
|
end
|
17
app/policies/type_policy.rb
Normal file
17
app/policies/type_policy.rb
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
class TypePolicy < ApplicationPolicy
|
||||||
|
def index?
|
||||||
|
true
|
||||||
|
end
|
||||||
|
|
||||||
|
def create?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def update?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
end
|
13
app/policies/user_policy.rb
Normal file
13
app/policies/user_policy.rb
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
class UserPolicy < ApplicationPolicy
|
||||||
|
def index?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def update?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
|
||||||
|
def destroy?
|
||||||
|
user.admin?
|
||||||
|
end
|
||||||
|
end
|
|
@ -9,24 +9,43 @@
|
||||||
= link_to 'DBZDokkan', root_path, class: 'navbar-brand'
|
= link_to 'DBZDokkan', root_path, class: 'navbar-brand'
|
||||||
.collapse.navbar-collapse
|
.collapse.navbar-collapse
|
||||||
ul.nav.navbar-nav.navbar-right
|
ul.nav.navbar-nav.navbar-right
|
||||||
|
- if policy(:user).index?
|
||||||
|
li.dropdown
|
||||||
|
a href='#' class='dropdown-toggle' data-toggle='dropdown'
|
||||||
|
= 'Admin '
|
||||||
|
span class='caret'
|
||||||
|
ul.dropdown-menu
|
||||||
|
- if policy(:user).index?
|
||||||
|
li= link_to 'Users', users_path
|
||||||
|
- if policy(:link).index? || policy(:leader_skill).index? || policy(:passive_skill).index? || policy(:super_attack).index?
|
||||||
li.dropdown
|
li.dropdown
|
||||||
a href='#' class='dropdown-toggle' data-toggle='dropdown'
|
a href='#' class='dropdown-toggle' data-toggle='dropdown'
|
||||||
= 'Abilities '
|
= 'Abilities '
|
||||||
span class='caret'
|
span class='caret'
|
||||||
ul.dropdown-menu
|
ul.dropdown-menu
|
||||||
|
- if policy(:link).index?
|
||||||
li= link_to 'Links', links_path
|
li= link_to 'Links', links_path
|
||||||
|
- if policy(:leader_skill).index?
|
||||||
li= link_to 'Leader Skills', leader_skills_path
|
li= link_to 'Leader Skills', leader_skills_path
|
||||||
|
- if policy(:passive_skill).index?
|
||||||
li= link_to 'Passive Skills', passive_skills_path
|
li= link_to 'Passive Skills', passive_skills_path
|
||||||
|
- if policy(:super_attack).index?
|
||||||
li= link_to 'Super Attacks', super_attacks_path
|
li= link_to 'Super Attacks', super_attacks_path
|
||||||
|
- if policy(:card).index?
|
||||||
li= nav_link_to 'Cards', cards_path
|
li= nav_link_to 'Cards', cards_path
|
||||||
|
- if policy(:character).index?
|
||||||
li= nav_link_to 'Characters', characters_path
|
li= nav_link_to 'Characters', characters_path
|
||||||
|
- if policy(:awaken_type).index? || policy(:rarity).index? || policy(:type).index?
|
||||||
li.dropdown
|
li.dropdown
|
||||||
a href='#' class='dropdown-toggle' data-toggle='dropdown'
|
a href='#' class='dropdown-toggle' data-toggle='dropdown'
|
||||||
= 'Others '
|
= 'Others '
|
||||||
span class='caret'
|
span class='caret'
|
||||||
ul.dropdown-menu
|
ul.dropdown-menu
|
||||||
|
- if policy(:awaken_type).index?
|
||||||
li= link_to 'Awaken Types', awaken_types_path
|
li= link_to 'Awaken Types', awaken_types_path
|
||||||
|
- if policy(:rarity).index?
|
||||||
li= link_to 'Rarities', rarities_path
|
li= link_to 'Rarities', rarities_path
|
||||||
|
- if policy(:type).index?
|
||||||
li= link_to 'Types', types_path
|
li= link_to 'Types', types_path
|
||||||
- if logged_in?
|
- if logged_in?
|
||||||
li= link_to 'Log Out', logout_path, method: :delete
|
li= link_to 'Log Out', logout_path, method: :delete
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
.row
|
- if policy(:awaken_type).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
.pull-right
|
.pull-right
|
||||||
= link_to 'New Awaken Type', new_awaken_type_path, class: 'btn btn-primary'
|
= link_to 'New Awaken Type', new_awaken_type_path, class: 'btn btn-primary'
|
||||||
|
@ -15,9 +16,12 @@
|
||||||
tr
|
tr
|
||||||
td= awaken_type.name
|
td= awaken_type.name
|
||||||
td
|
td
|
||||||
|
- if policy(:awaken_type).edit?
|
||||||
= link_to glyph('edit', classes: 'control-icon'), edit_awaken_type_path(awaken_type)
|
= link_to glyph('edit', classes: 'control-icon'), edit_awaken_type_path(awaken_type)
|
||||||
|
- if policy(:awaken_type).destroy?
|
||||||
= link_to glyph('trash', classes: 'control-icon'), awaken_type_path(awaken_type), method: :delete
|
= link_to glyph('trash', classes: 'control-icon'), awaken_type_path(awaken_type), method: :delete
|
||||||
|
|
||||||
.row
|
- if policy(:awaken_type).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
= link_to 'New Awaken Type', new_awaken_type_path, class: 'btn btn-primary'
|
= link_to 'New Awaken Type', new_awaken_type_path, class: 'btn btn-primary'
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
.row
|
- if policy(:card).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
.pull-right
|
.pull-right
|
||||||
= link_to 'New Card', new_card_path, class: 'btn btn-primary'
|
= link_to 'New Card', new_card_path, class: 'btn btn-primary'
|
||||||
|
@ -17,9 +18,12 @@
|
||||||
td= card.name
|
td= card.name
|
||||||
td= card.title
|
td= card.title
|
||||||
td
|
td
|
||||||
|
- if policy(:card).edit?
|
||||||
= link_to glyph('edit', classes: 'control-icon'), edit_card_path(card)
|
= link_to glyph('edit', classes: 'control-icon'), edit_card_path(card)
|
||||||
|
- if policy(:card).destroy?
|
||||||
= link_to glyph('trash', classes: 'control-icon'), card_path(card), method: :delete
|
= link_to glyph('trash', classes: 'control-icon'), card_path(card), method: :delete
|
||||||
|
|
||||||
.row
|
- if policy(:card).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
= link_to 'New Card', new_card_path, class: 'btn btn-primary'
|
= link_to 'New Card', new_card_path, class: 'btn btn-primary'
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
.row
|
- if policy(:character).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
.pull-right
|
.pull-right
|
||||||
= link_to 'New Character', new_character_path, class: 'btn btn-primary'
|
= link_to 'New Character', new_character_path, class: 'btn btn-primary'
|
||||||
|
@ -15,9 +16,12 @@
|
||||||
tr
|
tr
|
||||||
td= character.name
|
td= character.name
|
||||||
td
|
td
|
||||||
|
- if policy(:character).edit?
|
||||||
= link_to glyph('edit', classes: 'control-icon'), edit_character_path(character)
|
= link_to glyph('edit', classes: 'control-icon'), edit_character_path(character)
|
||||||
|
- if policy(:character).destroy?
|
||||||
= link_to glyph('trash', classes: 'control-icon'), character_path(character), method: :delete
|
= link_to glyph('trash', classes: 'control-icon'), character_path(character), method: :delete
|
||||||
|
|
||||||
.row
|
- if policy(:character).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
= link_to 'New Character', new_character_path, class: 'btn btn-primary'
|
= link_to 'New Character', new_character_path, class: 'btn btn-primary'
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
.row
|
- if policy(:leader_skill).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
.pull-right
|
.pull-right
|
||||||
= link_to 'New Leader Skill', new_leader_skill_path, class: 'btn btn-primary'
|
= link_to 'New Leader Skill', new_leader_skill_path, class: 'btn btn-primary'
|
||||||
|
@ -15,9 +16,12 @@
|
||||||
tr
|
tr
|
||||||
td= leader_skill.description
|
td= leader_skill.description
|
||||||
td
|
td
|
||||||
|
- if policy(:leader_skill).edit?
|
||||||
= link_to glyph('edit', classes: 'control-icon'), edit_leader_skill_path(leader_skill)
|
= link_to glyph('edit', classes: 'control-icon'), edit_leader_skill_path(leader_skill)
|
||||||
|
- if policy(:leader_skill).destroy?
|
||||||
= link_to glyph('trash', classes: 'control-icon'), leader_skill_path(leader_skill), method: :delete
|
= link_to glyph('trash', classes: 'control-icon'), leader_skill_path(leader_skill), method: :delete
|
||||||
|
|
||||||
.row
|
- if policy(:leader_skill).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
= link_to 'New Leader Skill', new_leader_skill_path, class: 'btn btn-primary'
|
= link_to 'New Leader Skill', new_leader_skill_path, class: 'btn btn-primary'
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
.row
|
- if policy(:link).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
.pull-right
|
.pull-right
|
||||||
= link_to 'New Link', new_link_path, class: 'btn btn-primary'
|
= link_to 'New Link', new_link_path, class: 'btn btn-primary'
|
||||||
|
@ -17,9 +18,12 @@
|
||||||
td= link.name
|
td= link.name
|
||||||
td= link.description
|
td= link.description
|
||||||
td
|
td
|
||||||
|
- if policy(:link).edit?
|
||||||
= link_to glyph('edit', classes: 'control-icon'), edit_link_path(link)
|
= link_to glyph('edit', classes: 'control-icon'), edit_link_path(link)
|
||||||
|
- if policy(:link).destroy?
|
||||||
= link_to glyph('trash', classes: 'control-icon'), link_path(link), method: :delete
|
= link_to glyph('trash', classes: 'control-icon'), link_path(link), method: :delete
|
||||||
|
|
||||||
.row
|
- if policy(:link).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
= link_to 'New Link', new_link_path, class: 'btn btn-primary'
|
= link_to 'New Link', new_link_path, class: 'btn btn-primary'
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
.row
|
- if policy(:passive_skill).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
.pull-right
|
.pull-right
|
||||||
= link_to 'New Passive Skill', new_passive_skill_path, class: 'btn btn-primary'
|
= link_to 'New Passive Skill', new_passive_skill_path, class: 'btn btn-primary'
|
||||||
|
@ -17,9 +18,12 @@
|
||||||
td= passive_skill.name
|
td= passive_skill.name
|
||||||
td= passive_skill.description
|
td= passive_skill.description
|
||||||
td
|
td
|
||||||
|
- if policy(:passive_skill).edit?
|
||||||
= link_to glyph('edit', classes: 'control-icon'), edit_passive_skill_path(passive_skill)
|
= link_to glyph('edit', classes: 'control-icon'), edit_passive_skill_path(passive_skill)
|
||||||
|
- if policy(:passive_skill).destroy?
|
||||||
= link_to glyph('trash', classes: 'control-icon'), passive_skill_path(passive_skill), method: :delete
|
= link_to glyph('trash', classes: 'control-icon'), passive_skill_path(passive_skill), method: :delete
|
||||||
|
|
||||||
.row
|
- if policy(:passive_skill).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
= link_to 'New Passive Skill', new_passive_skill_path, class: 'btn btn-primary'
|
= link_to 'New Passive Skill', new_passive_skill_path, class: 'btn btn-primary'
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
.row
|
- if policy(:rarity).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
.pull-right
|
.pull-right
|
||||||
= link_to 'New Rarity', new_rarity_path, class: 'btn btn-primary'
|
= link_to 'New Rarity', new_rarity_path, class: 'btn btn-primary'
|
||||||
|
@ -17,9 +18,12 @@
|
||||||
td= rarity.name
|
td= rarity.name
|
||||||
td= rarity.description
|
td= rarity.description
|
||||||
td
|
td
|
||||||
|
- if policy(:rarity).edit?
|
||||||
= link_to glyph('edit', classes: 'control-icon'), edit_rarity_path(rarity)
|
= link_to glyph('edit', classes: 'control-icon'), edit_rarity_path(rarity)
|
||||||
|
- if policy(:rarity).destroy?
|
||||||
= link_to glyph('trash', classes: 'control-icon'), rarity_path(rarity), method: :delete
|
= link_to glyph('trash', classes: 'control-icon'), rarity_path(rarity), method: :delete
|
||||||
|
|
||||||
.row
|
- if policy(:rarity).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
= link_to 'New Rarity', new_rarity_path, class: 'btn btn-primary'
|
= link_to 'New Rarity', new_rarity_path, class: 'btn btn-primary'
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
.row
|
- if policy(:super_attack).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
.pull-right
|
.pull-right
|
||||||
= link_to 'New Super Attack', new_super_attack_path, class: 'btn btn-primary'
|
= link_to 'New Super Attack', new_super_attack_path, class: 'btn btn-primary'
|
||||||
|
@ -17,9 +18,12 @@
|
||||||
td= super_attack.name
|
td= super_attack.name
|
||||||
td= super_attack.description
|
td= super_attack.description
|
||||||
td
|
td
|
||||||
|
- if policy(:super_attack).edit?
|
||||||
= link_to glyph('edit', classes: 'control-icon'), edit_super_attack_path(super_attack)
|
= link_to glyph('edit', classes: 'control-icon'), edit_super_attack_path(super_attack)
|
||||||
|
- if policy(:super_attack).destroy?
|
||||||
= link_to glyph('trash', classes: 'control-icon'), super_attack_path(super_attack), method: :delete
|
= link_to glyph('trash', classes: 'control-icon'), super_attack_path(super_attack), method: :delete
|
||||||
|
|
||||||
.row
|
- if policy(:super_attack).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
= link_to 'New Super Attack', new_super_attack_path, class: 'btn btn-primary'
|
= link_to 'New Super Attack', new_super_attack_path, class: 'btn btn-primary'
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
.row
|
- if policy(:type).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
.pull-right
|
.pull-right
|
||||||
= link_to 'New Type', new_type_path, class: 'btn btn-primary'
|
= link_to 'New Type', new_type_path, class: 'btn btn-primary'
|
||||||
|
@ -17,9 +18,12 @@
|
||||||
td= type.name
|
td= type.name
|
||||||
td= type.description
|
td= type.description
|
||||||
td
|
td
|
||||||
|
- if policy(:type).edit?
|
||||||
= link_to glyph('edit', classes: 'control-icon'), edit_type_path(type)
|
= link_to glyph('edit', classes: 'control-icon'), edit_type_path(type)
|
||||||
|
- if policy(:type).destroy?
|
||||||
= link_to glyph('trash', classes: 'control-icon'), type_path(type), method: :delete
|
= link_to glyph('trash', classes: 'control-icon'), type_path(type), method: :delete
|
||||||
|
|
||||||
.row
|
- if policy(:type).new?
|
||||||
|
.row
|
||||||
.col-md-12
|
.col-md-12
|
||||||
= link_to 'New Type', new_type_path, class: 'btn btn-primary'
|
= link_to 'New Type', new_type_path, class: 'btn btn-primary'
|
||||||
|
|
5
app/views/users/_form.html.slim
Normal file
5
app/views/users/_form.html.slim
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
= simple_form_for @user do |f|
|
||||||
|
.form-inputs
|
||||||
|
= f.association :roles, as: :check_boxes
|
||||||
|
.form-actions
|
||||||
|
= f.button :button
|
1
app/views/users/edit.html.slim
Normal file
1
app/views/users/edit.html.slim
Normal file
|
@ -0,0 +1 @@
|
||||||
|
== render 'form'
|
16
app/views/users/index.html.slim
Normal file
16
app/views/users/index.html.slim
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
.row
|
||||||
|
.col-md-12
|
||||||
|
table.table.table-striped.table-hover
|
||||||
|
thead
|
||||||
|
tr
|
||||||
|
th Nickname
|
||||||
|
th Actions
|
||||||
|
tbody
|
||||||
|
- @users.each do |user|
|
||||||
|
tr
|
||||||
|
td= user.nickname
|
||||||
|
td
|
||||||
|
- if policy(:user).edit?
|
||||||
|
= link_to glyph('edit', classes: 'control-icon'), edit_user_path(user)
|
||||||
|
- if policy(:user).destroy?
|
||||||
|
= link_to glyph('trash', classes: 'control-icon'), user_path(user), method: :delete
|
7
config/initializers/rolify.rb
Normal file
7
config/initializers/rolify.rb
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
Rolify.configure do |config|
|
||||||
|
# By default ORM adapter is ActiveRecord. uncomment to use mongoid
|
||||||
|
# config.use_mongoid
|
||||||
|
|
||||||
|
# Dynamic shortcuts for User class (user.is_admin? like methods). Default is: false
|
||||||
|
# config.use_dynamic_shortcuts
|
||||||
|
end
|
|
@ -12,6 +12,7 @@ Rails.application.routes.draw do
|
||||||
resources :rarities
|
resources :rarities
|
||||||
resources :super_attacks
|
resources :super_attacks
|
||||||
resources :types
|
resources :types
|
||||||
|
resources :users, except: [:new, :create]
|
||||||
resources :welcome, only: [:index]
|
resources :welcome, only: [:index]
|
||||||
|
|
||||||
root to: 'welcome#index'
|
root to: 'welcome#index'
|
||||||
|
|
19
db/migrate/20151008192100_rolify_create_roles.rb
Normal file
19
db/migrate/20151008192100_rolify_create_roles.rb
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
class RolifyCreateRoles < ActiveRecord::Migration
|
||||||
|
def change
|
||||||
|
create_table(:roles) do |t|
|
||||||
|
t.string :name
|
||||||
|
t.references :resource, :polymorphic => true
|
||||||
|
|
||||||
|
t.timestamps
|
||||||
|
end
|
||||||
|
|
||||||
|
create_table(:users_roles, :id => false) do |t|
|
||||||
|
t.references :user
|
||||||
|
t.references :role
|
||||||
|
end
|
||||||
|
|
||||||
|
add_index(:roles, :name)
|
||||||
|
add_index(:roles, [ :name, :resource_type, :resource_id ])
|
||||||
|
add_index(:users_roles, [ :user_id, :role_id ])
|
||||||
|
end
|
||||||
|
end
|
20
db/schema.rb
20
db/schema.rb
|
@ -11,7 +11,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(version: 20151008163922) do
|
ActiveRecord::Schema.define(version: 20151008192100) do
|
||||||
|
|
||||||
create_table "awaken_types", force: :cascade do |t|
|
create_table "awaken_types", force: :cascade do |t|
|
||||||
t.string "name"
|
t.string "name"
|
||||||
|
@ -93,6 +93,17 @@ ActiveRecord::Schema.define(version: 20151008163922) do
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
create_table "roles", force: :cascade do |t|
|
||||||
|
t.string "name"
|
||||||
|
t.integer "resource_id"
|
||||||
|
t.string "resource_type"
|
||||||
|
t.datetime "created_at"
|
||||||
|
t.datetime "updated_at"
|
||||||
|
end
|
||||||
|
|
||||||
|
add_index "roles", ["name", "resource_type", "resource_id"], name: "index_roles_on_name_and_resource_type_and_resource_id"
|
||||||
|
add_index "roles", ["name"], name: "index_roles_on_name"
|
||||||
|
|
||||||
create_table "super_attacks", force: :cascade do |t|
|
create_table "super_attacks", force: :cascade do |t|
|
||||||
t.string "name"
|
t.string "name"
|
||||||
t.string "description"
|
t.string "description"
|
||||||
|
@ -116,4 +127,11 @@ ActiveRecord::Schema.define(version: 20151008163922) do
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
create_table "users_roles", id: false, force: :cascade do |t|
|
||||||
|
t.integer "user_id"
|
||||||
|
t.integer "role_id"
|
||||||
|
end
|
||||||
|
|
||||||
|
add_index "users_roles", ["user_id", "role_id"], name: "index_users_roles_on_user_id_and_role_id"
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
11
db/seeds.rb
11
db/seeds.rb
|
@ -19,6 +19,13 @@ awaken_types = [
|
||||||
'Extreme',
|
'Extreme',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
roles = [
|
||||||
|
:admin,
|
||||||
|
:moderator,
|
||||||
|
:user,
|
||||||
|
:guest,
|
||||||
|
]
|
||||||
|
|
||||||
types.each do |description, name|
|
types.each do |description, name|
|
||||||
Type.create(name: name, description: description)
|
Type.create(name: name, description: description)
|
||||||
end
|
end
|
||||||
|
@ -30,3 +37,7 @@ end
|
||||||
awaken_types.each do |name|
|
awaken_types.each do |name|
|
||||||
AwakenType.create(name: name)
|
AwakenType.create(name: name)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
roles.each do |role|
|
||||||
|
Role.where({ name: role }, without_protection: true).first_or_create
|
||||||
|
end
|
||||||
|
|
Loading…
Reference in a new issue