2014-12-17 14:50:57 +08:00
|
|
|
|
class UsersService
|
|
|
|
|
include ApplicationHelper
|
|
|
|
|
include AccountHelper
|
|
|
|
|
include AvatarHelper
|
|
|
|
|
include CoursesHelper
|
|
|
|
|
#将用户注册的功能函数写这里
|
|
|
|
|
#参数约定
|
|
|
|
|
#成功返回注册后的User实例,失败直接抛异常
|
|
|
|
|
|
|
|
|
|
def register(params)
|
|
|
|
|
@user = User.new
|
|
|
|
|
@user.admin = false
|
|
|
|
|
@user.register
|
|
|
|
|
@user.login = params[:login]
|
|
|
|
|
@user.mail = params[:mail]
|
|
|
|
|
password = params[:password]
|
|
|
|
|
password_confirmation = params[:password_confirmation]
|
|
|
|
|
should_confirmation_password = params[:should_confirmation_password]
|
|
|
|
|
if !password.blank? && !password_confirmation.blank? && should_confirmation_password
|
|
|
|
|
@user.password, @user.password_confirmation = password, password_confirmation
|
|
|
|
|
elsif !password.blank? && !should_confirmation_password
|
|
|
|
|
@user.password = password
|
|
|
|
|
else
|
|
|
|
|
@user.password = ""
|
|
|
|
|
end
|
|
|
|
|
case Setting.self_registration
|
|
|
|
|
when '1'
|
|
|
|
|
@user = email_activation_register(@user)
|
|
|
|
|
when '3'
|
|
|
|
|
@user = automatically_register(@user)
|
|
|
|
|
else
|
|
|
|
|
@user = administrator_manually__register(@user)
|
|
|
|
|
end
|
|
|
|
|
if @user.id != nil
|
|
|
|
|
ue = @user.user_extensions ||= UserExtensions.new
|
|
|
|
|
ue.user_id = @user.id
|
|
|
|
|
ue.save
|
|
|
|
|
end
|
2015-01-06 16:51:44 +08:00
|
|
|
|
img_url = url_to_avatar(@user)
|
|
|
|
|
gender = @user.user_extensions.gender.nil? ? 0 : @user.user_extensions.gender
|
|
|
|
|
work_unit = get_user_work_unit @user
|
|
|
|
|
location = get_user_location @user
|
|
|
|
|
{:id => @user.id, :img_url => img_url, :nickname => @user.login, :gender => gender, :work_unit => work_unit, :mail => @user.mail, :location => location, :brief_introduction => @user.user_extensions.brief_introduction}
|
2014-12-17 14:50:57 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
#显示用户
|
|
|
|
|
#id用户id
|
|
|
|
|
def show_user(params)
|
|
|
|
|
@user = User.find(params[:id])
|
|
|
|
|
img_url = url_to_avatar(@user)
|
|
|
|
|
gender = @user.user_extensions.gender.nil? ? 0 : @user.user_extensions.gender
|
2014-12-23 17:43:53 +08:00
|
|
|
|
work_unit = get_user_work_unit @user
|
|
|
|
|
location = get_user_location @user
|
2014-12-17 14:50:57 +08:00
|
|
|
|
{:id => @user.id, :img_url => img_url, :nickname => @user.login, :gender => gender, :work_unit => work_unit, :mail => @user.mail, :location => location, :brief_introduction => @user.user_extensions.brief_introduction}
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
#编辑用户
|
|
|
|
|
#gender 1:female 0:male 其他:male
|
|
|
|
|
def edit_user params
|
|
|
|
|
@user = User.find(params[:id])
|
|
|
|
|
fileio = params[:file]
|
|
|
|
|
|
|
|
|
|
@se = @user.extensions
|
|
|
|
|
if @user.user_extensions.identity == 0 || @user.user_extensions.identity == 1
|
|
|
|
|
@se.school_id = params[:occupation]
|
|
|
|
|
elsif @user.user_extensions.identity == 3
|
|
|
|
|
@se.occupation = params[:occupation]
|
|
|
|
|
elsif @user.user_extensions.identity == 2
|
|
|
|
|
@user.firstname = params[:occupation]
|
|
|
|
|
end
|
|
|
|
|
@se.brief_introduction = params[:brief_introduction]
|
|
|
|
|
@se.gender = params[:gender]
|
|
|
|
|
@se.location = params[:province] if params[:province]
|
|
|
|
|
@se.location_city = params[:city] if params[:city]
|
|
|
|
|
raise @se.errors.full_message unless @se.save
|
|
|
|
|
unless fileio.nil?
|
|
|
|
|
file = fileio[:tempfile]
|
|
|
|
|
diskfile=disk_filename(@user.class.to_s, @user.id)
|
|
|
|
|
@image_file = fileio[:name]
|
|
|
|
|
@urlfile='/' << File.join("images", "avatars", avatar_directory(@user.class.to_s), avatar_filename(@user.id, @image_file))
|
|
|
|
|
|
|
|
|
|
path = File.dirname(diskfile)
|
|
|
|
|
unless File.directory?(path)
|
|
|
|
|
FileUtils.mkdir_p(path)
|
|
|
|
|
end
|
|
|
|
|
File.rename(file.path, @urlfile)
|
|
|
|
|
begin
|
|
|
|
|
f = Magick::ImageList.new(diskfile)
|
|
|
|
|
# gif格式不再做大小处理
|
|
|
|
|
if f.format != 'GIF'
|
|
|
|
|
width = 300.0
|
|
|
|
|
proportion = (width/f[0].columns)
|
|
|
|
|
height = (f[0].rows*proportion)
|
|
|
|
|
f.resize_to_fill!(width, height)
|
|
|
|
|
f.write(diskfile)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
rescue Exception => e
|
|
|
|
|
logger.error "[Error] avatar : users_service#edit_user ===> #{e}"
|
|
|
|
|
end
|
|
|
|
|
end
|
2015-01-06 16:51:44 +08:00
|
|
|
|
img_url = url_to_avatar(@user)
|
|
|
|
|
gender = @user.user_extensions.gender.nil? ? 0 : @user.user_extensions.gender
|
|
|
|
|
work_unit = get_user_work_unit @user
|
|
|
|
|
location = get_user_location @user
|
|
|
|
|
{:id => @user.id, :img_url => img_url, :nickname => @user.login, :gender => gender, :work_unit => work_unit, :mail => @user.mail, :location => location, :brief_introduction => @user.user_extensions.brief_introduction}
|
2014-12-23 17:43:53 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
#获取用户的工作单位
|
|
|
|
|
def get_user_work_unit user
|
|
|
|
|
work_unit = ""
|
|
|
|
|
if user.user_extensions.identity == 0 || user.user_extensions.identity == 1
|
|
|
|
|
work_unit = user.user_extensions.school.name unless user.user_extensions.school.nil?
|
|
|
|
|
elsif user.user_extensions.identity == 3
|
|
|
|
|
work_unit = user.user_extensions.occupation
|
|
|
|
|
elsif user.user_extensions.identity == 2
|
|
|
|
|
work_unit = user.firstname
|
|
|
|
|
end
|
|
|
|
|
work_unit
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
#获取用户地区
|
|
|
|
|
def get_user_location user
|
|
|
|
|
location = ""
|
|
|
|
|
location << (user.user_extensions.location || '')
|
|
|
|
|
location << (user.user_extensions.location_city || '')
|
|
|
|
|
location
|
2014-12-17 14:50:57 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
#关注列表
|
|
|
|
|
def user_watcher params
|
|
|
|
|
@user = User.find(params[:id])
|
|
|
|
|
User.watched_by(@user.id)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
#用户课程列表
|
2014-12-23 15:38:45 +08:00
|
|
|
|
def user_courses_list params,current_user
|
|
|
|
|
@user = User.find(params[:id])
|
|
|
|
|
if !current_user.admin? && !@user.active?
|
2014-12-17 14:50:57 +08:00
|
|
|
|
raise '404'
|
|
|
|
|
return
|
|
|
|
|
end
|
2014-12-23 15:38:45 +08:00
|
|
|
|
if current_user == @user || current_user.admin?
|
2014-12-17 14:50:57 +08:00
|
|
|
|
membership = @user.coursememberships.all
|
|
|
|
|
else
|
|
|
|
|
membership = @user.coursememberships.all(:conditions => Course.visible_condition(User.current))
|
|
|
|
|
end
|
|
|
|
|
membership.sort! {|older, newer| newer.created_on <=> older.created_on }
|
2015-01-06 17:46:16 +08:00
|
|
|
|
course_list = []
|
|
|
|
|
membership.each do |mp|
|
|
|
|
|
course_list << {:course => mp.course,:img_url => url_to_avatar(mp.course)}
|
|
|
|
|
end
|
|
|
|
|
course_list
|
2014-12-17 14:50:57 +08:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
#修改密码
|
|
|
|
|
def change_password params
|
|
|
|
|
@current_user = User.find(params[:current_user_id])
|
|
|
|
|
if @current_user.check_password?(params[:password])
|
|
|
|
|
@current_user.password, @current_user.password_confirmation = params[:new_password], params[:new_password_confirmation]
|
|
|
|
|
@current_user.save
|
|
|
|
|
#raise @current_user.errors.full_message
|
|
|
|
|
#return @current_user
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
raise 'wrong password'
|
|
|
|
|
end
|
|
|
|
|
@current_user
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
#搜索用户
|
|
|
|
|
def search_user params
|
|
|
|
|
@status = params[:status] || 1
|
|
|
|
|
has = {
|
|
|
|
|
"show_changesets" => true
|
|
|
|
|
}
|
|
|
|
|
scope = User.logged.status(@status)
|
2015-01-13 15:12:05 +08:00
|
|
|
|
@search_by = params[:search_by] ? params[:search_by] : "0"
|
2014-12-17 14:50:57 +08:00
|
|
|
|
scope = scope.like(params[:name],@search_by) if params[:name].present?
|
|
|
|
|
scope
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
end
|