This commit is contained in:
r888888888
2015-06-25 13:51:05 -07:00
parent 3cc7dbbedc
commit 1d9596d7f2
64 changed files with 244 additions and 140 deletions

View File

@@ -145,4 +145,8 @@ protected
Rails.application.config.session_store :cookie_store, :key => '_danbooru_session', :secure => false
end
end
def post_approvers_only
CurrentUser.can_approve_posts?
end
end

View File

@@ -1,7 +1,7 @@
class ForumTopicsController < ApplicationController
respond_to :html, :xml, :json
before_filter :member_only, :except => [:index, :show]
before_filter :janitor_only, :only => [:new_merge, :create_merge]
before_filter :moderator_only, :only => [:new_merge, :create_merge]
before_filter :normalize_search, :only => :index
def new

View File

@@ -1,5 +1,5 @@
class IpBansController < ApplicationController
before_filter :janitor_only
before_filter :moderator_only
def new
@ip_ban = IpBan.new

View File

@@ -1,6 +1,6 @@
module Moderator
class DashboardsController < ApplicationController
before_filter :janitor_only
before_filter :moderator_only
helper :post_flags, :post_appeals
def show

View File

@@ -1,6 +1,6 @@
module Moderator
class IpAddrsController < ApplicationController
before_filter :janitor_only
before_filter :moderator_only
def index
@search = IpAddrSearch.new(params[:search])

View File

@@ -1,7 +1,7 @@
module Moderator
module Post
class ApprovalsController < ApplicationController
before_filter :janitor_only
before_filter :post_approvers_only
def create
@post = ::Post.find(params[:post_id])

View File

@@ -1,7 +1,7 @@
module Moderator
module Post
class DisapprovalsController < ApplicationController
before_filter :janitor_only
before_filter :post_approvers_only
def create
@post = ::Post.find(params[:post_id])

View File

@@ -1,7 +1,7 @@
module Moderator
module Post
class PostsController < ApplicationController
before_filter :janitor_only, :only => [:delete, :undelete, :ban, :unban, :confirm_delete, :confirm_ban]
before_filter :moderator_only, :only => [:delete, :undelete, :ban, :unban, :confirm_delete, :confirm_ban]
before_filter :admin_only, :only => [:expunge]
rescue_from ::PostFlag::Error, :with => :rescue_exception

View File

@@ -2,7 +2,7 @@ module Moderator
module Post
class QueuesController < ApplicationController
respond_to :html, :json
before_filter :janitor_only
before_filter :post_approvers_only
def show
::Post.without_timeout do

View File

@@ -1,7 +1,7 @@
class PoolsController < ApplicationController
respond_to :html, :xml, :json, :js
before_filter :member_only, :except => [:index, :show, :gallery]
before_filter :janitor_only, :only => [:destroy]
before_filter :moderator_only, :only => [:destroy]
def new
@pool = Pool.new

View File

@@ -1,5 +1,5 @@
class TagAliasCorrectionsController < ApplicationController
before_filter :janitor_only
before_filter :builder_only
def create
@correction = TagAliasCorrection.new(params[:tag_alias_id])

View File

@@ -1,7 +1,7 @@
class WikiPagesController < ApplicationController
respond_to :html, :xml, :json, :js
before_filter :member_only, :except => [:index, :show, :show_or_new]
before_filter :janitor_only, :only => [:destroy]
before_filter :moderator_only, :only => [:destroy]
before_filter :normalize_search_params, :only => [:index]
rescue_from ActiveRecord::StatementInvalid, :with => :rescue_exception
rescue_from ActiveRecord::RecordNotFound, :with => :rescue_exception

View File

@@ -7,7 +7,7 @@ module PostFlagsHelper
html << '<li>'
html << DText.parse_inline(flag.reason).html_safe
if CurrentUser.is_janitor?
if CurrentUser.is_moderator?
html << ' - ' + link_to_user(flag.creator)
end

View File

@@ -108,6 +108,10 @@ class AnonymousUser
false
end
def can_approve_posts?
false
end
def blacklisted_tags
""
end

