|
|
|
@ -36,15 +36,12 @@ class AdminController < ApplicationController
|
|
|
|
|
|
|
|
|
|
scope = Project.status(@status).order('lft')
|
|
|
|
|
scope = scope.like(params[:name]) if params[:name].present?
|
|
|
|
|
@projects = scope.all
|
|
|
|
|
@projects = scope.where(project_type: Project::ProjectType_project).all
|
|
|
|
|
|
|
|
|
|
render :action => "projects", :layout => false if request.xhr?
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def users
|
|
|
|
|
@project_type = params[:project_type]
|
|
|
|
|
role = params[:role]
|
|
|
|
|
|
|
|
|
|
sort_init 'login', 'asc'
|
|
|
|
|
sort_update %w(login firstname lastname mail admin created_on last_login_on)
|
|
|
|
|
|
|
|
|
@ -56,95 +53,14 @@ class AdminController < ApplicationController
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
@status = params[:status] || 1
|
|
|
|
|
has = {
|
|
|
|
|
"show_changesets" => true
|
|
|
|
|
}
|
|
|
|
|
# @count = Redmine::Activity::Fetcher.new(User.current, :author => @user).scope_select {|t| !has["show_#{t}"].nil?}.events(nil, nil).count
|
|
|
|
|
|
|
|
|
|
scope = UserStatus.visible
|
|
|
|
|
case role
|
|
|
|
|
when 'teacher'
|
|
|
|
|
scope = UserStatus.teacher
|
|
|
|
|
when 'student'
|
|
|
|
|
scope = UserStatus.student
|
|
|
|
|
else
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
scope = User.logged.status(@status)
|
|
|
|
|
scope = User.like(params[:name]) if params[:name].present?
|
|
|
|
|
scope = scope.in_group(params[:group_id]) if params[:group_id].present?
|
|
|
|
|
# scope.each do |user|
|
|
|
|
|
# UserStatus.create(:changesets_count => user.changesets.count, :watchers_count => user.watcher_users.count, :user_id => user.id)
|
|
|
|
|
# end
|
|
|
|
|
|
|
|
|
|
@user_count = scope.count
|
|
|
|
|
@user_pages = Paginator.new @user_count, @limit, params['page']
|
|
|
|
|
#@offset ||= @user_pages.offset
|
|
|
|
|
#@users = scope.order(sort_clause).limit(@limit).offset(@offset).all
|
|
|
|
|
@user_base_tag = params[:id] ? 'base_users':'base'
|
|
|
|
|
if params[:user_sort_type].present?
|
|
|
|
|
case params[:user_sort_type]
|
|
|
|
|
when '0'
|
|
|
|
|
@offset ||= @user_pages.reverse_offset
|
|
|
|
|
unless @offset == 0
|
|
|
|
|
@users_statuses = scope.offset(@offset).limit(@limit).all.reverse
|
|
|
|
|
else
|
|
|
|
|
limit = @user_count % @limit
|
|
|
|
|
if limit == 0
|
|
|
|
|
limit = @limit
|
|
|
|
|
end
|
|
|
|
|
@users_statuses = scope.offset(@offset).limit(limit).all.reverse
|
|
|
|
|
end
|
|
|
|
|
@s_type = 0
|
|
|
|
|
# @projects = @projects.sort {|x,y| y.created_on <=> x.created_on }
|
|
|
|
|
# @projects = @projects[@offset, @limit]
|
|
|
|
|
when '1'
|
|
|
|
|
@offset ||= @user_pages.reverse_offset
|
|
|
|
|
unless @offset == 0
|
|
|
|
|
@users_statuses = scope.reorder('grade').offset(@offset).limit(@limit).all.reverse
|
|
|
|
|
else
|
|
|
|
|
limit = @user_count % @limit
|
|
|
|
|
if limit == 0
|
|
|
|
|
limit = @limit
|
|
|
|
|
end
|
|
|
|
|
@users_statuses = scope.reorder('grade').offset(@offset).limit(limit).all.reverse
|
|
|
|
|
end
|
|
|
|
|
@s_type = 1
|
|
|
|
|
#sort {|x,y| y.user_status.changesets_count <=> x.user_status.changesets_count}
|
|
|
|
|
#@users = @users[@offset, @limit]
|
|
|
|
|
when '2'
|
|
|
|
|
@offset ||= @user_pages.reverse_offset
|
|
|
|
|
unless @offset == 0
|
|
|
|
|
@users_statuses = scope.reorder('watchers_count').offset(@offset).limit(@limit).all.reverse
|
|
|
|
|
else
|
|
|
|
|
limit = @user_count % @limit
|
|
|
|
|
if limit == 0
|
|
|
|
|
limit = @limit
|
|
|
|
|
end
|
|
|
|
|
@users_statuses = scope.reorder('watchers_count').offset(@offset).limit(limit).all.reverse
|
|
|
|
|
end
|
|
|
|
|
@s_type = 2
|
|
|
|
|
#@users = @users[@offset, @limit]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
@offset ||= @user_pages.reverse_offset
|
|
|
|
|
unless @offset == 0
|
|
|
|
|
@users_statuses = scope.reorder('grade').offset(@offset).limit(@limit).all.reverse
|
|
|
|
|
else
|
|
|
|
|
limit = @user_count % @limit
|
|
|
|
|
if limit == 0
|
|
|
|
|
limit = @limit
|
|
|
|
|
end
|
|
|
|
|
@users_statuses = scope.reorder('grade').offset(@offset).limit(limit).all.reverse
|
|
|
|
|
end
|
|
|
|
|
@s_type = 1
|
|
|
|
|
# @projects = @projects.sort {|x,y| y.created_on <=> x.created_on }
|
|
|
|
|
# @projects = @projects[@offset, @limit]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
@users = []
|
|
|
|
|
@users_statuses.each do |obj|
|
|
|
|
|
@users << User.find_by_id("#{obj.user_id}")
|
|
|
|
|
end
|
|
|
|
|
@offset ||= @user_pages.offset
|
|
|
|
|
@users = scope.order(sort_clause).limit(@limit).offset(@offset).all
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
@ -209,24 +125,13 @@ class AdminController < ApplicationController
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
@status = params[:status] || 1
|
|
|
|
|
has = {
|
|
|
|
|
"show_changesets" => true
|
|
|
|
|
}
|
|
|
|
|
scope = User.logged.status(@status)
|
|
|
|
|
scope = scope.like(params[:name]) if params[:name].present?
|
|
|
|
|
@user_count = scope.count
|
|
|
|
|
@user_pages = Paginator.new @user_count, @limit, params['page']
|
|
|
|
|
@user_base_tag = params[:id] ? 'base_users':'base'
|
|
|
|
|
@offset ||= @user_pages.reverse_offset
|
|
|
|
|
unless @offset == 0
|
|
|
|
|
@users = scope.offset(@offset).limit(@limit).all.reverse
|
|
|
|
|
else
|
|
|
|
|
limit = @user_count % @limit
|
|
|
|
|
if limit == 0
|
|
|
|
|
limit = @limit
|
|
|
|
|
end
|
|
|
|
|
@users = scope.offset(@offset).limit(limit).all.reverse
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
@users = scope.offset(@user_pages.offset).limit(@user_pages.per_page)
|
|
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
|
format.html {
|
|
|
|
|