canvas-lms/app/models/assignment_override.rb

428 lines
14 KiB
Ruby

# frozen_string_literal: true
#
# Copyright (C) 2012 - present Instructure, Inc.
#
# This file is part of Canvas.
#
# Canvas is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, version 3 of the License.
#
# Canvas 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 Affero General Public License for more
# details.
#
# You should have received a copy of the GNU Affero General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
#
class AssignmentOverride < ActiveRecord::Base
include Workflow
include TextHelper
NOOP_MASTERY_PATHS = 1
SET_TYPE_NOOP = 'Noop'.freeze
simply_versioned :keep => 10
attr_accessor :dont_touch_assignment, :preloaded_student_ids, :changed_student_ids
belongs_to :assignment, inverse_of: :assignment_overrides
belongs_to :quiz, class_name: 'Quizzes::Quiz', inverse_of: :assignment_overrides
belongs_to :set, polymorphic: [:group, :course_section], exhaustive: false
has_many :assignment_override_students, -> { where(workflow_state: 'active') }, :inverse_of => :assignment_override, :dependent => :destroy, :validate => false
validates_presence_of :assignment_version, :if => :assignment
validates_presence_of :title, :workflow_state
validates :set_type, inclusion: ['CourseSection', 'Group', 'ADHOC', SET_TYPE_NOOP]
validates_length_of :title, :maximum => maximum_string_length, :allow_nil => true
concrete_set = lambda{ |override| ['CourseSection', 'Group'].include?(override.set_type) }
validates_presence_of :set, :set_id, :if => concrete_set
validates_uniqueness_of :set_id, :scope => [:assignment_id, :set_type, :workflow_state],
:if => lambda{ |override| override.assignment? && override.active? && concrete_set.call(override) }
validates_uniqueness_of :set_id, :scope => [:quiz_id, :set_type, :workflow_state],
:if => lambda{ |override| override.quiz? && override.active? && concrete_set.call(override) }
before_create :set_root_account_id
validate :if => concrete_set do |record|
if record.set && record.assignment && record.active?
case record.set
when CourseSection
record.errors.add :set, "not from assignment's course" unless record.set.course_id == record.assignment.context_id
when Group
valid_group_category_id = record.assignment.group_category_id || record.assignment.discussion_topic.try(:group_category_id)
record.errors.add :set, "not from assignment's group category" unless record.set.group_category_id == valid_group_category_id
end
end
end
validate :set_id, :unless => concrete_set do |record|
if record.set_type == 'ADHOC' && !record.set_id.nil?
record.errors.add :set_id, "must be nil with set_type ADHOC"
end
end
validate do |record|
if [record.assignment, record.quiz].all?(&:nil?)
record.errors.add :base, "assignment or quiz required"
end
end
validate do |record|
record.assignment_override_students.each do |s|
next if s.valid?
s.errors.each do |_, error|
record.errors.add(:assignment_override_students, error.type,
message: error.message)
end
end
end
after_save :touch_assignment, :if => :assignment
after_save :update_grading_period_grades
after_save :update_due_date_smart_alerts, if: :update_cached_due_dates?
after_commit :update_cached_due_dates
def set_not_empty?
overridable = assignment? ? assignment : quiz
['CourseSection', 'Group', SET_TYPE_NOOP].include?(self.set_type) ||
(set.any? && overridable.context.current_enrollments.where(user_id: set).exists?)
end
def update_grading_period_grades
return true unless due_at_overridden && saved_change_to_due_at? && !saved_change_to_id?
course = assignment&.context || quiz&.context || quiz&.assignment&.context
return true unless course&.grading_periods?
grading_period_was = GradingPeriod.for_date_in_course(date: due_at_before_last_save, course: course)
grading_period = GradingPeriod.for_date_in_course(date: due_at, course: course)
return true if grading_period_was&.id == grading_period&.id
students = applies_to_students.map(&:id)
return true if students.blank?
if grading_period_was
# recalculate just the old grading period's score
course.recompute_student_scores(students, grading_period_id: grading_period_was.id, update_course_score: false)
end
# recalculate the new grading period's score. If the grading period group is
# weighted, then we need to recalculate the overall course score too. (If
# grading period is nil, make sure we pass true for `update_course_score`
# so we can use a singleton job.)
course.recompute_student_scores(
students,
grading_period_id: grading_period&.id,
update_course_score: grading_period.blank? || grading_period.grading_period_group&.weighted?
)
true
end
private :update_grading_period_grades
# This method is meant to be used in an after_commit setting
def update_cached_due_dates?
set_id_changed = previous_changes.key?(:set_id)
set_type_changed_to_non_adhoc = previous_changes.key?(:set_type) && set_type != 'ADHOC'
due_at_overridden_changed = previous_changes.key?(:due_at_overridden)
due_at_changed = previous_changes.key?(:due_at) && due_at_overridden?
workflow_state_changed = previous_changes.key?(:workflow_state)
due_at_overridden_changed ||
set_id_changed ||
set_type_changed_to_non_adhoc ||
due_at_changed ||
workflow_state_changed
end
private :update_cached_due_dates?
def update_cached_due_dates
if update_cached_due_dates?
if self.assignment
assignment.clear_cache_key(:availability)
DueDateCacher.recompute(assignment)
end
self.quiz.clear_cache_key(:availability) if self.quiz
end
end
def update_due_date_smart_alerts
if self.due_at.nil? || self.due_at < Time.zone.now
ScheduledSmartAlert.find_by(context_type: self.class.name, context_id: self.id, alert_type: :due_date_reminder)&.destroy
else
ScheduledSmartAlert.upsert(
context_type: self.class.name,
context_id: self.id,
alert_type: :due_date_reminder,
due_at: self.due_at,
root_account_id: root_account_id
)
end
end
def touch_assignment
return true if assignment.nil? || dont_touch_assignment
assignment.touch
end
private :touch_assignment
def assignment?; !!assignment_id; end
def quiz?; !!quiz_id; end
workflow do
state :active
state :deleted
end
alias_method :destroy_permanently!, :destroy
def destroy
transaction do
self.assignment_override_students.reload.destroy_all
self.workflow_state = 'deleted'
self.default_values
self.save!(validate: false)
end
ScheduledSmartAlert.where(context_type: self.class.name, context_id: self.id).destroy_all
end
scope :active, -> { where(:workflow_state => 'active') }
scope :visible_students_only, -> (visible_ids) do
scope = select("assignment_overrides.*").
joins(:assignment_override_students).
distinct
if ActiveRecord::Relation === visible_ids
column = visible_ids.klass == User ? :id : visible_ids.select_values.first
scope = scope.primary_shard.activate {
scope.joins("INNER JOIN #{visible_ids.klass.quoted_table_name} ON assignment_override_students.user_id=#{visible_ids.klass.table_name}.#{column}")
}
next scope.merge(visible_ids.except(:select))
end
scope.where(
assignment_override_students: { user_id: visible_ids },
)
end
before_validation :default_values
def default_values
self.set_type ||= 'ADHOC'
if assignment
self.assignment_version = assignment.version_number
self.quiz = assignment.quiz
self.quiz_version = quiz.version_number if quiz
elsif quiz
self.quiz_version = quiz.version_number
self.assignment = quiz.assignment
self.assignment_version = assignment.version_number if assignment
end
set_title_if_needed
end
protected :default_values
def mastery_paths?
set_type == SET_TYPE_NOOP && set_id == NOOP_MASTERY_PATHS
end
# override set read accessor and set_id read/write accessors so that reading
# set/set_id or setting set_id while set_type=ADHOC doesn't try and find the
# ADHOC model
def set_id
read_attribute(:set_id)
end
def set
if self.set_type == 'ADHOC'
assignment_override_students.preload(:user).map(&:user)
elsif self.set_type == SET_TYPE_NOOP
nil
else
super
end
end
def set_id=(id)
if ['ADHOC', SET_TYPE_NOOP].include? self.set_type
write_attribute(:set_id, id)
else
super
end
end
def self.override(field)
define_method "override_#{field}" do |value|
send("#{field}_overridden=", true)
send("#{field}=", value)
end
define_method "clear_#{field}_override" do
send("#{field}_overridden=", false)
send("#{field}=", nil)
end
validates_inclusion_of "#{field}_overridden", :in => [false, true]
before_validation do |override|
if override.send("#{field}_overridden").nil?
override.send("#{field}_overridden=", false)
end
true
end
scope "overriding_#{field}", -> { where("#{field}_overridden" => true) }
end
def visible_student_overrides(visible_student_ids)
assignment_override_students.where(user_id: visible_student_ids).exists?
end
def self.visible_enrollments_for(overrides, user=nil)
return Enrollment.none if overrides.empty? || user.nil?
override = overrides.first
(override.assignment || override.quiz).context.enrollments_visible_to(user)
end
OVERRIDDEN_DATES = %i(due_at unlock_at lock_at).freeze
OVERRIDDEN_DATES.each do |field|
override field
end
def self.overridden_dates
OVERRIDDEN_DATES
end
def due_at=(new_due_at)
new_due_at = self.class.type_for_attribute(:due_at).cast(new_due_at) if new_due_at.is_a?(String)
new_due_at = CanvasTime.fancy_midnight(new_due_at)
new_all_day, new_all_day_date = Assignment.all_day_interpretation(
:due_at => new_due_at,
:due_at_was => read_attribute(:due_at),
:all_day_was => read_attribute(:all_day),
:all_day_date_was => read_attribute(:all_day_date))
write_attribute(:due_at, new_due_at)
write_attribute(:all_day, new_all_day)
write_attribute(:all_day_date, new_all_day_date)
end
def lock_at=(new_lock_at)
new_lock_at = self.class.type_for_attribute(:lock_at).cast(new_lock_at) if new_lock_at.is_a?(String)
write_attribute(:lock_at, CanvasTime.fancy_midnight(new_lock_at))
end
def availability_expired?
lock_at_overridden &&
lock_at.present? &&
lock_at <= Time.zone.now
end
def as_hash
{ :title => title,
:due_at => due_at,
:id => id,
:all_day => all_day,
:set_type => set_type,
:set_id => set_id,
:all_day_date => all_day_date,
:lock_at => lock_at,
:unlock_at => unlock_at,
:override => self }
end
def applies_to_students
# FIXME: exclude students for whom this override does not apply
# because a higher-priority override exists
case set_type
when 'ADHOC'
set
when 'CourseSection'
set.participating_students
when 'Group'
set.participants
else
[]
end
end
def applies_to_admins
case set_type
when 'CourseSection'
set.participating_admins
else
assignment.context.participating_admins
end
end
def notify_change?
self.assignment &&
self.assignment.context.available? &&
self.assignment.published? &&
self.assignment.created_at < 3.hours.ago &&
(saved_change_to_workflow_state? ||
saved_change_to_due_at_overridden? ||
due_at_overridden && !Assignment.due_dates_equal?(due_at, due_at_before_last_save))
end
def set_title_if_needed
if set_type != 'ADHOC' && set
self.title = set.name
elsif set_type == 'ADHOC' && set.any?
self.title ||= title_from_students(set)
else
self.title ||= "No Title"
end
end
def title_from_students(students)
return t("No Students") if students.blank?
self.class.title_from_student_count(students.count)
end
def self.title_from_student_count(student_count)
t(:student_count, { one: '%{count} student', other: '%{count} students' }, count: student_count)
end
def destroy_if_empty_set
return unless set_type == 'ADHOC'
self.assignment_override_students.reload if self.id_before_last_save.nil? # fixes a problem with rails 4.2 caching an empty association scope
self.destroy if set.empty?
end
has_a_broadcast_policy
def course_broadcast_data
assignment.context&.broadcast_data
end
set_broadcast_policy do |p|
p.dispatch :assignment_due_date_changed
p.to { applies_to_students }
p.whenever { |record| record.notify_change? }
p.filter_asset_by_recipient { |record, user|
# note that our asset for this message is an Assignment, not an AssignmentOverride
record.assignment.overridden_for(user)
}
p.data { course_broadcast_data }
p.dispatch :assignment_due_date_override_changed
p.to { applies_to_admins }
p.whenever { |record| record.notify_change? }
p.data { course_broadcast_data }
end
def root_account_id
# Use the attribute if availible, otherwise fall back to getting it from a parent entity
super || assignment&.root_account_id || quiz&.root_account_id || quiz&.assignment&.root_account_id
end
def set_root_account_id
self.write_attribute(:root_account_id, root_account_id) unless read_attribute(:root_account_id)
end
end