View File

@@ -329,7 +329,7 @@ class Artist < ActiveRecord::Base
end
def other_names_match(string)
if string =~ /\*/ && CurrentUser.user.is_builder?
if string =~ /\*/ && CurrentUser.is_builder?
where("other_names ILIKE ? ESCAPE E'\\\\'", string.to_escaped_for_sql_like)
else
where("other_names_index @@ to_tsquery('danbooru', E?)", Artist.normalize_name(string).to_escaped_for_tsquery)
@@ -352,7 +352,7 @@ class Artist < ActiveRecord::Base
def any_name_matches(name)
stripped_name = normalize_name(name).to_escaped_for_sql_like
if name =~ /\*/ && CurrentUser.user.is_builder?
if name =~ /\*/ && CurrentUser.is_builder?
where("(name LIKE ? ESCAPE E'\\\\' OR other_names LIKE ? ESCAPE E'\\\\')", stripped_name, stripped_name)
else
name_for_tsquery = normalize_name(name).to_escaped_for_tsquery
@@ -479,6 +479,6 @@ class Artist < ActiveRecord::Base
end
def visible?
!is_banned? || CurrentUser.user.is_janitor?
!is_banned? || CurrentUser.is_moderator?
end
end

View File

@@ -61,7 +61,7 @@ class BulkUpdateRequest < ActiveRecord::Base
end
def editable?(user)
user_id == user.id || user.is_janitor?
user_id == user.id || user.is_builder?
end
def create_forum_topic

View File

@@ -165,7 +165,7 @@ class Comment < ActiveRecord::Base
end
def editable_by?(user)
creator_id == user.id || user.is_janitor?
creator_id == user.id || user.is_moderator?
end
def hidden_attributes

View File

@@ -92,7 +92,7 @@ class ForumPost < ActiveRecord::Base
end
def validate_topic_is_unlocked
return if CurrentUser.user.is_janitor?
return if CurrentUser.user.is_moderator?
return if topic.nil?
if topic.is_locked?
@@ -110,7 +110,7 @@ class ForumPost < ActiveRecord::Base
end
def editable_by?(user)
creator_id == user.id || user.is_janitor?
creator_id == user.id || user.is_moderator?
end
def update_topic_updated_at_on_create

View File

@@ -119,7 +119,7 @@ class ForumTopic < ActiveRecord::Base
include SubscriptionMethods
def editable_by?(user)
creator_id == user.id || user.is_janitor?
creator_id == user.id || user.is_moderator?
end
def initialize_is_deleted

View File

@@ -1,6 +1,5 @@
class JanitorTrial < ActiveRecord::Base
belongs_to :user
before_create :initialize_original_level
after_create :send_dmail
after_create :promote_user
validates_presence_of :user
@@ -54,10 +53,6 @@ class JanitorTrial < ActiveRecord::Base
self.creator_id = CurrentUser.id
end
def initialize_original_level
self.original_level = user.level
end
def user_name
user.try(:name)
end
@@ -67,13 +62,14 @@ class JanitorTrial < ActiveRecord::Base
end
def send_dmail
body = "You have been selected as a test janitor. You can now approve pending posts and have access to the moderation interface. You should reacquaint yourself with the [[howto:upload]] guide to make sure you understand the site rules.\n\nOver the next several weeks your approvals will be monitored. If the majority of them are not quality uploads you will fail the trial period and be demoted back to your original level. You will also receive a negative user record indicating you previously attempted and failed a test janitor trial.\n\nThere is a minimum quota of 1 approval a month to indicate that you are being active. Remember, the goal isn't to approve as much as possible. It's to filter out borderline-quality art.\n\nIf you have any questions please respond to this message."
body = "You have been selected as a test janitor. You can now approve pending posts and have access to the moderation interface. You should reacquaint yourself with the [[howto:upload]] guide to make sure you understand the site rules.\n\nOver the next several weeks your approvals will be monitored. If the majority of them are not quality uploads you will fail the trial period and lose your approval privileges. You will also receive a negative user record indicating you previously attempted and failed a test janitor trial.\n\nThere is a minimum quota of 1 approval a month to indicate that you are being active. Remember, the goal isn't to approve as much as possible. It's to filter out borderline-quality art.\n\nIf you have any questions please respond to this message."
Dmail.create_split(:title => "Test Janitor Trial Period", :body => body, :to_id => user_id)
end
def promote_user
user.promote_to!(User::Levels::JANITOR, :skip_dmail => true)
user.can_approve_posts = true
user.save
end
def create_feedback
@@ -88,8 +84,9 @@ class JanitorTrial < ActiveRecord::Base
end
def demote!
user.can_approve_posts = false
user.save
update_attribute(:status, "inactive")
user.update_column(:level, original_level)
self.create_feedback
end

