add authorization

This commit is contained in:
manson 2014-08-01 12:24:34 +08:00
parent 0a087e1df4
commit 510fb3bf0b
4 changed files with 18 additions and 11 deletions

View File

@ -1,4 +1,6 @@
class Admin::PatentTypesController < OrbitAdminController
class Admin::PatentTypesController < OrbitMemberController
before_action :allow_admin_only
def new
@patent_type = PatentType.new
@url = admin_patent_types_path(@patent_type)

View File

@ -4,6 +4,9 @@ class Admin::PatentsController < OrbitMemberController
before_action :set_plugin
before_action :get_settings,:only => [:new, :edit, :setting]
before_action :need_access_right
before_action :allow_admin_only, :only => [:index, :setting]
def index
@patents = Patent.order_by(:year=>'desc').page(params[:page]).per(10)
end
@ -17,7 +20,7 @@ class Admin::PatentsController < OrbitMemberController
@member = MemberProfile.find(patent_params['member_profile_id']) rescue nil
@patent = Patent.new(patent_params)
@patent.save
redirect_to URI.encode('/admin/members/'+@member.to_param+'/Patent')
redirect_to params['referer_url']
end
def edit
@ -30,7 +33,7 @@ class Admin::PatentsController < OrbitMemberController
@patent = Patent.find(params[:id])
@patent.update_attributes(patent_params)
@patent.save
redirect_to URI.encode('/admin/members/'+@member.to_param+'/Patent')
redirect_to params['referer_url']
end
def destroy

View File

@ -208,6 +208,7 @@
<!-- Form Actions -->
<div class="form-actions">
<%= f.hidden_field :user_id, :value => params[:user_id] if !params[:user_id].blank? %>
<input type="hidden" name="referer_url" value="<%= request.referer %>">
<%= f.submit t('submit'), class: 'btn btn-primary' %>
<%= link_to t('cancel'), get_go_back, :class=>"btn" %>
</div>

View File

@ -6,15 +6,14 @@
<% end %>
<%
is_autorized_user = (current_user==@member.user || current_user.is_admin?)
if is_autorized_user
if has_access?
@patents = Patent.where(member_profile_id: @member.id).desc(:year).page(params[:page]).per(10)
else
@patents = Patent.where(is_hidden: false, member_profile_id: @member.id).desc(:year).page(params[:page]).per(10)
end
%>
<% if is_autorized_user %>
<% if has_access? %>
<div class="list-active">
<div class="btn-group">
<%= link_to('Hide', '#', :class => "btn btn-mini list-active-btn disabled", "data-check-action" => "list-be-hide", :rel => toggle_hide_admin_patents_path(member_profile_id: params[:id], disable: 'true') ) %>
@ -26,7 +25,7 @@
<table class="table table-condensed table-striped main-list">
<thead>
<tr>
<% if is_autorized_user %>
<% if has_access? %>
<th><input type="checkbox" /></th>
<% end -%>
<th class="span3"><%= t('personal_patent.publication_date') %></th>
@ -39,7 +38,7 @@
<tbody>
<% @patents.each do |patent| %>
<tr id="<%= dom_id patent %>" class="<%= patent.is_hidden ? "checkHide" : "" %>">
<% if is_autorized_user %>
<% if has_access? %>
<td>
<%= check_box_tag 'to_change[]', patent.id.to_s, false, :class => "list-check" %>
</td>
@ -49,8 +48,10 @@
<%= link_to patent.patent_title, OrbitHelper.url_to_plugin_show(patent.to_param,'personal_patent').to_s, target: "blank"%>
<div class="quick-edit">
<ul class="nav nav-pills hide">
<li><%= link_to t('edit'), '/admin/members/'+@member.to_param+'/patents/'+patent.id+'/edit' %></li>
<li><%= link_to t(:delete_), admin_patent_path(id: patent.id, member_profile_id: @member.id), method: :delete, remote: true, data: { confirm: t('sure?') } %></li>
<% if has_access? %>
<li><%= link_to t('edit'), '/admin/members/'+@member.to_param+'/patents/'+patent.id+'/edit' %></li>
<li><%= link_to t(:delete_), admin_patent_path(id: patent.id, member_profile_id: @member.id), method: :delete, remote: true, data: { confirm: t('sure?') } %></li>
<% end %>
</ul>
</div>
</td>
@ -64,7 +65,7 @@
<div class="bottomnav clearfix">
<% if is_autorized_user %>
<% if has_access? %>
<div class="action pull-right">
<%= link_to content_tag(:i, nil, :class => 'icon-edit') +' '+ t('setting'),'/admin/members/'+@member.to_param+'/patents/frontend_setting', :class => 'btn btn-primary' %>
<%= link_to content_tag(:i, nil, :class => 'icon-plus') +' '+ t('new_'),