2013-08-01 10:33:49 +08:00
|
|
|
# Redmine - project management software
|
|
|
|
# Copyright (C) 2006-2013 Jean-Philippe Lang
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
class WelcomeController < ApplicationController
|
2014-07-11 11:41:54 +08:00
|
|
|
include ApplicationHelper
|
2013-08-01 10:33:49 +08:00
|
|
|
caches_action :robots
|
2014-04-25 16:08:00 +08:00
|
|
|
# before_filter :fake, :only => [:index, :course]
|
2014-06-13 12:02:29 +08:00
|
|
|
before_filter :entry_select, :only => [:index]
|
2013-08-11 15:27:34 +08:00
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
def index
|
2014-07-11 11:41:54 +08:00
|
|
|
@first_page = FirstPage.where("page_type = 'project'").first
|
2013-08-01 10:33:49 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def robots
|
|
|
|
@projects = Project.all_public.active
|
|
|
|
render :layout => false, :content_type => 'text/plain'
|
|
|
|
end
|
2013-09-29 19:46:59 +08:00
|
|
|
|
2014-02-22 09:44:14 +08:00
|
|
|
def course
|
2014-07-11 11:41:54 +08:00
|
|
|
@course_page = FirstPage.where("page_type = 'course'").first
|
2014-07-03 17:28:13 +08:00
|
|
|
if params[:school_id]
|
|
|
|
@school_id = params[:school_id]
|
2014-07-04 09:10:17 +08:00
|
|
|
elsif User.current.logged? && User.current.user_extensions.school
|
2014-07-04 11:30:41 +08:00
|
|
|
@school_id = User.current.user_extensions.school.try(:id)
|
2014-07-03 17:28:13 +08:00
|
|
|
end
|
2014-06-03 11:19:20 +08:00
|
|
|
@logoLink ||= logolink()
|
2014-02-22 09:44:14 +08:00
|
|
|
end
|
2014-03-31 10:56:29 +08:00
|
|
|
|
2014-04-28 10:48:09 +08:00
|
|
|
|
|
|
|
|
2014-04-29 09:49:51 +08:00
|
|
|
def logolink()
|
2014-07-11 11:41:54 +08:00
|
|
|
@course_page = FirstPage.where("page_type = 'course'").first
|
|
|
|
logo = get_avatar?(@course_page)
|
2014-04-29 09:49:51 +08:00
|
|
|
id = params[:school_id]
|
2014-04-28 10:48:09 +08:00
|
|
|
logo_link = ""
|
2014-07-11 11:41:54 +08:00
|
|
|
if id.nil? && User.current.user_extensions.school.nil?
|
|
|
|
if logo
|
|
|
|
logo_link = url_to_avatar(@course_page)
|
|
|
|
else
|
|
|
|
logo_link = '/images/transparent.png'
|
|
|
|
end
|
|
|
|
|
2014-04-28 10:48:09 +08:00
|
|
|
else
|
2014-04-29 09:49:51 +08:00
|
|
|
if id == "0"
|
2014-07-11 11:41:54 +08:00
|
|
|
if logo
|
|
|
|
logo_link = url_to_avatar(@course_page)
|
|
|
|
else
|
|
|
|
logo_link = '/images/transparent.png'
|
|
|
|
end
|
2014-04-28 10:48:09 +08:00
|
|
|
else
|
|
|
|
if id.nil?
|
|
|
|
if School.find(User.current.user_extensions.school.id).logo_link.nil?
|
|
|
|
logo_link = '/images/transparent.png'
|
|
|
|
else
|
|
|
|
logo_link = School.find(User.current.user_extensions.school.id).logo_link
|
|
|
|
end
|
|
|
|
else
|
|
|
|
logo_link = School.find(id).logo_link
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return logo_link
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2014-03-31 10:56:29 +08:00
|
|
|
def contest
|
2014-07-11 11:41:54 +08:00
|
|
|
@contest_page = FirstPage.where("page_type = 'contest'").first
|
2014-03-31 10:56:29 +08:00
|
|
|
end
|
2014-03-01 10:14:01 +08:00
|
|
|
|
2014-03-25 16:53:11 +08:00
|
|
|
def search
|
|
|
|
search_condition = params[:q]
|
|
|
|
search_type = params[:search_type].to_sym unless search_condition.blank?
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html{
|
|
|
|
case search_type
|
|
|
|
when :projects
|
|
|
|
redirect_to projects_search_path(:name => search_condition,
|
|
|
|
:project_type => Project::ProjectType_project)
|
|
|
|
when :courses
|
2014-07-03 15:24:06 +08:00
|
|
|
redirect_to courses_search_path(:name => search_condition)
|
2014-03-25 16:53:11 +08:00
|
|
|
when :users
|
|
|
|
redirect_to users_search_path(:name => search_condition)
|
|
|
|
when :users_teacher
|
|
|
|
redirect_to users_search_path(:name => search_condition, :role => :teacher)
|
|
|
|
when :users_student
|
|
|
|
redirect_to users_search_path(:name => search_condition, :role => :student)
|
|
|
|
else
|
2014-07-05 14:43:15 +08:00
|
|
|
#redirect_to home_path, :alert => l(:label_sumbit_empty)
|
|
|
|
(redirect_to home_path, :notice => l(:label_sumbit_empty);return) #if params[:name].blank?
|
2014-03-25 16:53:11 +08:00
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-03-01 10:14:01 +08:00
|
|
|
private
|
|
|
|
|
2014-06-13 12:02:29 +08:00
|
|
|
def entry_select
|
|
|
|
url = request.original_url
|
|
|
|
if url.include?("course.trustie.net")
|
2014-06-13 16:46:57 +08:00
|
|
|
course
|
2014-06-13 12:02:29 +08:00
|
|
|
render :course
|
|
|
|
return 0
|
|
|
|
elsif url.include?("contest.trustie.net")
|
|
|
|
contest
|
|
|
|
render :contest
|
|
|
|
return 0
|
|
|
|
elsif url.include?("user.trustie.net")
|
|
|
|
redirect_to(:controller => "users", :action => "index")
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2014-03-01 10:14:01 +08:00
|
|
|
# 判断网站的入口,是课程 course 则跳过index去渲染 course 方法
|
2014-03-31 19:26:07 +08:00
|
|
|
def entry_select_course
|
2014-07-08 10:59:20 +08:00
|
|
|
if request.original_url.match(/.*course\.trustie\.net/)
|
2014-06-13 12:02:29 +08:00
|
|
|
(course() and render :course and return 0)
|
|
|
|
end
|
2014-03-01 10:14:01 +08:00
|
|
|
end
|
2013-09-29 19:46:59 +08:00
|
|
|
|
2014-03-31 10:56:29 +08:00
|
|
|
def entry_select_contest
|
2014-07-08 10:59:20 +08:00
|
|
|
if request.original_url.match(/.*contest\.trustie\.net/)
|
2014-03-31 19:26:07 +08:00
|
|
|
contest
|
2014-04-03 22:15:19 +08:00
|
|
|
render :contest
|
2014-03-31 10:56:29 +08:00
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|
2014-04-01 16:40:55 +08:00
|
|
|
|
|
|
|
def entry_select_user
|
2014-07-08 10:59:20 +08:00
|
|
|
if request.original_url.match(/.*user\.trustie\.net$/)
|
2014-04-01 16:40:55 +08:00
|
|
|
redirect_to(:controller => "users", :action => "index")
|
|
|
|
return 0
|
|
|
|
end
|
|
|
|
end
|
2014-04-04 21:30:40 +08:00
|
|
|
|
2014-06-03 11:19:20 +08:00
|
|
|
# def render(*args)
|
|
|
|
# _fake if @fake_filter
|
|
|
|
# super
|
|
|
|
# end
|
2014-04-04 21:30:40 +08:00
|
|
|
|
2014-06-03 11:19:20 +08:00
|
|
|
# private
|
2014-04-04 21:30:40 +08:00
|
|
|
|
2014-06-03 11:19:20 +08:00
|
|
|
# def fake
|
|
|
|
# @fake_filter = true
|
|
|
|
# end
|
2014-04-08 14:53:11 +08:00
|
|
|
|
2014-06-03 11:19:20 +08:00
|
|
|
# # 骗子方法
|
|
|
|
# def _fake
|
|
|
|
# instance_variables.map { |variable|
|
|
|
|
# if variable.to_s =~ /Count$/
|
|
|
|
# self.instance_variable_set(variable.to_sym,
|
|
|
|
# ("1" + (self.instance_variable_get(variable.to_sym).to_s)).to_i)
|
|
|
|
# end
|
|
|
|
# }
|
|
|
|
# end
|
2014-04-04 21:30:40 +08:00
|
|
|
|
2013-08-01 10:33:49 +08:00
|
|
|
end
|