View File

@@ -207,7 +207,7 @@ class Pool < ActiveRecord::Base
end
def deletable_by?(user)
user.is_janitor?
user.is_moderator?
end
def create_mod_action_for_delete

View File

@@ -46,11 +46,11 @@ class PostFlag < ActiveRecord::Base
q = q.reason_matches(params[:reason_matches])
end
if params[:creator_id].present? && (CurrentUser.user.is_janitor? || params[:creator_id].to_i == CurrentUser.user.id)
if params[:creator_id].present? && (CurrentUser.is_moderator? || params[:creator_id].to_i == CurrentUser.user.id)
q = q.where("creator_id = ?", params[:creator_id].to_i)
end
if params[:creator_name].present? && CurrentUser.user.is_janitor?
if params[:creator_name].present? && CurrentUser.is_moderator?
q = q.where("creator_id = (select _.id from users _ where lower(_.name) = ?)", params[:creator_name].mb_chars.downcase.strip.tr(" ", "_"))
end
@@ -84,7 +84,7 @@ class PostFlag < ActiveRecord::Base
end
def validate_creator_is_not_limited
if CurrentUser.is_janitor?
if CurrentUser.can_approve_posts?
# do nothing
elsif creator.created_at > 1.week.ago
errors[:creator] << "cannot flag within the first week of sign up"

View File

@@ -2,7 +2,7 @@ class Tag < ActiveRecord::Base
METATAGS = "-user|user|-approver|approver|commenter|comm|noter|noteupdater|artcomm|-pool|pool|ordpool|favgroup|-fav|fav|ordfav|sub|md5|-rating|rating|-locked|locked|width|height|mpixels|ratio|score|favcount|filesize|source|-source|id|-id|date|age|order|limit|-status|status|tagcount|gentags|arttags|chartags|copytags|parent|-parent|child|pixiv_id|pixiv"
SUBQUERY_METATAGS = "commenter|comm|noter|noteupdater|artcomm"
attr_accessible :category, :as => [:moderator, :janitor, :contributor, :gold, :member, :anonymous, :default, :builder, :admin]
attr_accessible :is_locked, :as => [:moderator, :janitor, :admin]
attr_accessible :is_locked, :as => [:moderator, :admin]
has_one :wiki_page, :foreign_key => "title", :primary_key => "name"
module ApiMethods

View File

@@ -224,7 +224,7 @@ class TagAlias < ActiveRecord::Base
def deletable_by?(user)
return true if user.is_admin?
return true if is_pending? && user.is_janitor?
return true if is_pending? && user.can_approve_posts?
return true if is_pending? && user.id == creator_id
return false
end

View File

@@ -207,7 +207,7 @@ class TagImplication < ActiveRecord::Base
def deletable_by?(user)
return true if user.is_admin?
return true if is_pending? && user.is_janitor?
return true if is_pending? && user.is_builder?
return true if is_pending? && user.id == creator_id
return false
end

View File

@@ -29,7 +29,8 @@ class User < ActiveRecord::Base
:style_usernames => 0x0200,
:enable_auto_complete => 0x0400,
:show_deleted_children => 0x0800,
:has_saved_searches => 0x1000
:has_saved_searches => 0x1000,
:can_approve_posts => 0x2000
}
attr_accessor :password, :old_password

