From 81fdc31f8be26110e913268a9e604b443f58eaf3 Mon Sep 17 00:00:00 2001 From: cxt <853663049@qq.com> Date: Wed, 12 Feb 2020 16:12:20 +0800 Subject: [PATCH 01/13] =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- db/migrate/20200212072045_add_columns_to_live_links.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 db/migrate/20200212072045_add_columns_to_live_links.rb diff --git a/db/migrate/20200212072045_add_columns_to_live_links.rb b/db/migrate/20200212072045_add_columns_to_live_links.rb new file mode 100644 index 000000000..e0c59dcfa --- /dev/null +++ b/db/migrate/20200212072045_add_columns_to_live_links.rb @@ -0,0 +1,8 @@ +class AddColumnsToLiveLinks < ActiveRecord::Migration[5.2] + def change + add_column :live_links, :course_name, :string + add_column :live_links, :platform, :string + add_column :live_links, :live_time, :datetime + add_column :live_links, :duration, :integer + end +end From 7b39ff089474a1f2cdad872254659bec8c48f181 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=98=8E?= <775174143@qq.com> Date: Thu, 13 Feb 2020 10:08:14 +0800 Subject: [PATCH 02/13] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=9F=8E=E5=B8=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/react/src/common/components/form/City.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/public/react/src/common/components/form/City.js b/public/react/src/common/components/form/City.js index b397c8b59..e74ef5f09 100644 --- a/public/react/src/common/components/form/City.js +++ b/public/react/src/common/components/form/City.js @@ -120,7 +120,7 @@ const options = [{ value: '广东', label: '广东', children: [{ - value: "广州", + value: "广州", label: '广州' },{ value: '深圳', @@ -493,6 +493,9 @@ const options = [{ children: [{ value: "兰州", label: '兰州' + },{ + value: "嘉谷关", + label: '嘉谷关' },{ value: '白银', label: '白银' @@ -537,7 +540,7 @@ const options = [{ value: '广西', label: '广西', children: [{ - value: "南宁", + value: "南宁", label: '南宁' },{ value: '百色', From c2f6c187e354a928343217a0e9239bf3bbbdfe64 Mon Sep 17 00:00:00 2001 From: daiao <358551898@qq.com> Date: Thu, 13 Feb 2020 10:40:24 +0800 Subject: [PATCH 03/13] =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/tasks/statistic_subject_info.rake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/tasks/statistic_subject_info.rake b/lib/tasks/statistic_subject_info.rake index e7bf4116a..50980c2e8 100644 --- a/lib/tasks/statistic_subject_info.rake +++ b/lib/tasks/statistic_subject_info.rake @@ -10,7 +10,7 @@ namespace :subjects do column_value = "subject_id, study_count, course_study_count, initiative_study, passed_count, course_used_count, " + "school_used_count, created_at, updated_at" subjects.find_in_batches(batch_size: 50) do |s| - Parallel.each_with_index(s, in_processes: 4) do |subject, index| + Parallel.each_with_index(s, in_threads: 4) do |subject, index| puts("---------------------data_statistic: #{subject.id}") Rails.logger.info("---------------------data_statistic: #{subject.id}") data = Subjects::DataStatisticService.new(subject) @@ -51,7 +51,7 @@ namespace :subjects do "choice_shixun_frequency, created_at, updated_at" subjects.find_in_batches(batch_size: 50) do |s| - Parallel.each(s, in_processes: 4) do |subject| + Parallel.each(s, in_threads: 4) do |subject| puts("---------------------course_info_statistic: #{subject.id}") Rails.logger.info("---------------------course_info_statistic: #{subject.id}") data = Subjects::CourseUsedInfoService.call(subject) @@ -90,7 +90,7 @@ namespace :subjects do column_value = "subject_id, shixun_id, stage, shixun_name, challenge_count, course_count, " + "school_count, used_count, passed_count, evaluate_count, passed_ave_time, created_at, updated_at" subjects.find_in_batches(batch_size: 50) do |s| - Parallel.each_with_index(s, in_processes: 4) do |subject| + Parallel.each_with_index(s, in_threads: 4) do |subject| puts("---------------------shixun_info_statistic: #{subject.id}") Rails.logger.info("---------------------shixun_info_statistic: #{subject.id}") data = Subjects::ShixunUsedInfoService.call(subject) @@ -131,7 +131,7 @@ namespace :subjects do "code_line_count, evaluate_count, cost_time, created_at, updated_at" subjects.find_in_batches(batch_size: 50) do |s| - Parallel.each_with_index(s, in_processes: 4) do |subject, index| + Parallel.each_with_index(s, in_threads: 4) do |subject, index| puts("---------------------user_info_statistic: #{subject.id}") data = Subjects::UserUsedInfoService.call(subject) data.each do |key| From ce96219d00678168ee8e30eb409811c6148229e5 Mon Sep 17 00:00:00 2001 From: daiao <358551898@qq.com> Date: Thu, 13 Feb 2020 11:09:18 +0800 Subject: [PATCH 04/13] =?UTF-8?q?=E6=89=A7=E8=A1=8C=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/tasks/statistic_subject_info.rake | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lib/tasks/statistic_subject_info.rake b/lib/tasks/statistic_subject_info.rake index 50980c2e8..8c3c02fb2 100644 --- a/lib/tasks/statistic_subject_info.rake +++ b/lib/tasks/statistic_subject_info.rake @@ -10,7 +10,7 @@ namespace :subjects do column_value = "subject_id, study_count, course_study_count, initiative_study, passed_count, course_used_count, " + "school_used_count, created_at, updated_at" subjects.find_in_batches(batch_size: 50) do |s| - Parallel.each_with_index(s, in_threads: 4) do |subject, index| + Parallel.each_with_index(s, in_processes: 4) do |subject, index| puts("---------------------data_statistic: #{subject.id}") Rails.logger.info("---------------------data_statistic: #{subject.id}") data = Subjects::DataStatisticService.new(subject) @@ -23,7 +23,8 @@ namespace :subjects do "#{data.passed_count}, #{data.course_used_count}, #{data.school_used_count}, " + "'#{Time.now.strftime('%Y-%m-%d %H:%M:%S')}', '#{Time.now.strftime('%Y-%m-%d %H:%M:%S')}')") buffer_size += 1 - if buffer_size == 1000 || subjects.count == (index+1) + puts "buffer_size: #{buffer_size}; subjects_count: #{s.count}; index:#{index+1}" + if buffer_size == 1000 || s.count == (index+1) sql = "REPLACE INTO subject_records(#{column_value}) VALUES #{str}" puts sql ActiveRecord::Base.connection.execute sql @@ -51,7 +52,7 @@ namespace :subjects do "choice_shixun_frequency, created_at, updated_at" subjects.find_in_batches(batch_size: 50) do |s| - Parallel.each(s, in_threads: 4) do |subject| + Parallel.each(s, in_processes: 4) do |subject| puts("---------------------course_info_statistic: #{subject.id}") Rails.logger.info("---------------------course_info_statistic: #{subject.id}") data = Subjects::CourseUsedInfoService.call(subject) @@ -90,7 +91,7 @@ namespace :subjects do column_value = "subject_id, shixun_id, stage, shixun_name, challenge_count, course_count, " + "school_count, used_count, passed_count, evaluate_count, passed_ave_time, created_at, updated_at" subjects.find_in_batches(batch_size: 50) do |s| - Parallel.each_with_index(s, in_threads: 4) do |subject| + Parallel.each_with_index(s, in_processes: 4) do |subject| puts("---------------------shixun_info_statistic: #{subject.id}") Rails.logger.info("---------------------shixun_info_statistic: #{subject.id}") data = Subjects::ShixunUsedInfoService.call(subject) @@ -131,7 +132,7 @@ namespace :subjects do "code_line_count, evaluate_count, cost_time, created_at, updated_at" subjects.find_in_batches(batch_size: 50) do |s| - Parallel.each_with_index(s, in_threads: 4) do |subject, index| + Parallel.each_with_index(s, in_processes: 4) do |subject, index| puts("---------------------user_info_statistic: #{subject.id}") data = Subjects::UserUsedInfoService.call(subject) data.each do |key| From b5cf2ca262e15c6df8fbe37f7fdcd3d9c6344695 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=98=8E?= <775174143@qq.com> Date: Thu, 13 Feb 2020 11:10:50 +0800 Subject: [PATCH 05/13] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=9F=8E=E5=B8=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/react/src/common/components/form/City.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/react/src/common/components/form/City.js b/public/react/src/common/components/form/City.js index e74ef5f09..520a2ebbf 100644 --- a/public/react/src/common/components/form/City.js +++ b/public/react/src/common/components/form/City.js @@ -494,8 +494,8 @@ const options = [{ value: "兰州", label: '兰州' },{ - value: "嘉谷关", - label: '嘉谷关' + value: "嘉峪关", + label: '嘉峪关' },{ value: '白银', label: '白银' From ada83b4fa17c4f3d41c137f1fd1566e4002bff46 Mon Sep 17 00:00:00 2001 From: daiao <358551898@qq.com> Date: Thu, 13 Feb 2020 11:13:07 +0800 Subject: [PATCH 06/13] =?UTF-8?q?=E6=89=93=E5=8D=B0=E6=97=A5=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/tasks/statistic_subject_info.rake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/tasks/statistic_subject_info.rake b/lib/tasks/statistic_subject_info.rake index 8c3c02fb2..c17823a33 100644 --- a/lib/tasks/statistic_subject_info.rake +++ b/lib/tasks/statistic_subject_info.rake @@ -10,7 +10,7 @@ namespace :subjects do column_value = "subject_id, study_count, course_study_count, initiative_study, passed_count, course_used_count, " + "school_used_count, created_at, updated_at" subjects.find_in_batches(batch_size: 50) do |s| - Parallel.each_with_index(s, in_processes: 4) do |subject, index| + Parallel.each(s, in_processes: 4) do |subject| puts("---------------------data_statistic: #{subject.id}") Rails.logger.info("---------------------data_statistic: #{subject.id}") data = Subjects::DataStatisticService.new(subject) @@ -23,8 +23,8 @@ namespace :subjects do "#{data.passed_count}, #{data.course_used_count}, #{data.school_used_count}, " + "'#{Time.now.strftime('%Y-%m-%d %H:%M:%S')}', '#{Time.now.strftime('%Y-%m-%d %H:%M:%S')}')") buffer_size += 1 - puts "buffer_size: #{buffer_size}; subjects_count: #{s.count}; index:#{index+1}" - if buffer_size == 1000 || s.count == (index+1) + puts "buffer_size: #{buffer_size}; subject: #{subject == s.last}; index:#{index+1}" + if buffer_size == 1000 || subject == s.last sql = "REPLACE INTO subject_records(#{column_value}) VALUES #{str}" puts sql ActiveRecord::Base.connection.execute sql From 60be5c307f65c019ccf2614da07ed329b45f2bd7 Mon Sep 17 00:00:00 2001 From: daiao <358551898@qq.com> Date: Thu, 13 Feb 2020 11:53:45 +0800 Subject: [PATCH 07/13] =?UTF-8?q?=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/views/layouts/admin.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/layouts/admin.html.erb b/app/views/layouts/admin.html.erb index f61aaba4f..8a237219d 100644 --- a/app/views/layouts/admin.html.erb +++ b/app/views/layouts/admin.html.erb @@ -4,7 +4,7 @@
C{~K2=%oeO!y8L80?~|qLs93)f`doFxG?k
zpvb5({&ulUgf-$Px~Ih-GN8P-ZM%}%4zHlmp+xd1)YEd9_P_rl%3Cp=PHm3HLwt#P
zMZZk?k9lHkinKN#c}9KMmh){I?x{?uXTAPMhkM01T*;bfyWl1M`n0uSE&eFWU3-5(
z!9cI=eDt YaMOCNz C{~K2=%oeO!y8L80?~|qLs93)f`doFxG?k
zpvb5({&ulUgf-$Px~Ih-GN8P-ZM%}%4zHlmp+xd1)YEd9_P_rl%3Cp=PHm3HLwt#P
zMZZk?k9lHkinKN#c}9KMmh){I?x{?uXTAPMhkM01T*;bfyWl1M`n0uSE&eFWU3-5(
z!9cI=eDt C{~K2=%oeO!y8L80?~|qLs93)f`doFxG?k
zpvb5({&ulUgf-$Px~Ih-GN8P-ZM%}%4zHlmp+xd1)YEd9_P_rl%3Cp=PHm3HLwt#P
zMZZk?k9lHkinKN#c}9KMmh){I?x{?uXTAPMhkM01T*;bfyWl1M`n0uSE&eFWU3-5(
z!9cI=eDt1b2tQ-GW
bSrNn
z!9lwDPVVbmY!L+){zc&^_)hMzBAJi@<}5FIV?R&A^O=ug&FQ(__kd!y^n}bG{=6wP?K}?Gw(dAR}fYnmR
zn;Ie2GI!3>6b7O|5#)3=y;5y*b@ibrO^LxOR*;^nNW%39XJWgsU8x-Ph}A=s_P@wP
zy{mw%t{2mvYpTgpqZDY=T+?o~^cfR36v&$p-l!z&b|3)HHIta=JVKqF%8JvlA6=ID
z08Dgw)(^0FyzE_UUS`U@79&S=8BcUMpO|m2H0_ZtLttSN{5FC4;PDWlIt;GAf}gzo
z&d$)|rONYOo`JMid+ltBNT2i9zPt2I`{Y8{i`Mc46D9-Z$TgbZjH(b9uGi7EwrP>q
zd;P6L3;=2UdGicG6lVL6Ekbh(@*&cs&QA>F#;oL_M#jeB`W6<~A?_jWxKQ!I{^7J%
zMg7N~Q4|-6v2bvMd&eZXS8No|CaF7b}K5L5__%V`U>wdK!keYcFD0chP%#|0L0igi|T_bloz2
znnF}CgeD}wEuX7_?~Lx{gJhKkYH>8CMW%vUrh*hOMh61m`2|GH62{$wRrR4wtMcWE
z*V3B>KwDlH&Rxp|USbYxZ!^}-#_Fr^v#6>5s`?wI@A8@|fzdy>FUcN7u7
Date: Thu, 13 Feb 2020 12:07:17 +0800
Subject: [PATCH 10/13] 1
---
public/favicon.ico | Bin 0 -> 67646 bytes
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100755 public/favicon.ico
diff --git a/public/favicon.ico b/public/favicon.ico
new file mode 100755
index 0000000000000000000000000000000000000000..9c65fe8c7b77e9399a75f48500339c9bf2f74cb4
GIT binary patch
literal 67646
zcmeHQ3v?XSd0u0{#^qtaae$E6p(gdoqa`Jf9!M~u;0DT}lyD%V5W*uSaB>J~a?0sR
zPW{FZ0}c>_jbm)UU~E}WOO|CLTed7qvMfuoB
Date: Thu, 13 Feb 2020 12:36:39 +0800
Subject: [PATCH 11/13] =?UTF-8?q?=E7=9B=B4=E6=92=AD=E6=8E=A5=E5=8F=A3?=
=?UTF-8?q?=E7=9A=84=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/controllers/live_links_controller.rb | 13 +++++++------
app/decorators/tiding_decorator.rb | 2 +-
app/models/live_link.rb | 19 ++++++++++++++++++-
app/views/live_links/edit.json.jbuilder | 2 +-
app/views/live_links/index.json.jbuilder | 5 +++--
config/locales/tidings/zh-CN.yml | 2 +-
config/locales/zh-CN.yml | 5 ++++-
lib/tasks/live_notice.rake | 13 +++++++++++++
8 files changed, 48 insertions(+), 13 deletions(-)
create mode 100644 lib/tasks/live_notice.rake
diff --git a/app/controllers/live_links_controller.rb b/app/controllers/live_links_controller.rb
index fe2de4afe..f5af80ead 100644
--- a/app/controllers/live_links_controller.rb
+++ b/app/controllers/live_links_controller.rb
@@ -7,17 +7,17 @@ class LiveLinksController < ApplicationController
def index
lives = @course.live_links
- order_str = "on_status desc,id desc"
+ order_str = "on_status desc, live_time desc"
@total_count = lives.size
@my_live_id = @course.live_links.find_by(user_id: current_user.id)&.id
- order_str = "live_links.id = #{@my_live_id} desc, #{order_str}" if @my_live_id.present?
+ # order_str = "live_links.id = #{@my_live_id} desc, #{order_str}" if @my_live_id.present?
lives = lives.order("#{order_str}")
@lives = paginate lives.includes(user: :user_extension)
end
def create
- tip_exception("一个老师只能设置一个直播间") if @course.live_links.where(user_id: current_user.id).exists?
- @course.live_links.create!(create_params.merge(user_id: current_user.id))
+ on_status = params[:live_time].present? && params[:live_time].to_time <= Time.now ? 1 : 0
+ @course.live_links.create!(create_params.merge(user_id: current_user.id, on_status: on_status))
render_ok
end
@@ -38,7 +38,8 @@ class LiveLinksController < ApplicationController
end
end
else
- current_live.update!(create_params)
+ on_status = params[:live_time].present? && params[:live_time].to_time <= Time.now ? 1 : 0
+ current_live.update!(create_params.merge(on_status: on_status))
end
render_ok
end
@@ -51,7 +52,7 @@ class LiveLinksController < ApplicationController
private
def create_params
- params.permit(:url, :description)
+ params.permit(:url, :description, :course_name, :platform, :live_time, :duration)
end
def current_live
diff --git a/app/decorators/tiding_decorator.rb b/app/decorators/tiding_decorator.rb
index 771df3aa2..8d266b7df 100644
--- a/app/decorators/tiding_decorator.rb
+++ b/app/decorators/tiding_decorator.rb
@@ -322,7 +322,7 @@ module TidingDecorator
end
def live_link_content
- I18n.t(locale_format) % container&.user.try(:show_real_name)
+ I18n.t(locale_format) % container&.course_name
end
def student_graduation_topic_content
diff --git a/app/models/live_link.rb b/app/models/live_link.rb
index 52c1e3657..27963a0bb 100644
--- a/app/models/live_link.rb
+++ b/app/models/live_link.rb
@@ -4,8 +4,25 @@ class LiveLink < ApplicationRecord
has_many :tidings, as: :container, dependent: :destroy
- validates :url, presence: true, format: { with: CustomRegexp::URL, message: "必须为网址超链接" }
+ validates :url, format: { with: CustomRegexp::URL, message: "必须为网址超链接" }
validates :description, length: { maximum: 100, too_long: "不能超过100个字符" }
+ validates :course_name, presence: true
+ validates :platform, presence: true, inclusion: {in: %W(tencent douyu bilibili vbt)}
+ # validates :live_time, presence: true
+ validates :duration, numericality: { only_integer: true, greater_than: 0}, allow_blank: true
+
+ def platform_name
+ case platform
+ when "tencent"
+ "腾讯课堂"
+ when "douyu"
+ "斗鱼直播"
+ when "vbt"
+ "威佰通"
+ else
+ platform
+ end
+ end
def op_auth?
user == User.current || User.current.admin_or_business?
diff --git a/app/views/live_links/edit.json.jbuilder b/app/views/live_links/edit.json.jbuilder
index 047a226e8..6b0fd385d 100644
--- a/app/views/live_links/edit.json.jbuilder
+++ b/app/views/live_links/edit.json.jbuilder
@@ -1 +1 @@
-json.(@live, :id, :description, :url)
+json.(@live, :id, :description, :url, :platform, :live_time, :duration, :course_name)
diff --git a/app/views/live_links/index.json.jbuilder b/app/views/live_links/index.json.jbuilder
index e497a068b..419fb49bb 100644
--- a/app/views/live_links/index.json.jbuilder
+++ b/app/views/live_links/index.json.jbuilder
@@ -1,12 +1,13 @@
json.lives @lives do |live|
- json.(live, :id, :description, :on_status)
+ json.(live, :id, :description, :on_status, :duration, :course_name)
json.url live.on_status ? live.url : ""
json.author_name live.user.show_real_name
json.author_login live.user.login
json.author_img url_to_avatar(live.user)
json.op_auth live.op_auth?
json.delete_auth live.delete_auth?
- json.created_at live.created_at.strftime('%Y-%m-%d')
+ json.live_time live.live_time&.strftime('%Y-%m-%d %H:%M:%S')
+ json.platform live.platform_name
end
json.my_live_id @my_live_id
json.total_count @total_count
\ No newline at end of file
diff --git a/config/locales/tidings/zh-CN.yml b/config/locales/tidings/zh-CN.yml
index 92c815a05..cda146780 100644
--- a/config/locales/tidings/zh-CN.yml
+++ b/config/locales/tidings/zh-CN.yml
@@ -238,4 +238,4 @@
2_end: "你提交的发布视频申请:%s,审核未通过
原因:%{reason}"
PublicCourseStart_end: "你报名参与的开放课程:%s,将于%s正式开课"
SubjectStartCourse_end: "您创建的开放课程:%s 已达到开课人数要求。您可以在24小时内自主开设新一期课程。如果超过24小时未开课,平台将自动开课并复制您上一期的课程内容。"
- LiveLink_end: "%s老师正在直播中"
+ LiveLink_end: "%s 直播将于30分钟后开始"
diff --git a/config/locales/zh-CN.yml b/config/locales/zh-CN.yml
index 6900f6c51..4f41df0c5 100644
--- a/config/locales/zh-CN.yml
+++ b/config/locales/zh-CN.yml
@@ -173,7 +173,10 @@ zh-CN:
live_link:
description: '说明'
url: '链接'
-
+ course_name: '课程名称'
+ platform: '直播平台'
+ live_time: '开播时间'
+ duration: '直播时长'
diff --git a/lib/tasks/live_notice.rake b/lib/tasks/live_notice.rake
new file mode 100644
index 000000000..da57ebd4b
--- /dev/null
+++ b/lib/tasks/live_notice.rake
@@ -0,0 +1,13 @@
+namespace :live_notice do
+ desc "send a live message to students before 30 minutes"
+ task message: :environment do
+ lives = LiveLink.where(on_status: 0).where("live_time <= '#{Time.now + 30*60}' and live_time > '#{Time.now}'")
+ lives.each do |live|
+ LivePublishJob.perform_later(live.id)
+ end
+ end
+
+ task on_status: :environment do
+ LiveLink.where(on_status: 0).where("live_time <= '#{Time.now}'").update_all(on_status: 1)
+ end
+end
\ No newline at end of file
From c81391e8db0ef5c328f3c8b80e16714729ad407c Mon Sep 17 00:00:00 2001
From: cxt <853663049@qq.com>
Date: Thu, 13 Feb 2020 12:53:59 +0800
Subject: [PATCH 12/13] =?UTF-8?q?=E6=99=AE=E9=80=9A=E4=BD=9C=E4=B8=9A?=
=?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=8F=82=E6=95=B0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/views/homework_commons/index.json.jbuilder | 5 ++++-
app/views/homework_commons/works_list.json.jbuilder | 3 +++
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/app/views/homework_commons/index.json.jbuilder b/app/views/homework_commons/index.json.jbuilder
index db3603746..a508659e8 100644
--- a/app/views/homework_commons/index.json.jbuilder
+++ b/app/views/homework_commons/index.json.jbuilder
@@ -17,7 +17,10 @@ json.homeworks @homework_commons.each do |homework|
json.status_time curr_status[:time]
json.time_status curr_status[:time_status]
json.allow_late homework.allow_late
- json.author homework.user.real_name
+ json.author homework.user&.real_name
+ json.author_img url_to_avatar(homework.user)
+ json.author_login homework.user&.login
+ json.created_at homework.created_at.strftime("%Y-%m-%d")
# 只有在主目录才显示
json.upper_category_name homework.course_second_category&.name unless params[:category]
diff --git a/app/views/homework_commons/works_list.json.jbuilder b/app/views/homework_commons/works_list.json.jbuilder
index f5e6ca01a..cd2f17cf5 100644
--- a/app/views/homework_commons/works_list.json.jbuilder
+++ b/app/views/homework_commons/works_list.json.jbuilder
@@ -84,6 +84,7 @@ elsif @user_course_identity == Course::STUDENT
json.user_login @work.user.login
json.student_id @work.user.student_id
json.user_name @work.user.real_name
+ json.user_img url_to_avatar(@work.user)
json.group_name @member.course_group_name
end
@@ -108,6 +109,7 @@ if @homework.homework_type == "practice"
json.view_answer_count work.myshixun.try(:view_answer_count).to_i
json.user_login work.user.try(:login)
json.user_name work.user.try(:real_name)
+ json.user_img url_to_avatar(work.user)
json.student_id work.user.try(:student_id)
json.group_name @students.select{|student| student.user_id == work.user_id}.first.try(:course_group_name)
json.work_status work.compelete_status
@@ -169,6 +171,7 @@ elsif @homework.homework_type == "group" || @homework.homework_type == "normal"
json.user_login @is_evaluation ? "--" : work.user.try(:login)
json.user_name @is_evaluation ? "匿名" : work.user.try(:real_name)
+ json.user_img url_to_avatar(@is_evaluation ? "0" : work.user)
end
end
From ae062a49739a9dbf65d6da5662a96aba93cf865a Mon Sep 17 00:00:00 2001
From: daiao <358551898@qq.com>
Date: Thu, 13 Feb 2020 13:08:51 +0800
Subject: [PATCH 13/13] =?UTF-8?q?=E8=AF=BE=E7=A8=8B=E5=8F=91=E5=B8=83?=
=?UTF-8?q?=E7=9A=84=E8=A7=86=E9=A2=91=E5=BC=84=E5=9C=A8=E5=8F=91=E5=B8=83?=
=?UTF-8?q?=E4=B8=AD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/services/videos/batch_publish_service.rb | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/app/services/videos/batch_publish_service.rb b/app/services/videos/batch_publish_service.rb
index ce6bdb163..0523097a2 100644
--- a/app/services/videos/batch_publish_service.rb
+++ b/app/services/videos/batch_publish_service.rb
@@ -25,7 +25,9 @@ class Videos::BatchPublishService < ApplicationService
video.title = param[:title].to_s.strip.presence || video.title
video.apply_publish
-
+ if param[:course_id].present?
+ video.status = "published"
+ end
video.save!
if param[:course_id].present?