邮件加入三个邮件设置
This commit is contained in:
parent
5c0d0230fc
commit
828d2caefa
|
@ -894,7 +894,6 @@ class ApplicationController < ActionController::Base
|
||||||
set_autologin_cookie(user)
|
set_autologin_cookie(user)
|
||||||
end
|
end
|
||||||
call_hook(:controller_account_success_authentication_after, {:user => user })
|
call_hook(:controller_account_success_authentication_after, {:user => user })
|
||||||
|
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -20,7 +20,7 @@ class MyController < ApplicationController
|
||||||
# edit
|
# edit
|
||||||
before_filter :auth_login1, :only => [:account]
|
before_filter :auth_login1, :only => [:account]
|
||||||
#
|
#
|
||||||
before_filter :require_login
|
before_filter :require_login, except: [:change_mail_notification]
|
||||||
|
|
||||||
helper :issues
|
helper :issues
|
||||||
helper :users
|
helper :users
|
||||||
|
@ -75,6 +75,19 @@ class MyController < ApplicationController
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def change_mail_notification
|
||||||
|
token = params[:token]
|
||||||
|
user = try_to_autologin1
|
||||||
|
if user
|
||||||
|
user.mail_notification = params[:mail_notification]
|
||||||
|
user.save
|
||||||
|
flash[:notice] = l(:notice_mail_notification_updated)
|
||||||
|
redirect_to my_account_url
|
||||||
|
else
|
||||||
|
redirect_to signin_url
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# Edit user's account
|
# Edit user's account
|
||||||
def account
|
def account
|
||||||
@user = User.current
|
@user = User.current
|
||||||
|
|
|
@ -57,5 +57,98 @@ class TestController < ApplicationController
|
||||||
attach.filename
|
attach.filename
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def mailer()
|
||||||
|
raise unless Rails.env.development?
|
||||||
|
@user = User.find(params[:user_id])
|
||||||
|
send_for_user_activities(@user, Time.now,1)
|
||||||
|
render 'mailer/send_for_user_activities'
|
||||||
|
end
|
||||||
|
def send_for_user_activities(user, date_to, days)
|
||||||
|
date_from = date_to - days.days
|
||||||
|
|
||||||
end
|
subject = "[ #{user.show_name}#{l(:label_day_mail)}]"
|
||||||
|
@subject = " #{user.show_name}#{l(:label_day_mail)}"
|
||||||
|
|
||||||
|
date_from = "#{date_from} 17:59:59"
|
||||||
|
date_to = "#{date_to} 17:59:59"
|
||||||
|
|
||||||
|
# 生成token用于直接点击登录
|
||||||
|
@user = user
|
||||||
|
token = Token.new(:user =>user , :action => 'autologin')
|
||||||
|
token.save
|
||||||
|
@token = token
|
||||||
|
|
||||||
|
# 查询user参加的项目及课程
|
||||||
|
projects = user.projects
|
||||||
|
courses = user.courses
|
||||||
|
project_ids = projects.map{|project| project.id}.join(",")
|
||||||
|
course_ids = courses.map {|course| course.id}.join(",")
|
||||||
|
|
||||||
|
# 查询user的缺陷,包括发布的,跟踪的以及被指派的缺陷
|
||||||
|
sql = "select DISTINCT i.* from issues i, watchers w
|
||||||
|
where (i.assigned_to_id = #{user.id} or i.author_id = #{user.id}
|
||||||
|
or (w.watchable_type = 'Issue' and w.watchable_id = i.id and w.user_id = #{user.id}))
|
||||||
|
and (i.created_on between '#{date_from}' and '#{date_to}') order by i.created_on desc"
|
||||||
|
@issues = Issue.find_by_sql(sql)
|
||||||
|
|
||||||
|
# @bids 查询课程作业,包括老师发布的作业,以及user提交作业
|
||||||
|
# @attachments查询课程课件更新
|
||||||
|
@attachments ||= []
|
||||||
|
|
||||||
|
@bids ||= [] # 老师发布的作业
|
||||||
|
|
||||||
|
unless courses.first.nil?
|
||||||
|
count = courses.count
|
||||||
|
count = count - 1
|
||||||
|
for i in 0..count do
|
||||||
|
bids = courses[i].homeworks.where("bids.created_on between '#{date_from}' and '#{date_to}'").order("bids.created_on desc")
|
||||||
|
attachments = courses[i].attachments.where("attachments.created_on between '#{date_from}' and '#{date_to}'").order('attachments.created_on DESC')
|
||||||
|
@bids += bids if bids.count > 0
|
||||||
|
@attachments += attachments if attachments.count > 0
|
||||||
|
end
|
||||||
|
end
|
||||||
|
# user 提交的作业
|
||||||
|
@homeworks = HomeworkAttach.where("user_id=#{user.id} and (created_at between '#{date_from}' and '#{date_to}')").order("created_at desc")
|
||||||
|
|
||||||
|
# 查询user在课程。项目中发布的讨论帖子
|
||||||
|
messages = Message.find_by_sql("select DISTINCT * from messages where author_id = #{user.id} and (created_on between '#{date_from}' and '#{date_to}') order by created_on desc")
|
||||||
|
@course_messages ||= []
|
||||||
|
@project_messages ||= []
|
||||||
|
unless messages.first.nil?
|
||||||
|
messages.each do |msg|
|
||||||
|
if msg.project
|
||||||
|
@project_messages << msg
|
||||||
|
elsif msg.course
|
||||||
|
@course_messages << msg
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
# 查询user在课程中发布的通知,项目中发的新闻
|
||||||
|
@course_news = (course_ids && !course_ids.empty?) ? News.find_by_sql("select DISTINCT n.* from news n
|
||||||
|
where n.course_id in (#{course_ids})
|
||||||
|
and (created_on between '#{date_from}' and '#{date_to}') order by created_on desc") : []
|
||||||
|
@project_news = (project_ids && !project_ids.empty?) ? News.find_by_sql("select DISTINCT n.* from news n where n.project_id in (#{project_ids})
|
||||||
|
and (created_on between '#{date_from}' and '#{date_to}') order by created_on desc") : []
|
||||||
|
|
||||||
|
# 查询user在课程及个人中留言
|
||||||
|
@course_journal_messages = JournalsForMessage.find_by_sql("select DISTINCT * from journals_for_messages where
|
||||||
|
jour_type='Course' and user_id = #{user.id}
|
||||||
|
and (created_on between '#{date_from}' and '#{date_to}') order by created_on desc")
|
||||||
|
@user_journal_messages = user.journals_for_messages.where("m_parent_id IS NULL and (created_on between '#{date_from}' and '#{date_to}')").order('created_on DESC')
|
||||||
|
|
||||||
|
|
||||||
|
# 查询user新建贴吧或发布帖子
|
||||||
|
@forums = Forum.find_by_sql("select DISTINCT * from forums where creator_id = #{user.id} and (created_at between '#{date_from}' and '#{date_to}') order by created_at desc")
|
||||||
|
@memos = Memo.find_by_sql("select DISTINCT m.* from memos m, forums f where (m.author_id = #{user.id} or (m.forum_id = f.id and f.creator_id = #{user.id}))
|
||||||
|
and (m.created_at between '#{date_from}' and '#{date_to}') order by m.created_at desc")
|
||||||
|
|
||||||
|
|
||||||
|
has_content = [@issues,@homeworks,@course_messages,@project_messages,@course_news,@project_news,
|
||||||
|
@course_journal_messages,@user_journal_messages,@forums,@memos,@attachments,@bids].any? {|o|
|
||||||
|
!o.empty?
|
||||||
|
}
|
||||||
|
#有内容才发,没有不发
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
end
|
||||||
|
|
|
@ -72,11 +72,8 @@ class Mailer < ActionMailer::Base
|
||||||
|
|
||||||
# 生成token用于直接点击登录
|
# 生成token用于直接点击登录
|
||||||
@user = user
|
@user = user
|
||||||
token = Token.new(:user =>user , :action => 'autologin')
|
@token = Token.get_token_from_user(user, 'autologin')
|
||||||
token.save
|
|
||||||
@token = token
|
|
||||||
|
|
||||||
@user_url = url_for(my_account_url(user,:token => @token.value))
|
|
||||||
# 查询user参加的项目及课程
|
# 查询user参加的项目及课程
|
||||||
projects = user.projects
|
projects = user.projects
|
||||||
courses = user.courses
|
courses = user.courses
|
||||||
|
@ -256,10 +253,9 @@ class Mailer < ActionMailer::Base
|
||||||
@author = issue.author
|
@author = issue.author
|
||||||
@issue = issue
|
@issue = issue
|
||||||
user = User.find_by_mail(recipients)
|
user = User.find_by_mail(recipients)
|
||||||
token = Token.new(:user =>user , :action => 'autologin')
|
@user = user
|
||||||
token.save
|
@token = Token.get_token_from_user(user, 'autologin')
|
||||||
@token = token
|
@issue_url = url_for(:controller => 'issues', :action => 'show', :id => issue.id, :token => @token.value)
|
||||||
@issue_url = url_for(:controller => 'issues', :action => 'show', :id => issue.id, :token => @token.value)
|
|
||||||
|
|
||||||
# edit
|
# edit
|
||||||
@issue_author_url = url_for(user_activities_url(@author,:token => @token.value))
|
@issue_author_url = url_for(user_activities_url(@author,:token => @token.value))
|
||||||
|
@ -299,10 +295,8 @@ class Mailer < ActionMailer::Base
|
||||||
@author = journal.user
|
@author = journal.user
|
||||||
|
|
||||||
user = User.find_by_mail(recipients)
|
user = User.find_by_mail(recipients)
|
||||||
|
@user = user
|
||||||
token = Token.new(:user =>user , :action => 'autologin')
|
@token = Token.get_token_from_user(user, 'autologin')
|
||||||
token.save
|
|
||||||
@token = token
|
|
||||||
|
|
||||||
|
|
||||||
# edit
|
# edit
|
||||||
|
|
|
@ -27,6 +27,14 @@ class Token < ActiveRecord::Base
|
||||||
self.value = Token.generate_token_value
|
self.value = Token.generate_token_value
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def self.get_token_from_user(user, action)
|
||||||
|
token = Token.where(:action => action, :user_id => user).first
|
||||||
|
unless token
|
||||||
|
token = Token.create(user: user, action: action)
|
||||||
|
end
|
||||||
|
token
|
||||||
|
end
|
||||||
|
|
||||||
# Return true if token has expired
|
# Return true if token has expired
|
||||||
def expired?
|
def expired?
|
||||||
return Time.now > self.created_on + @@validity_time
|
return Time.now > self.created_on + @@validity_time
|
||||||
|
|
|
@ -1,9 +1,13 @@
|
||||||
<div class="mail_content" style="margin-top:30px; margin:0; padding:0; border:0;">
|
<div class="mail_content" style="margin-top:30px; margin:0; padding:0; border:0;">
|
||||||
|
|
||||||
|
|
||||||
<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="mail_foot" style="margin:0; padding:0; border:0;"><%= link_to( l(:mail_issue_footer), @user_url , :style=>'font-size:12px; font-weight:normal; color:#1b55a7;') %> </div>
|
<div class="mail_foot" style="margin:0; padding:0; border:0;">
|
||||||
|
<% [:label_user_mail_option_all, :label_user_mail_option_day, :label_user_mail_option_none].each do |mail_option| %>
|
||||||
|
<% if Hash[*User::MAIL_NOTIFICATION_OPTIONS.flatten][@user.mail_notification] == mail_option %>
|
||||||
|
<label style="margin-top:20px;color:gray; margin-left:10px;"><%= l(mail_option) %></label>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to l(mail_option), my_change_mail_notification_url(token: @token.value,mail_notification: Hash[*User::MAIL_NOTIFICATION_OPTIONS.flatten].invert[mail_option]), :style => "margin-top:20px;color:#2775d2; margin-left:10px;" %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -3,5 +3,14 @@
|
||||||
|
|
||||||
|
|
||||||
<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
<%= render :partial => 'issue', :formats => [:html], :locals => { :issue => @issue, :issue_url => @issue_url } %>
|
||||||
<div class="mail_foot"><%= link_to( l(:mail_issue_footer), @user_url, :style=>'font-size:12px; font-weight:normal; color:#1b55a7;') %> </div>
|
|
||||||
|
<div class="mail_foot" style="margin:0; padding:0; border:0;">
|
||||||
|
<% [:label_user_mail_option_all, :label_user_mail_option_day, :label_user_mail_option_none].each do |mail_option| %>
|
||||||
|
<% if Hash[*User::MAIL_NOTIFICATION_OPTIONS.flatten][@user.mail_notification] == mail_option %>
|
||||||
|
<label style="margin-top:20px;color:gray; margin-left:10px;"><%= l(mail_option) %></label>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to l(mail_option), my_change_mail_notification_url(token: @token.value,mail_notification: Hash[*User::MAIL_NOTIFICATION_OPTIONS.flatten].invert[mail_option]), :style => "margin-top:20px;color:#2775d2; margin-left:10px;" %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
<h4 class="wmail_h4" style="color:#474646; font-size:14px; margin-bottom:5px;" >
|
<h4 class="wmail_h4" style="color:#474646; font-size:14px; margin-bottom:5px;" >
|
||||||
<%= @subject %>
|
<%= @subject %>
|
||||||
|
@ -365,9 +367,13 @@
|
||||||
</div><!--贴吧动态 end-->
|
</div><!--贴吧动态 end-->
|
||||||
<% end %>
|
<% end %>
|
||||||
<div class="wmail_foot" style="margin-top:20px;color:#2775d2; margin-left:10px;">
|
<div class="wmail_foot" style="margin-top:20px;color:#2775d2; margin-left:10px;">
|
||||||
<%= link_to l(:mail_footer), @user_url, :style => "margin-top:20px;color:#2775d2; margin-left:10px;" %>
|
<% [:label_user_mail_option_all, :label_user_mail_option_day, :label_user_mail_option_none].each do |mail_option| %>
|
||||||
|
<% if Hash[*User::MAIL_NOTIFICATION_OPTIONS.flatten][@user.mail_notification] == mail_option %>
|
||||||
|
<label style="margin-top:20px;color:gray; margin-left:10px;"><%= l(mail_option) %></label>
|
||||||
|
<% else %>
|
||||||
|
<%= link_to l(mail_option), my_change_mail_notification_url(token: @token.value,mail_notification: Hash[*User::MAIL_NOTIFICATION_OPTIONS.flatten].invert[mail_option]), :style => "margin-top:20px;color:#2775d2; margin-left:10px;" %>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -215,3 +215,11 @@ production:
|
||||||
# specific configuration options for development environment
|
# specific configuration options for development environment
|
||||||
# that overrides the default ones
|
# that overrides the default ones
|
||||||
development:
|
development:
|
||||||
|
delivery_method: :smtp
|
||||||
|
smtp_settings:
|
||||||
|
address: mail.trustie.net
|
||||||
|
port: 25
|
||||||
|
domain: mail.trustie.net
|
||||||
|
authentication: :login
|
||||||
|
user_name: "mail@trustie.net"
|
||||||
|
password: "loong2010"
|
||||||
|
|
|
@ -68,6 +68,7 @@ zh:
|
||||||
label_user_extensions: 其他信息
|
label_user_extensions: 其他信息
|
||||||
|
|
||||||
notice_account_updated: 帐号更新成功
|
notice_account_updated: 帐号更新成功
|
||||||
|
notice_mail_notification_updated: 邮件通知设置成功
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -744,9 +744,10 @@ zh:
|
||||||
label_theme: 主题
|
label_theme: 主题
|
||||||
label_default: 默认
|
label_default: 默认
|
||||||
label_search_titles_only: 仅在标题中搜索
|
label_search_titles_only: 仅在标题中搜索
|
||||||
label_user_mail_option_all: "收取我的所有通知"
|
label_user_mail_option_all: "实时发送邮件"
|
||||||
|
label_user_mail_option_day: "按日发送邮件"
|
||||||
|
label_user_mail_option_none: "不发送邮件"
|
||||||
label_user_mail_option_week: "按周收取我的所有通知"
|
label_user_mail_option_week: "按周收取我的所有通知"
|
||||||
label_user_mail_option_day: "按天收取我的所有通知"
|
|
||||||
label_must_answer: "必答"
|
label_must_answer: "必答"
|
||||||
label_poll_title: 问卷调查_问卷页面
|
label_poll_title: 问卷调查_问卷页面
|
||||||
#huang
|
#huang
|
||||||
|
@ -782,7 +783,6 @@ zh:
|
||||||
label_project_cousre_studentun: "你还未加入任何课程,赶快加入吧!"
|
label_project_cousre_studentun: "你还未加入任何课程,赶快加入吧!"
|
||||||
#end by huang
|
#end by huang
|
||||||
label_user_mail_option_selected: "收取选中项目的所有通知"
|
label_user_mail_option_selected: "收取选中项目的所有通知"
|
||||||
label_user_mail_option_none: "不收取任何通知"
|
|
||||||
label_user_mail_option_only_my_events: "只收取我跟踪或参与的项目的通知"
|
label_user_mail_option_only_my_events: "只收取我跟踪或参与的项目的通知"
|
||||||
label_user_mail_option_only_assigned: "只收取分配给我的"
|
label_user_mail_option_only_assigned: "只收取分配给我的"
|
||||||
label_user_mail_option_only_owner: 只收取由我创建的
|
label_user_mail_option_only_owner: 只收取由我创建的
|
||||||
|
|
|
@ -109,6 +109,7 @@ RedmineApp::Application.routes.draw do
|
||||||
namespace :test do
|
namespace :test do
|
||||||
match 'courselist'
|
match 'courselist'
|
||||||
match 'zip'
|
match 'zip'
|
||||||
|
match 'mailer'
|
||||||
end
|
end
|
||||||
##new added by linchun #以发布应用的形式参与竞赛
|
##new added by linchun #以发布应用的形式参与竞赛
|
||||||
resources :softapplications do
|
resources :softapplications do
|
||||||
|
@ -328,6 +329,7 @@ RedmineApp::Application.routes.draw do
|
||||||
match 'my/add_block', :via => :post
|
match 'my/add_block', :via => :post
|
||||||
match 'my/remove_block', :via => :post
|
match 'my/remove_block', :via => :post
|
||||||
match 'my/order_blocks', :via => :post
|
match 'my/order_blocks', :via => :post
|
||||||
|
match 'my/change_mail_notification', via: :get
|
||||||
|
|
||||||
get 'my/page2', :to => 'my#page2', :as => "my_page2"
|
get 'my/page2', :to => 'my#page2', :as => "my_page2"
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/usr/bin/env ruby
|
#!/usr/bin/env ruby
|
||||||
|
|
||||||
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'config', 'environment'))
|
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'config', 'environment'))
|
||||||
require 'delayed/command'
|
require 'delayed/command'
|
||||||
Delayed::Command.new(ARGV).daemonize
|
Delayed::Command.new(ARGV).daemonize
|
||||||
|
|
Loading…
Reference in New Issue