View File

@@ -9,7 +9,7 @@ class WikiPage < ActiveRecord::Base
belongs_to :updater, :class_name => "User"
validates_uniqueness_of :title, :case_sensitive => false
validates_presence_of :title
validate :validate_locker_is_janitor
validate :validate_locker_is_moderator
validate :validate_not_locked
attr_accessible :title, :body, :is_locked, :other_names
has_one :tag, :foreign_key => "name", :primary_key => "title"
@@ -112,15 +112,15 @@ class WikiPage < ActiveRecord::Base
titled(title).select("title, id").first
end
def validate_locker_is_janitor
if is_locked_changed? && !CurrentUser.is_janitor?
errors.add(:is_locked, "can be modified by janitors only")
def validate_locker_is_moderator
if is_locked_changed? && !CurrentUser.is_moderator?
errors.add(:is_locked, "can be modified by moderators only")
return false
end
end
def validate_not_locked
if is_locked? && !CurrentUser.is_janitor?
if is_locked? && !CurrentUser.is_moderator?
errors.add(:is_locked, "and cannot be updated")
return false
end
@@ -230,7 +230,7 @@ class WikiPage < ActiveRecord::Base
end
def visible?
artist.blank? || !artist.is_banned? || CurrentUser.user.is_janitor?
artist.blank? || !artist.is_banned? || CurrentUser.is_moderator?
end
def other_names_array

View File

@@ -40,7 +40,7 @@ class WikiPageVersion < ActiveRecord::Base
end
def visible?
artist.blank? || !artist.is_banned? || CurrentUser.user.is_janitor?
artist.blank? || !artist.is_banned? || CurrentUser.is_moderator?
end
def other_names_array

View File

@@ -8,7 +8,7 @@
<th width="5%">Post</th>
<th>Original</th>
<th>Translated</th>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<th width="10%">IP Address</th>
<% end %>
<th width="10%">Edited By</th>
@@ -30,7 +30,7 @@
<h3><%= h(commentary_version.translated_title) %></h3>
<%= h(commentary_version.translated_description) %>
</td>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<td>
<%= commentary_version.updater_ip_addr %>
</td>

View File

@@ -11,7 +11,7 @@
<th>Group</th>
<th>Updated</th>
<th>Updated by</th>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<th>IP Address</th>
<% end %>
<th>Active</th>
@@ -31,7 +31,7 @@
<td><%= artist_version.group_name %></td>
<td><%= compact_time artist_version.created_at %></td>
<td><%= link_to_user artist_version.updater %></td>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<td>
<%= artist_version.updater_ip_addr %>
</td>

View File

@@ -1,4 +1,4 @@
<% if CurrentUser.is_janitor? || !forum_post.is_deleted? %>
<% if CurrentUser.is_moderator? || !forum_post.is_deleted? %>
<article class="forum-post" id="forum_post_<%= forum_post.id %>" data-forum-post-id="<%= forum_post.id %>" data-creator="<%= forum_post.creator.name %>">
<div class="author">
<h4>
@@ -23,7 +23,7 @@
<% if CurrentUser.is_member? && @forum_topic %>
<li><%= link_to "Quote", new_forum_post_path(:post_id => forum_post.id), :method => :get, :remote => true %></li>
<% end %>
<% if CurrentUser.is_janitor? && !forum_post.is_original_post? %>
<% if CurrentUser.is_moderator? && !forum_post.is_original_post? %>
<% if forum_post.is_deleted %>
<li><%= link_to "Undelete", undelete_forum_post_path(forum_post.id), :method => :post, :remote => true %></li>
<% else %>

View File

@@ -11,7 +11,7 @@
</thead>
<tbody>
<% @forum_posts.each do |forum_post| %>
<% if CurrentUser.is_janitor? || !forum_post.is_deleted? %>
<% if CurrentUser.is_moderator? || !forum_post.is_deleted? %>
<tr>
<td><%= link_to forum_post.topic.title, forum_topic_path(forum_post.topic) %></td>
<td>

View File

@@ -17,7 +17,7 @@
<%= dtext_field "forum_post", "body", :input_name => "forum_topic[original_post_attributes][body]", :value => forum_topic.original_post.body, :input_id => "forum_post_body_for_#{forum_topic.original_post.id}", :preview_id => "dtext-preview-for-#{forum_topic.original_post.id}" %>
<% end %>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<%= f.input :is_sticky %>
<%= f.input :is_locked %>
<% end %>

View File

@@ -20,7 +20,7 @@
<% end %>
<% if !@forum_topic.new_record? && @forum_topic.editable_by?(CurrentUser.user) %>
<li><%= link_to "Edit", edit_forum_topic_path(@forum_topic) %></li>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<% if @forum_topic.is_deleted? %>
<li><%= link_to "Undelete", undelete_forum_topic_path(@forum_topic), :method => :post %></li>
<% else %>

View File

@@ -18,7 +18,7 @@
<%= render "forum_posts/listing", :forum_posts => @forum_posts %>
<% if CurrentUser.is_member? %>
<% if CurrentUser.is_janitor? || !@forum_topic.is_locked? %>
<% if CurrentUser.is_moderator? || !@forum_topic.is_locked? %>
<p><%= link_to "Reply &raquo;".html_safe, new_forum_post_path(:topic_id => @forum_topic.id), :id => "new-response-link" %></p>
<div style="display: none;" id="topic-response">

View File

@@ -1,5 +1,5 @@
<menu class="main">
<% if CurrentUser.user.is_anonymous? %>
<% if CurrentUser.is_anonymous? %>
<%= nav_link_to("Sign in", new_session_path, :class => "login") %>
<% else %>
<%= nav_link_to("My Account #{CurrentUser.dmail_count}", user_path(CurrentUser.user)) %>
@@ -15,8 +15,8 @@
<% end %>
<%= nav_link_to("Pools", pools_path) %>
<%= nav_link_to("Wiki", wiki_pages_path(:title => "help:home")) %>
<%= nav_link_to("Forum", forum_topics_path, :class => (CurrentUser.user.has_forum_been_updated? ? "forum-updated" : nil)) %>
<% if CurrentUser.is_janitor? %>
<%= nav_link_to("Forum", forum_topics_path, :class => (CurrentUser.has_forum_been_updated? ? "forum-updated" : nil)) %>
<% if CurrentUser.is_moderator? %>
<%= nav_link_to("Dashboard", moderator_dashboard_path) %>
<% end %>
<%= nav_link_to("More &raquo;".html_safe, site_map_path, :id => "site-map-link") %>

View File

@@ -74,7 +74,7 @@
| <%= link_to "Approve", approve_tag_alias_path(tag_alias), :remote => true, :method => :post %>
<% end %>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_builder? %>
| <%= link_to "Fix", tag_alias_correction_path(:tag_alias_id => tag_alias.id) %>
<% end %>
</td>

View File

@@ -10,7 +10,7 @@
<th width="5%">Note</th>
<th>Body</th>
<th width="5%">Position</th>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<th width="10%">IP Address</th>
<% end %>
<th width="10%">Edited By</th>
@@ -36,7 +36,7 @@
<td>
<%= note_version_position_diff(note_version) %>
</td>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<td>
<%= note_version.updater_ip_addr %>
</td>

View File

@@ -9,7 +9,7 @@
<th>Post Count</th>
<th>Changes</th>
<th>Updater</th>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<th>IP Address</th>
<% end %>
<th>Date</th>
@@ -25,7 +25,7 @@
<td><%= link_to pool_version.post_id_array.size, pool_versions_path(:search => {:pool_id => pool_version.pool_id}) %></td>
<td><%= pool_version_diff(pool_version) %></td>
<td><%= link_to_user pool_version.updater%></td>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<td>
<%= pool_version.updater_ip_addr %>
</td>

View File

@@ -19,7 +19,7 @@
</td>
</tr>
<% if CurrentUser.user.is_janitor? %>
<% if CurrentUser.user.is_moderator? %>
<tr>
<th><label for="search_creator_name">Creator</th>
<td>

View File

@@ -7,7 +7,7 @@
<thead>
<tr>
<th width="1%"></th>
<% if CurrentUser.user.is_janitor? %>
<% if CurrentUser.user.is_moderator? %>
<th width="10%">Creator</th>
<% end %>
<th>Reason</th>
@@ -18,7 +18,7 @@
<% @post_flags.each do |post_flag| %>
<tr class="resolved-<%= post_flag.is_resolved? %>">
<td><%= PostPresenter.preview(post_flag.post, :tags => "status:any") %></td>
<% if CurrentUser.user.is_janitor? %>
<% if CurrentUser.user.is_moderator? %>
<td>
<%= link_to_user post_flag.creator %>
</td>

View File

@@ -7,7 +7,7 @@
<th width="10%">User</th>
<th width="5%">Rating</th>
<th width="5%">Parent</th>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<th width="10%">IP Address</th>
<% end %>
<th>Tags</th>
@@ -28,7 +28,7 @@
</td>
<td><%= post_version.rating %></td>
<td><%= post_version.parent_id %></td>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<td>
<%= post_version.updater_ip_addr %>
</td>

View File

@@ -7,13 +7,13 @@
<% unless CurrentUser.is_anonymous? %>
<li><%= link_to "Favorites", favorites_path %></li>
<li><%= link_to "Favorite groups", favorite_groups_path %></li>
<% if CurrentUser.user.has_saved_searches? %>
<% if CurrentUser.has_saved_searches? %>
<li><%= link_to "Saved searches", saved_searches_path %></li>
<% end %>
<li><%= link_to "Subscriptions", posts_path(:tags => "sub:#{CurrentUser.name}") %></li>
<% end %>
<li class="nonessential"><%= link_to "Changes", post_versions_path %></li>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.can_approve_posts? %>
<li class="nonessential"><%= link_to "Moderate", moderator_post_queue_path %></li>
<% end %>
<li class="nonessential"><%= link_to "Help", wiki_pages_path(:title => "help:posts") %></li>

View File

@@ -17,7 +17,7 @@
<option value="lock-rating">Lock rating</option>
<option value="lock-note">Lock notes</option>
<% end %>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.can_approve_posts? %>
<option value="approve">Approve</option>
<% end %>
</select>

View File

@@ -27,7 +27,7 @@
<div class="ui-corner-all ui-state-highlight notice notice-pending" id="pending-approval-notice">
This post is pending approval (<%= link_to "learn more", wiki_pages_path(:title => "about:mod_queue") %>)
<% if CurrentUser.is_janitor? && !post.disapproved_by?(CurrentUser.user) %>
<% if CurrentUser.can_approve_posts? && !post.disapproved_by?(CurrentUser.user) %>
<div class="quick-mod">
<% unless post.is_status_locked? %>
<%= link_to "Approve", moderator_post_approval_path(:post_id => post.id), :method => :post, :remote => true, :class => "btn" %> |

View File

@@ -28,7 +28,7 @@
<li><%= link_to "Appeal", new_post_appeal_path(:post_id => post.id), :id => "appeal" %></li>
<% end %>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.can_approve_posts? %>
<% if post.is_deleted? %>
<li><%= link_to "Undelete", undelete_moderator_post_post_path(:post_id => post.id), :remote => true, :method => :post, :id => "undelete" %></li>
<% else %>

View File

@@ -11,7 +11,7 @@
<li><%= link_to("Upload Listing", uploads_path) %></li>
<li><%= link_to("Appeals", post_appeals_path) %></li>
<li><%= link_to("Flags", post_flags_path) %></li>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.can_approve_posts? %>
<li><%= link_to("Moderate", moderator_post_queue_path) %></li>
<% end %>
<% if CurrentUser.is_admin? %>
@@ -87,7 +87,7 @@
<section>
<ul>
<li><h1>Users</h1></li>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.can_approve_posts? %>
<li><%= link_to("Dashboard", moderator_dashboard_path) %></li>
<% end %>
<li><%= link_to("Help", wiki_pages_path(:title => "help:users")) %></li>

View File

@@ -36,7 +36,7 @@
| <%= link_to "Approve", approve_tag_alias_path(tag_alias), :remote => true, :method => :post %>
<% end %>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_builder? %>
| <%= link_to "Fix", tag_alias_correction_path(:tag_alias_id => tag_alias.id) %>
<% end %>
</td>

View File

@@ -9,7 +9,7 @@
<%= f.input :category, :collection => Danbooru.config.canonical_tag_category_mapping.to_a, :include_blank => false %>
<% end %>
<% if CurrentUser.user.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<%= f.input :is_locked, :collection => [["No", "false"], ["Yes", "true"]], :include_blank => false %>
<% end %>

View File

@@ -94,14 +94,14 @@
<td><%= presenter.comment_count(self) %> in <%= presenter.commented_posts_count(self) %> posts</td>
</tr>
<% if CurrentUser.user.id == user.id || CurrentUser.user.is_janitor? %>
<% if CurrentUser.user.id == user.id || CurrentUser.is_moderator? %>
<tr>
<th>Appeals</th>
<td><%= presenter.appeal_count(self) %></td>
</tr>
<% end %>
<% if CurrentUser.user.id == user.id || CurrentUser.user.is_janitor? %>
<% if CurrentUser.user.id == user.id || CurrentUser.is_moderator? %>
<tr>
<th>Flags</th>
<td><%= presenter.flag_count(self) %></td>
@@ -126,7 +126,7 @@
</td>
</tr>
<% if CurrentUser.user.is_janitor? && presenter.previous_names.present? %>
<% if CurrentUser.is_moderator? && presenter.previous_names.present? %>
<tr>
<th>Previous Names</th>
<td><%= presenter.previous_names %></td>

View File

@@ -14,7 +14,7 @@
<th>Name</th>
<th>Posts</th>
<th>Deleted</th>
<% if CurrentUser.user.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<th><abbr title="3+ Score Binomial Confidence Interval">5+ SBCI</abbr></th>
<th><abbr title="6+ Score Binomial Confidence Interval">10+ SBCI</abbr></th>
<% end %>
@@ -40,7 +40,7 @@
</td>
<td><%= link_to user.posts.count, posts_path(:tags => "user:#{user.name}") %></td>
<td><%= user.posts.deleted.count %></td>
<% if CurrentUser.user.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<td><%= number_to_percentage Reports::UserPromotions.confidence_interval_for(user, 3), :precision => 0 %></td>
<td><%= number_to_percentage Reports::UserPromotions.confidence_interval_for(user, 6), :precision => 0 %></td>
<% end %>

View File

@@ -16,7 +16,7 @@
<% end %>
<th>Title</th>
<th width="5%"></th>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<th width="10%">IP Address</th>
<% end %>
<th width="26%">Last edited</th>
@@ -50,7 +50,7 @@
<% end %>
<td class="category-<%= wiki_page_version.category_name %>"><%= link_to wiki_page_version.title, wiki_page_version_path(wiki_page_version) %></td>
<td><%= link_to "wiki", wiki_page_path(wiki_page_version.wiki_page_id) %></td>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<td>
<%= wiki_page_version.updater_ip_addr %>
</td>

View File

@@ -18,7 +18,7 @@
<%= dtext_field "wiki_page", "body" %>
<% if CurrentUser.user.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<%= f.input :is_locked %>
<% end %>

View File

@@ -18,7 +18,7 @@
<% if CurrentUser.is_member? %>
<li><%= link_to "Edit", edit_wiki_page_path(@wiki_page), :id => "wiki-page-edit-link" %></li>
<% end %>
<% if CurrentUser.is_janitor? %>
<% if CurrentUser.is_moderator? %>
<li><%= link_to "Delete", wiki_page_path(@wiki_page), :remote => true, :method => :delete, :data => {:confirm => "Are you sure you want to delete this wiki page?"} %></li>
<% end %>
<% end %>