Skip to content
Snippets Groups Projects
Commit 55d899cb authored by Mateus Rambo Strey's avatar Mateus Rambo Strey
Browse files

add institutions to management

parent 59af2144
No related branches found
No related tags found
No related merge requests found
Showing
with 228 additions and 4 deletions
class Management::InstitutionsController < ManagementController
before_action :set_institution, only: [:show, :edit, :update, :destroy]
# GET /management/institutions
# GET /management/institutions.json
def index
@institutions = institution_repository.all || []
end
# GET /management/institutions/1
# GET /management/institutions/1.json
def show
end
# GET /management/institutions/new
def new
@institution = Institution.new
end
# GET /management/institutions/1/edit
def edit
end
# POST /management/institutions
# POST /management/institutions.json
def create
@institution = Institution.new(institution_params)
respond_to do |format|
if institution_repository.create @institution
format.html { redirect_to [:management, @institution], notice: 'Institution was successfully created.' }
format.json { render :show, status: :created, location: @institution }
else
format.html { render :new }
format.json { render json: @institution.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /management/institutions/1
# PATCH/PUT /management/institutions/1.json
def update
respond_to do |format|
if @institution.update(institution_params)
format.html { redirect_to [:management, @institution], notice: 'Institution was successfully updated.' }
format.json { render :show, status: :ok, location: @institution }
else
format.html { render :edit }
format.json { render json: @institution.errors, status: :unprocessable_entity }
end
end
end
# DELETE /management/institutions/1
# DELETE /management/institutions/1.json
def destroy
institution_repository.destroy @institution
respond_to do |format|
format.html { redirect_to management_institutions_url, notice: 'Institution was successfully destroyed.' }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_institution
@institution = institution_repository.find(params[:id])
end
# Never trust parameters from the scary internet, only allow the white list through.
def institution_params
params[:institution]
end
end
class ManagementController < ApplicationController
include RepositoriesProxy
before_action :authenticate_user!
before_action :is_admin?
layout 'management'
private
def is_admin?
unless current_user.is_admin?
redirect_to :root
end
end
end
......@@ -3,4 +3,16 @@ class Role < ActiveRecord::Base
validates_presence_of :name
validates_uniqueness_of :name
def self.admin
self.find_by_name('admin') || self.create!(name: 'admin')
end
def self.teacher
self.find_by_name('teacher') || self.create!(name: 'teacher')
end
def self.curator
self.find_by_name('student') || self.create!(name: 'student')
end
end
......@@ -50,4 +50,12 @@ class User < ActiveRecord::Base
learning_object_repository.all self
end
def is_admin?
roles.each do |role|
return true if role.name == "admin"
end
false
end
end
......@@ -2,8 +2,11 @@ module OrientDb
class InstitutionRepository < Base
include OrientDb::Methods::EdgeMethods
def create(name)
connection.command sprintf("INSERT INTO Institution (name, created_at, last_modified) VALUES ('%s', '%s', '%s')", name, Time.now, Time.now)
def create(institution)
institution = connection.command sprintf("INSERT INTO Institution (name, created_at, last_modified, country, city, description, thumbnail, address) VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s')",
institution.name, Time.now, Time.now, institution.country, institution.city, institution.description, institution.thumbnail, institution.address )
find(institution["result"][0]["@rid"]) || false
end
def get_by_name(name)
......
<%= form_for([:management, @institution], html: {class: 'ls-form row'}) do |f| %>
<% if @institution.errors.any? %>
<div class="ls-alert-danger">
<h2><%= pluralize(@institution.errors.count, "erro") %> <%= "happened".pluralize(@institution.errors.count) %>:</h2>
<ul>
<% @institution.errors.full_messages.each do |message| %>
<li><%= message %></li>
<% end %>
</ul>
</div>
<% end %>
<fieldset>
<label class="ls-label col-md-6">
<b class="ls-label-text">Nome</b>
<p>Digite o nome da instituição</p>
<%= f.text_field :name, {required: true} %>
</label>
<label class="ls-label col-md-6">
<b class="ls-label-text">Cidade</b>
<p>Digite a cidade da instituição</p>
<%= f.text_field :city %>
</label>
<label class="ls-label col-md-6">
<b class="ls-label-text">País</b>
<p>Digite o país da instituição</p>
<%= f.text_field :country %>
</label>
<label class="ls-label col-md-6">
<b class="ls-label-text">Endereço</b>
<p>Digite o endereço da instituição</p>
<%= f.text_field :address %>
</label>
<label class="ls-label col-md-6">
<b class="ls-label-text">Descrição</b>
<p>É possível adicionar uma descrição para a insituição</p>
<%= f.text_field :description %>
</label>
</fieldset>
<div class="ls-actions-btn">
<button class="ls-btn">Salvar</button>
<%= link_to "Cancelar", management_institutions_path,class: "ls-btn-danger"%>
</div>
<% end %>
<h1>Editing Management Institution</h1>
<%= render 'form' %>
<%= link_to 'Show', @management_institution %> |
<%= link_to 'Back', management_institutions_path %>
<h1 class="ls-title-intro ls-ico-users">Instituições</h1>
<a href="<%= new_management_institution_path %>" class="ls-btn-primary" aria-expanded="false" role="combobox">Cadastrar nova</a>
<table class="ls-table">
<thead>
<tr>
<th>Nome</th>
<th>Cidade</th>
<th>País</th>
<th>Endereço</th>
<th>Descrição</th>
<!-- <th></th> -->
<th></th>
</tr>
</thead>
<tbody>
<% @institutions.each do |institution| %>
<tr>
<td><%= institution.name %></td>
<td><%= institution.city %></td>
<td><%= institution.country %></td>
<td><%= institution.address %></td>
<td><%= institution.description %></td>
<!-- <td class="ls-txt-right ls-regroup"><%= link_to 'Editar', edit_management_institution_path(institution.id) %></td> -->
<td><%= link_to 'Excluir', management_institution_path(institution.id), method: :delete, data: { confirm: 'Você tem certeza?' } %></td>
</tr>
<% end %>
</tbody>
</table>
json.array!(@management_institutions) do |management_institution|
json.extract! management_institution, :id
json.url management_institution_url(management_institution, format: :json)
end
<h1 class="ls-title-intro ls-ico-users">Instituição</h1>
<ol class="ls-breadcrumb">
<li><%= link_to 'Instituição', management_institutions_path %></li>
<li>Nova Instituição</li>
</ol>
<%= render 'form' %>
<p id="notice"><%= notice %></p>
<%= link_to 'Edit', edit_management_institution_path(@management_institution) %> |
<%= link_to 'Back', management_institutions_path %>
json.extract! @management_institution, :id, :created_at, :updated_at
......@@ -20,6 +20,7 @@
<li><%= link_to "Usuários", management_users_path, class: 'ls-submenu-item' %></li>
<li><%= link_to "Curadores", '#', class: 'ls-submenu-item' %></li>
<li><%= link_to "Administradores", '#', class: 'ls-submenu-item' %></li>
<li><%= link_to "Instituições", management_institutions_path, class: 'ls-submenu-item' %></li>
</ul>
</li>
<li><%= link_to "Denúncias", '#', class: 'ls-ico-bullhorn' %>
......
......@@ -10,6 +10,8 @@ Rails.application.routes.draw do
namespace :management do
root 'welcome#index'
resources :institutions
resources :statistics do
collection do
get :users
......
......@@ -7,4 +7,12 @@
# Mayor.create(name: 'Emanuel', city: cities.first)
Role.create(name: 'teacher', description: 'This role represents a Teacher in Portal MEC.')
Role.create(name: 'admin', description: 'This role represents an MEC Admin, that can perform any action.')
Role.create(name: 'curator', description: 'This role represents a content Curator in Portal MEC.')
\ No newline at end of file
Role.create(name: 'curator', description: 'This role represents a content Curator in Portal MEC.')
# create the default admin
User.create!(
email: 'admin@inf.ufpr.br',
name: 'admin',
password: '123mudar',
roles: [Role.admin]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment