2011-02-01 09:57:29 +08:00
#
2013-01-29 06:26:26 +08:00
# Copyright (C) 2011 - 2013 Instructure, Inc.
2011-02-01 09:57:29 +08:00
#
# 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 Course < ActiveRecord :: Base
2011-07-14 00:24:17 +08:00
2011-02-01 09:57:29 +08:00
include Context
include Workflow
2012-12-27 08:51:39 +08:00
include TextHelper
2011-02-01 09:57:29 +08:00
2011-06-08 00:31:14 +08:00
attr_accessible :name ,
:section ,
:account ,
:group_weighting_scheme ,
:start_at ,
:conclude_at ,
:grading_standard_id ,
:is_public ,
:allow_student_wiki_edits ,
:show_public_context_messages ,
:syllabus_body ,
2012-03-31 00:36:17 +08:00
:public_description ,
2011-06-08 00:31:14 +08:00
:allow_student_forum_attachments ,
2013-01-19 06:36:50 +08:00
:allow_student_discussion_topics ,
2013-02-08 04:09:05 +08:00
:allow_student_discussion_editing ,
2011-06-08 00:31:14 +08:00
:default_wiki_editing_roles ,
:allow_student_organized_groups ,
:course_code ,
:default_view ,
:show_all_discussion_entries ,
:open_enrollment ,
:allow_wiki_comments ,
:turnitin_comments ,
:self_enrollment ,
:license ,
:indexed ,
:enrollment_term ,
:abstract_course ,
:root_account ,
:storage_quota ,
:storage_quota_mb ,
:restrict_enrollments_to_course_dates ,
:grading_standard ,
2011-07-13 04:31:40 +08:00
:grading_standard_enabled ,
2011-08-11 01:48:34 +08:00
:locale ,
2012-09-06 05:57:33 +08:00
:hide_final_grades ,
2013-02-05 05:53:31 +08:00
:hide_distribution_graphs ,
2013-04-06 04:40:05 +08:00
:lock_all_announcements ,
:public_syllabus
2011-02-01 09:57:29 +08:00
serialize :tab_configuration
2011-08-11 01:48:34 +08:00
serialize :settings , Hash
2011-02-01 09:57:29 +08:00
belongs_to :root_account , :class_name = > 'Account'
2011-06-08 00:31:14 +08:00
belongs_to :abstract_course
2011-02-01 09:57:29 +08:00
belongs_to :enrollment_term
2011-04-09 06:45:38 +08:00
belongs_to :grading_standard
2011-05-25 03:22:12 +08:00
belongs_to :template_course , :class_name = > 'Course'
has_many :templated_courses , :class_name = > 'Course' , :foreign_key = > 'template_course_id'
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
has_many :course_sections
has_many :active_course_sections , :class_name = > 'CourseSection' , :conditions = > { :workflow_state = > 'active' }
has_many :enrollments , :include = > [ :user , :course ] , :conditions = > [ 'enrollments.workflow_state != ?' , 'deleted' ] , :dependent = > :destroy
2012-06-20 01:42:43 +08:00
has_many :current_enrollments , :class_name = > 'Enrollment' , :conditions = > " enrollments.workflow_state NOT IN ('rejected', 'completed', 'deleted', 'inactive') " , :include = > :user
2012-07-07 06:57:15 +08:00
has_many :typical_current_enrollments , :class_name = > 'Enrollment' , :conditions = > " enrollments.workflow_state NOT IN ('rejected', 'completed', 'deleted', 'inactive') AND enrollments.type NOT IN ('StudentViewEnrollment', 'ObserverEnrollment', 'DesignerEnrollment') " , :include = > :user
2011-02-01 09:57:29 +08:00
has_many :prior_enrollments , :class_name = > 'Enrollment' , :include = > [ :user , :course ] , :conditions = > " enrollments.workflow_state = 'completed' "
2012-08-24 05:10:00 +08:00
has_many :prior_users , :through = > :prior_enrollments , :source = > :user
2012-05-03 03:43:00 +08:00
has_many :students , :through = > :student_enrollments , :source = > :user
2012-12-21 14:16:51 +08:00
has_many :self_enrolled_students , :through = > :student_enrollments , :source = > :user , :conditions = > " self_enrolled "
2012-05-03 03:43:00 +08:00
has_many :all_students , :through = > :all_student_enrollments , :source = > :user
2012-03-14 04:08:19 +08:00
has_many :participating_students , :through = > :enrollments , :source = > :user , :conditions = > " enrollments.type IN ('StudentEnrollment', 'StudentViewEnrollment') and enrollments.workflow_state = 'active' "
2012-06-20 01:42:43 +08:00
has_many :student_enrollments , :class_name = > 'Enrollment' , :conditions = > " enrollments.workflow_state NOT IN ('rejected', 'completed', 'deleted', 'inactive') AND enrollments.type IN ('StudentEnrollment', 'StudentViewEnrollment') " , :include = > :user
has_many :all_student_enrollments , :class_name = > 'Enrollment' , :conditions = > " enrollments.workflow_state != 'deleted' AND enrollments.type IN ('StudentEnrollment', 'StudentViewEnrollment') " , :include = > :user
2012-06-29 01:10:09 +08:00
has_many :all_real_users , :through = > :all_real_enrollments , :source = > :user
has_many :all_real_enrollments , :class_name = > 'Enrollment' , :conditions = > [ " enrollments.workflow_state != 'deleted' AND enrollments.type <> 'StudentViewEnrollment' " ] , :include = > :user
2012-05-03 03:43:00 +08:00
has_many :all_real_students , :through = > :all_real_student_enrollments , :source = > :user
2012-03-14 04:08:19 +08:00
has_many :all_real_student_enrollments , :class_name = > 'StudentEnrollment' , :conditions = > [ " enrollments.workflow_state != ? " , 'deleted' ] , :include = > :user
2011-02-01 09:57:29 +08:00
has_many :teachers , :through = > :teacher_enrollments , :source = > :user
2012-11-08 00:58:15 +08:00
has_many :teacher_enrollments , :class_name = > 'TeacherEnrollment' , :conditions = > [ " enrollments.workflow_state != 'deleted' AND enrollments.type = 'TeacherEnrollment' " ] , :include = > :user
2011-02-01 09:57:29 +08:00
has_many :tas , :through = > :ta_enrollments , :source = > :user
has_many :ta_enrollments , :class_name = > 'TaEnrollment' , :conditions = > [ 'enrollments.workflow_state != ?' , 'deleted' ] , :include = > :user
2011-02-18 07:59:01 +08:00
has_many :designers , :through = > :designer_enrollments , :source = > :user
has_many :designer_enrollments , :class_name = > 'DesignerEnrollment' , :conditions = > [ 'enrollments.workflow_state != ?' , 'deleted' ] , :include = > :user
2011-02-01 09:57:29 +08:00
has_many :observers , :through = > :observer_enrollments , :source = > :user
2012-03-09 01:14:57 +08:00
has_many :participating_observers , :through = > :observer_enrollments , :source = > :user , :conditions = > [ 'enrollments.workflow_state = ?' , 'active' ]
2011-02-01 09:57:29 +08:00
has_many :observer_enrollments , :class_name = > 'ObserverEnrollment' , :conditions = > [ 'enrollments.workflow_state != ?' , 'deleted' ] , :include = > :user
2012-01-13 07:57:58 +08:00
has_many :instructors , :through = > :enrollments , :source = > :user , :conditions = > " enrollments.type = 'TaEnrollment' or enrollments.type = 'TeacherEnrollment' "
has_many :instructor_enrollments , :class_name = > 'Enrollment' , :conditions = > " (enrollments.type = 'TaEnrollment' or enrollments.type = 'TeacherEnrollment') "
has_many :participating_instructors , :through = > :enrollments , :source = > :user , :conditions = > " (enrollments.type = 'TaEnrollment' or enrollments.type = 'TeacherEnrollment') and enrollments.workflow_state = 'active' "
has_many :admins , :through = > :enrollments , :source = > :user , :conditions = > " enrollments.type = 'TaEnrollment' or enrollments.type = 'TeacherEnrollment' or enrollments.type = 'DesignerEnrollment' "
has_many :admin_enrollments , :class_name = > 'Enrollment' , :conditions = > " (enrollments.type = 'TaEnrollment' or enrollments.type = 'TeacherEnrollment' or enrollments.type = 'DesignerEnrollment') "
has_many :participating_admins , :through = > :enrollments , :source = > :user , :conditions = > " (enrollments.type = 'TaEnrollment' or enrollments.type = 'TeacherEnrollment' or enrollments.type = 'DesignerEnrollment') and enrollments.workflow_state = 'active' "
2012-03-14 04:08:19 +08:00
has_many :student_view_students , :through = > :student_view_enrollments , :source = > :user
has_many :student_view_enrollments , :class_name = > 'StudentViewEnrollment' , :conditions = > [ 'enrollments.workflow_state != ?' , 'deleted' ] , :include = > :user
2012-07-07 06:57:15 +08:00
has_many :participating_typical_users , :through = > :typical_current_enrollments , :source = > :user
2011-07-26 00:12:55 +08:00
learning outcomes refactor
This list is *NOT* complete, some items may have snuck in that I forgot
to note, and/or some of the noted items may not be completely functional
yet.
Specs need to be written around a lot of this, other specs will no doubt
need to be fixed.
Some things, particularly around LearningOutcomeGroups will need data
migrations that aren't there yet.
* remove LearningOutcome.non_rubric_outcomes? and replace with false
where invoked
* remove LearningOutcome.enabled? and replace with true where invoked
* remove never-taken branches
* remove the shared/aligned_outcomes partial and it's supporting
javascript, since it's now empty
* remove js handler for add_outcome_alignment_link and supporting
method since it only occurred in never-taken branches
* mix LearningOutcomeContext into Course and Account
* replace LearningOutcomeGroup.default_for(context) with
LearningOutcomeContext#root_outcome_group
* rename LearningOutcome#content_tags to LearningOutcome#alignments
* rename LearningOutcomeGroup#content_tags to
LearningOutcomeGroup#child_links, and properly restrict
* remove ContentTag[Alignment]#rubric_association_id, add
ContentTag[Alignment]#has_rubric_association? that looks at the
presence of the content's rubric_association_id
* condition off the assignment having a rubric_association rather than
filtering tags by has_rubric_association (which just looks back at
the assignment). all or none of the assignment's alignments are
forced to have the association (via the assignment). this was true in
practice before, is now codified (and more efficient)
* rename AssessmentQuestionBank#learning_outcome_tags to
AssessmentQuestionBank#learning_outcome_alignments
* rename Assignment#learning_outcome_tags to
Assignment#learning_outcome_alignments
* rename Rubric#learning_outcome_tags to
Rubric#learning_outcome_alignments
* move/rename (Course|Account)#learning_outcome_tags to
LearningOutcomeContext#learning_outcome_links
* move/rename Account#learning_outcomes (corrected) and
Course#learning_outcomes to
LearningOutcomeContext#linked_learning_outcomes
* move/rename Account#created_learning_outcomes and
Course#created_learning_outcomes to
LearningOutcomeContext#created_learning_outcomes
* clarify and correct usage of linked_learning_outcomes vs.
created_learning_outcomes
* move/rename (Account|Account)#learning_outcome_groups to
LearningOutcomeContext#learning_outcome_groups
* remove unused Account#associated_learning_outcomes
* just remove one link to a learning outcome when deleting
* merge Account#has_outcomes?, Course#has_outcomes? and
Course#has_outcomes into LearningOutcomeContext#has_outcomes?, add a
use in Context#active_record_types
* kill LearningOutcomeGroup#root_learning_outcome_group (unused)
* rename LearningOutcomeResult#content_tag to
LearningOutcomeResult#alignment
* kill unused (and broken) OutcomesController#add_outcome_group
* kill unused OutcomesController#update_outcomes_for_asset
* kill unused OutcomesController#outcomes_for_asset
* remove unused (outside specs, correct specs)
AssessmentQuestionBank#outcomes=
* remove unused ContentTag#learning_outcome_content
* replace ContentTag.learning_outcome_tags_for(asset) (only ever called
with asset=an assignment) with call to
Assignment#learning_outcome_alignments
* remove unused ContentTag.not_rubric
* remove (now) unused ContentTag.include_outcome
* remove unused LearningOutcome#learning_outcome_group_associations
* avoid explicit use of ContentTag in outcome-related specs
* replace LearningOutcomeGroup#learning_outcome_tags with
LearningOutcomeGroup#child_outcome_links (and only use for outcome
links; not tags for child groups)
* split ContentTag#create_outcome_result into
Submission#create_outcome_result,
QuizSubmission#create_outcome_result, and
RubricAssessment#create_outcome_result. fix some bugs along the way
* refactor ContentTag.outcome_tags_for_banks and some code from
QuizSubmission#(track_outcomes|update_outcomes_for_assessment_questions)
into QuizSubmission#questions_and_alignments
* refactor RubricAssociation#update_outcome_relations and
Rubric#update_alignments into LearningOutcome.update_alignments
* don't use ContentTag#rubric_association with outcome alignments; use
the tag's content's rubric_association in its place (they should have
been equal anyways)
* refactor LearningOutcome.available_in_context and
@context.root_outcome_group.sorted_all_outcomes (only time
sorted_all_outcomes is used) into
LearningOutcomeContext#available_outcomes and
LearningOutcomeContext#available_outcome
* overhaul LearningOutcomeGroup#sorted_content and rename to
LearningOutcomeGroup#sorted_children. it not returns ContentTags
(outcome links) and LearningOutcomeGroups, vs. LearningOutcomes and
LearningOutcomeGroups; fix usages appropriately
* fix UI for arranging/deleting outcome links and groups within a group
to refer to the outcome link rather than the outcome
Change-Id: I85d99f2634f7206332cb1f5d5ea575b428988d4b
Reviewed-on: https://gerrit.instructure.com/12590
Reviewed-by: Jacob Fugal <jacob@instructure.com>
Tested-by: Jacob Fugal <jacob@instructure.com>
2012-07-13 01:16:13 +08:00
include LearningOutcomeContext
2013-06-18 05:12:49 +08:00
include RubricContext
learning outcomes refactor
This list is *NOT* complete, some items may have snuck in that I forgot
to note, and/or some of the noted items may not be completely functional
yet.
Specs need to be written around a lot of this, other specs will no doubt
need to be fixed.
Some things, particularly around LearningOutcomeGroups will need data
migrations that aren't there yet.
* remove LearningOutcome.non_rubric_outcomes? and replace with false
where invoked
* remove LearningOutcome.enabled? and replace with true where invoked
* remove never-taken branches
* remove the shared/aligned_outcomes partial and it's supporting
javascript, since it's now empty
* remove js handler for add_outcome_alignment_link and supporting
method since it only occurred in never-taken branches
* mix LearningOutcomeContext into Course and Account
* replace LearningOutcomeGroup.default_for(context) with
LearningOutcomeContext#root_outcome_group
* rename LearningOutcome#content_tags to LearningOutcome#alignments
* rename LearningOutcomeGroup#content_tags to
LearningOutcomeGroup#child_links, and properly restrict
* remove ContentTag[Alignment]#rubric_association_id, add
ContentTag[Alignment]#has_rubric_association? that looks at the
presence of the content's rubric_association_id
* condition off the assignment having a rubric_association rather than
filtering tags by has_rubric_association (which just looks back at
the assignment). all or none of the assignment's alignments are
forced to have the association (via the assignment). this was true in
practice before, is now codified (and more efficient)
* rename AssessmentQuestionBank#learning_outcome_tags to
AssessmentQuestionBank#learning_outcome_alignments
* rename Assignment#learning_outcome_tags to
Assignment#learning_outcome_alignments
* rename Rubric#learning_outcome_tags to
Rubric#learning_outcome_alignments
* move/rename (Course|Account)#learning_outcome_tags to
LearningOutcomeContext#learning_outcome_links
* move/rename Account#learning_outcomes (corrected) and
Course#learning_outcomes to
LearningOutcomeContext#linked_learning_outcomes
* move/rename Account#created_learning_outcomes and
Course#created_learning_outcomes to
LearningOutcomeContext#created_learning_outcomes
* clarify and correct usage of linked_learning_outcomes vs.
created_learning_outcomes
* move/rename (Account|Account)#learning_outcome_groups to
LearningOutcomeContext#learning_outcome_groups
* remove unused Account#associated_learning_outcomes
* just remove one link to a learning outcome when deleting
* merge Account#has_outcomes?, Course#has_outcomes? and
Course#has_outcomes into LearningOutcomeContext#has_outcomes?, add a
use in Context#active_record_types
* kill LearningOutcomeGroup#root_learning_outcome_group (unused)
* rename LearningOutcomeResult#content_tag to
LearningOutcomeResult#alignment
* kill unused (and broken) OutcomesController#add_outcome_group
* kill unused OutcomesController#update_outcomes_for_asset
* kill unused OutcomesController#outcomes_for_asset
* remove unused (outside specs, correct specs)
AssessmentQuestionBank#outcomes=
* remove unused ContentTag#learning_outcome_content
* replace ContentTag.learning_outcome_tags_for(asset) (only ever called
with asset=an assignment) with call to
Assignment#learning_outcome_alignments
* remove unused ContentTag.not_rubric
* remove (now) unused ContentTag.include_outcome
* remove unused LearningOutcome#learning_outcome_group_associations
* avoid explicit use of ContentTag in outcome-related specs
* replace LearningOutcomeGroup#learning_outcome_tags with
LearningOutcomeGroup#child_outcome_links (and only use for outcome
links; not tags for child groups)
* split ContentTag#create_outcome_result into
Submission#create_outcome_result,
QuizSubmission#create_outcome_result, and
RubricAssessment#create_outcome_result. fix some bugs along the way
* refactor ContentTag.outcome_tags_for_banks and some code from
QuizSubmission#(track_outcomes|update_outcomes_for_assessment_questions)
into QuizSubmission#questions_and_alignments
* refactor RubricAssociation#update_outcome_relations and
Rubric#update_alignments into LearningOutcome.update_alignments
* don't use ContentTag#rubric_association with outcome alignments; use
the tag's content's rubric_association in its place (they should have
been equal anyways)
* refactor LearningOutcome.available_in_context and
@context.root_outcome_group.sorted_all_outcomes (only time
sorted_all_outcomes is used) into
LearningOutcomeContext#available_outcomes and
LearningOutcomeContext#available_outcome
* overhaul LearningOutcomeGroup#sorted_content and rename to
LearningOutcomeGroup#sorted_children. it not returns ContentTags
(outcome links) and LearningOutcomeGroups, vs. LearningOutcomes and
LearningOutcomeGroups; fix usages appropriately
* fix UI for arranging/deleting outcome links and groups within a group
to refer to the outcome link rather than the outcome
Change-Id: I85d99f2634f7206332cb1f5d5ea575b428988d4b
Reviewed-on: https://gerrit.instructure.com/12590
Reviewed-by: Jacob Fugal <jacob@instructure.com>
Tested-by: Jacob Fugal <jacob@instructure.com>
2012-07-13 01:16:13 +08:00
2011-02-01 09:57:29 +08:00
has_many :course_account_associations
2011-05-17 00:27:35 +08:00
has_many :non_unique_associated_accounts , :source = > :account , :through = > :course_account_associations , :order = > 'course_account_associations.depth'
2012-04-16 23:27:28 +08:00
has_many :users , :through = > :enrollments , :source = > :user , :uniq = > true
has_many :current_users , :through = > :current_enrollments , :source = > :user , :uniq = > true
2011-09-22 04:31:36 +08:00
has_many :group_categories , :as = > :context , :conditions = > [ 'deleted_at IS NULL' ]
has_many :all_group_categories , :class_name = > 'GroupCategory' , :as = > :context
2011-02-01 09:57:29 +08:00
has_many :groups , :as = > :context
has_many :active_groups , :as = > :context , :class_name = > 'Group' , :conditions = > [ 'groups.workflow_state != ?' , 'deleted' ]
has_many :assignment_groups , :as = > :context , :dependent = > :destroy , :order = > 'assignment_groups.position, assignment_groups.name'
2011-04-09 06:45:38 +08:00
has_many :assignments , :as = > :context , :dependent = > :destroy , :order = > 'assignments.created_at'
2011-02-01 09:57:29 +08:00
has_many :calendar_events , :as = > :context , :conditions = > [ 'calendar_events.workflow_state != ?' , 'cancelled' ] , :dependent = > :destroy
has_many :submissions , :through = > :assignments , :order = > 'submissions.updated_at DESC' , :include = > :quiz_submission , :dependent = > :destroy
has_many :discussion_topics , :as = > :context , :conditions = > [ 'discussion_topics.workflow_state != ?' , 'deleted' ] , :include = > :user , :dependent = > :destroy , :order = > 'discussion_topics.position DESC, discussion_topics.created_at DESC'
has_many :active_discussion_topics , :as = > :context , :class_name = > 'DiscussionTopic' , :conditions = > [ 'discussion_topics.workflow_state != ?' , 'deleted' ] , :include = > :user
has_many :all_discussion_topics , :as = > :context , :class_name = > " DiscussionTopic " , :include = > :user , :dependent = > :destroy
has_many :discussion_entries , :through = > :discussion_topics , :include = > [ :discussion_topic , :user ] , :dependent = > :destroy
has_many :announcements , :as = > :context , :class_name = > 'Announcement' , :dependent = > :destroy
2012-06-20 00:20:43 +08:00
has_many :active_announcements , :as = > :context , :class_name = > 'Announcement' , :conditions = > [ 'discussion_topics.workflow_state != ?' , 'deleted' ]
2011-09-29 07:26:18 +08:00
has_many :attachments , :as = > :context , :dependent = > :destroy , :extend = > Attachment :: FindInContextAssociation
2011-07-12 02:25:54 +08:00
has_many :active_images , :as = > :context , :class_name = > 'Attachment' , :conditions = > [ " attachments.file_state != ? AND attachments.content_type LIKE 'image%' " , 'deleted' ] , :order = > 'attachments.display_name' , :include = > :thumbnail
2011-03-26 15:02:04 +08:00
has_many :active_assignments , :as = > :context , :class_name = > 'Assignment' , :conditions = > [ 'assignments.workflow_state != ?' , 'deleted' ] , :order = > 'assignments.title, assignments.position'
2011-02-01 09:57:29 +08:00
has_many :folders , :as = > :context , :dependent = > :destroy , :order = > 'folders.name'
has_many :active_folders , :class_name = > 'Folder' , :as = > :context , :conditions = > [ 'folders.workflow_state != ?' , 'deleted' ] , :order = > 'folders.name'
2011-03-02 03:17:42 +08:00
has_many :active_folders_with_sub_folders , :class_name = > 'Folder' , :as = > :context , :include = > [ :active_sub_folders ] , :conditions = > [ 'folders.workflow_state != ?' , 'deleted' ] , :order = > 'folders.name'
2011-02-01 09:57:29 +08:00
has_many :active_folders_detailed , :class_name = > 'Folder' , :as = > :context , :include = > [ :active_sub_folders , :active_file_attachments ] , :conditions = > [ 'folders.workflow_state != ?' , 'deleted' ] , :order = > 'folders.name'
has_many :messages , :as = > :context , :dependent = > :destroy
2011-03-10 00:11:22 +08:00
has_many :context_external_tools , :as = > :context , :dependent = > :destroy , :order = > 'name'
2011-02-01 09:57:29 +08:00
belongs_to :wiki
has_many :quizzes , :as = > :context , :dependent = > :destroy , :order = > 'lock_at, title'
has_many :active_quizzes , :class_name = > 'Quiz' , :as = > :context , :include = > :assignment , :conditions = > [ 'quizzes.workflow_state != ?' , 'deleted' ] , :order = > 'created_at'
2011-08-27 08:33:01 +08:00
has_many :assessment_questions , :through = > :assessment_question_banks
2011-02-01 09:57:29 +08:00
has_many :assessment_question_banks , :as = > :context , :include = > [ :assessment_questions , :assessment_question_bank_users ]
2011-08-27 08:33:01 +08:00
def inherited_assessment_question_banks ( include_self = false )
self . account . inherited_assessment_question_banks ( true , * ( include_self ? [ self ] : [ ] ) )
end
2011-02-01 09:57:29 +08:00
has_many :external_feeds , :as = > :context , :dependent = > :destroy
belongs_to :default_grading_standard , :class_name = > 'GradingStandard' , :foreign_key = > 'grading_standard_id'
2012-12-15 03:49:40 +08:00
has_many :grading_standards , :as = > :context , :conditions = > [ 'workflow_state != ?' , 'deleted' ]
2011-02-01 09:57:29 +08:00
has_one :gradebook_upload , :as = > :context , :dependent = > :destroy
has_many :web_conferences , :as = > :context , :order = > 'created_at DESC' , :dependent = > :destroy
has_many :collaborations , :as = > :context , :order = > 'title, created_at' , :dependent = > :destroy
has_one :scribd_account , :as = > :scribdable
has_many :context_modules , :as = > :context , :order = > :position , :dependent = > :destroy
2011-04-12 04:24:34 +08:00
has_many :active_context_modules , :as = > :context , :class_name = > 'ContextModule' , :conditions = > { :workflow_state = > 'active' }
2011-02-01 09:57:29 +08:00
has_many :context_module_tags , :class_name = > 'ContentTag' , :as = > 'context' , :order = > :position , :conditions = > [ 'tag_type = ?' , 'context_module' ] , :dependent = > :destroy
has_many :media_objects , :as = > :context
has_many :page_views , :as = > :context
2012-09-11 02:28:03 +08:00
has_many :asset_user_accesses , :as = > :context
2011-02-01 09:57:29 +08:00
has_many :role_overrides , :as = > :context
2012-05-08 04:18:47 +08:00
has_many :content_migrations , :foreign_key = > :context_id
2011-04-06 23:13:00 +08:00
has_many :content_exports
2011-09-07 22:02:47 +08:00
has_many :course_imports
2011-07-26 00:12:55 +08:00
has_many :alerts , :as = > :context , :include = > :criteria
2012-04-19 07:47:03 +08:00
has_many :appointment_group_contexts , :as = > :context
has_many :appointment_groups , :through = > :appointment_group_contexts
2012-01-04 04:30:49 +08:00
has_many :appointment_participants , :class_name = > 'CalendarEvent' , :foreign_key = > :effective_context_code , :primary_key = > :asset_string , :conditions = > " workflow_state = 'locked' AND parent_calendar_event_id IS NOT NULL "
2011-02-01 09:57:29 +08:00
attr_accessor :import_source
2011-12-10 06:37:12 +08:00
has_many :zip_file_imports , :as = > :context
2012-09-26 00:44:35 +08:00
has_many :content_participation_counts , :as = > :context , :dependent = > :destroy
2012-01-04 04:30:49 +08:00
2013-01-22 08:35:54 +08:00
include Profile :: Association
2011-02-01 09:57:29 +08:00
before_save :assign_uuid
before_save :assert_defaults
before_save :set_update_account_associations_if_changed
before_save :update_enrollments_later
2011-04-13 01:03:21 +08:00
after_save :update_final_scores_on_weighting_scheme_change
2011-02-01 09:57:29 +08:00
after_save :update_account_associations_if_changed
2012-05-18 00:51:31 +08:00
after_save :set_self_enrollment_code
2011-06-01 04:47:28 +08:00
before_validation :verify_unique_sis_source_id
2011-02-01 09:57:29 +08:00
validates_length_of :syllabus_body , :maximum = > maximum_long_text_length , :allow_nil = > true , :allow_blank = > true
2012-09-21 00:39:03 +08:00
validates_length_of :name , :maximum = > maximum_string_length , :allow_nil = > true , :allow_blank = > true
validates_length_of :course_code , :maximum = > maximum_string_length , :allow_nil = > true , :allow_blank = > true
2011-07-13 04:31:40 +08:00
validates_locale :allow_nil = > true
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
sanitize_field :syllabus_body , Instructure :: SanitizeField :: SANITIZE
2012-01-04 04:30:49 +08:00
2011-09-22 01:36:45 +08:00
include StickySisFields
2012-05-01 02:59:40 +08:00
are_sis_sticky :name , :course_code , :start_at , :conclude_at , :restrict_enrollments_to_course_dates , :enrollment_term_id , :workflow_state
2011-09-22 01:36:45 +08:00
2011-02-01 09:57:29 +08:00
has_a_broadcast_policy
2012-01-04 04:30:49 +08:00
2012-04-24 07:46:19 +08:00
def events_for ( user )
2012-06-28 01:36:17 +08:00
if user
CalendarEvent .
active .
for_user_and_context_codes ( user , [ asset_string ] ) .
2013-03-19 03:07:47 +08:00
includes ( :child_events ) .
2012-06-28 01:36:17 +08:00
reject ( & :hidden? ) +
AppointmentGroup . manageable_by ( user , [ asset_string ] ) +
assignments . active
else
2013-03-19 03:07:47 +08:00
calendar_events . active . includes ( :child_events ) . reject ( & :hidden? ) +
2012-06-28 01:36:17 +08:00
assignments . active
end
2012-04-24 07:46:19 +08:00
end
2011-05-10 00:14:16 +08:00
def self . skip_updating_account_associations ( & block )
2011-05-17 00:27:35 +08:00
if @skip_updating_account_assocations
block . call
else
begin
@skip_updating_account_associations = true
block . call
ensure
@skip_updating_account_associations = false
end
end
2011-05-10 00:14:16 +08:00
end
def self . skip_updating_account_associations?
! ! @skip_updating_account_associations
end
2011-02-01 09:57:29 +08:00
def set_update_account_associations_if_changed
@should_update_account_associations = self . root_account_id_changed? || self . account_id_changed?
2011-08-24 00:39:52 +08:00
@should_delay_account_associations = ! self . new_record?
2011-02-01 09:57:29 +08:00
true
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def update_account_associations_if_changed
2011-08-24 00:39:52 +08:00
send_now_or_later_if_production ( @should_delay_account_associations ? :later : :now , :update_account_associations ) if @should_update_account_associations && ! self . class . skip_updating_account_associations?
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def module_based?
Rails . cache . fetch ( [ 'module_based_course' , self ] . cache_key ) do
self . context_modules . active . any? { | m | m . completion_requirements && ! m . completion_requirements . empty? }
end
end
2012-01-04 04:30:49 +08:00
2013-02-06 05:59:01 +08:00
def modules_visible_to ( user )
if self . grants_right? ( user , :manage_content )
self . context_modules . not_deleted
else
self . context_modules . active
end
end
2011-06-01 04:47:28 +08:00
def verify_unique_sis_source_id
return true unless self . sis_source_id
2012-06-18 23:15:30 +08:00
infer_root_account unless self . root_account_id
2011-06-01 04:47:28 +08:00
existing_course = self . root_account . all_courses . find_by_sis_source_id ( self . sis_source_id )
2011-06-22 00:23:08 +08:00
return true if ! existing_course || existing_course . id == self . id
2012-01-04 04:30:49 +08:00
2011-06-22 00:23:08 +08:00
self . errors . add ( :sis_source_id , t ( 'errors.sis_in_use' , " SIS ID \" %{sis_id} \" is already in use " , :sis_id = > self . sis_source_id ) )
2011-06-01 04:47:28 +08:00
false
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def public_license?
license && license != 'private'
end
2011-06-22 00:23:08 +08:00
def self . licenses
ActiveSupport :: OrderedHash [
'private' ,
2011-02-01 09:57:29 +08:00
{
2011-06-22 00:23:08 +08:00
:readable_license = > t ( '#cc.private' , 'Private (Copyrighted)' ) ,
:license_url = > " http://en.wikipedia.org/wiki/Copyright "
} ,
'cc_by_nc_nd' ,
2011-02-01 09:57:29 +08:00
{
2011-06-22 00:23:08 +08:00
:readable_license = > t ( '#cc.by_nc_nd' , 'CC Attribution Non-Commercial No Derivatives' ) ,
2011-02-01 09:57:29 +08:00
:license_url = > " http://creativecommons.org/licenses/by-nc-nd/3.0/ "
2011-06-22 00:23:08 +08:00
} ,
'cc_by_nc_sa' ,
2011-02-01 09:57:29 +08:00
{
2011-06-22 00:23:08 +08:00
:readable_license = > t ( '#cc.by_nc_sa' , 'CC Attribution Non-Commercial Share Alike' ) ,
2011-02-01 09:57:29 +08:00
:license_url = > " http://creativecommons.org/licenses/by-nc-sa/3.0 "
2011-06-22 00:23:08 +08:00
} ,
'cc_by_nc' ,
2011-02-01 09:57:29 +08:00
{
2011-06-22 00:23:08 +08:00
:readable_license = > t ( '#cc.by_nc' , 'CC Attribution Non-Commercial' ) ,
2011-02-01 09:57:29 +08:00
:license_url = > " http://creativecommons.org/licenses/by-nc/3.0 "
2011-06-22 00:23:08 +08:00
} ,
'cc_by_nd' ,
2011-02-01 09:57:29 +08:00
{
2011-06-22 00:23:08 +08:00
:readable_license = > t ( '#cc.by_nd' , 'CC Attribution No Derivatives' ) ,
2011-02-01 09:57:29 +08:00
:license_url = > " http://creativecommons.org/licenses/by-nd/3.0 "
2011-06-22 00:23:08 +08:00
} ,
'cc_by_sa' ,
2011-02-01 09:57:29 +08:00
{
2011-06-22 00:23:08 +08:00
:readable_license = > t ( '#cc.by_sa' , 'CC Attribution Share Alike' ) ,
2011-02-01 09:57:29 +08:00
:license_url = > " http://creativecommons.org/licenses/by-sa/3.0 "
2011-06-22 00:23:08 +08:00
} ,
'cc_by' ,
2011-02-01 09:57:29 +08:00
{
2011-06-22 00:23:08 +08:00
:readable_license = > t ( '#cc.by' , 'CC Attribution' ) ,
2011-02-01 09:57:29 +08:00
:license_url = > " http://creativecommons.org/licenses/by/3.0 "
2011-06-22 00:23:08 +08:00
} ,
'public_domain' ,
2011-02-01 09:57:29 +08:00
{
2011-06-22 00:23:08 +08:00
:readable_license = > t ( '#cc.public_domain' , 'Public Domain' ) ,
:license_url = > " http://en.wikipedia.org/wiki/Public_domain "
} ,
]
2011-02-01 09:57:29 +08:00
end
2011-06-22 00:23:08 +08:00
def license_data
licenses = self . class . licenses
licenses [ license ] || licenses [ 'private' ]
end
2011-02-01 09:57:29 +08:00
def license_url
license_data [ :license_url ]
end
2011-06-22 00:23:08 +08:00
2011-02-01 09:57:29 +08:00
def readable_license
license_data [ :readable_license ]
end
2011-06-22 00:23:08 +08:00
2011-08-18 03:33:10 +08:00
def self . update_account_associations ( courses_or_course_ids , opts = { } )
return [ ] if courses_or_course_ids . empty?
opts . reverse_merge! :account_chain_cache = > { }
account_chain_cache = opts [ :account_chain_cache ]
# Split it up into manageable chunks
user_ids_to_update_account_associations = [ ]
if courses_or_course_ids . length > 500
opts = opts . dup
opts . reverse_merge! :skip_user_account_associations = > true
courses_or_course_ids . uniq . compact . each_slice ( 500 ) do | courses_or_course_ids_slice |
user_ids_to_update_account_associations += update_account_associations ( courses_or_course_ids_slice , opts )
end
else
if courses_or_course_ids . first . is_a? Course
courses = courses_or_course_ids
Course . send ( :preload_associations , courses , :course_sections = > :nonxlist_course )
course_ids = courses . map ( & :id )
else
course_ids = courses_or_course_ids
2013-06-04 04:52:42 +08:00
courses = Course . where ( :id = > course_ids ) .
includes ( :course_sections = > [ :course , :nonxlist_course ] ) .
select ( [ :id , :account_id ] ) .
all
2011-08-18 03:33:10 +08:00
end
course_ids_to_update_user_account_associations = [ ]
CourseAccountAssociation . transaction do
current_associations = { }
to_delete = [ ]
2013-03-19 03:07:47 +08:00
CourseAccountAssociation . where ( :course_id = > course_ids ) . each do | aa |
2011-08-18 03:33:10 +08:00
key = [ aa . course_section_id , aa . account_id ]
current_course_associations = current_associations [ aa . course_id ] || = { }
2013-01-29 06:26:26 +08:00
# duplicates. the unique index prevents these now, but this code
# needs to hang around for the migration itself
2011-08-18 03:33:10 +08:00
if current_course_associations . has_key? ( key )
to_delete << aa . id
next
end
current_course_associations [ key ] = [ aa . id , aa . depth ]
end
courses . each do | course |
did_an_update = false
current_course_associations = current_associations [ course . id ] || { }
# Courses are tied to accounts directly and through sections and crosslisted courses
( course . course_sections + [ nil ] ) . each do | section |
next if section && ! section . active?
section . course = course if section
2013-01-29 06:26:26 +08:00
starting_account_ids = [ course . account_id , section . try ( :course ) . try ( :account_id ) , section . try ( :nonxlist_course ) . try ( :account_id ) ] . compact . uniq
2011-08-18 03:33:10 +08:00
account_ids_with_depth = User . calculate_account_associations_from_accounts ( starting_account_ids , account_chain_cache ) . map
account_ids_with_depth . each do | account_id_with_depth |
account_id = account_id_with_depth [ 0 ]
depth = account_id_with_depth [ 1 ]
key = [ section . try ( :id ) , account_id ]
association = current_course_associations [ key ]
if association . nil?
# new association, create it
CourseAccountAssociation . create! do | aa |
aa . course_id = course . id
aa . course_section_id = section . try ( :id )
aa . account_id = account_id
aa . depth = depth
end
did_an_update = true
else
if association [ 1 ] != depth
2013-03-19 03:07:47 +08:00
CourseAccountAssociation . where ( :id = > association [ 0 ] ) . update_all ( :depth = > depth )
2011-08-18 03:33:10 +08:00
did_an_update = true
end
# remove from list of existing
current_course_associations . delete ( key )
end
end
end
did_an_update || = ! current_course_associations . empty?
if did_an_update
course . course_account_associations . reset
course . non_unique_associated_accounts . reset
course_ids_to_update_user_account_associations << course . id
end
end
to_delete += current_associations . map { | k , v | v . map { | k2 , v2 | v2 [ 0 ] } } . flatten
unless to_delete . empty?
2013-03-19 03:07:47 +08:00
CourseAccountAssociation . where ( :id = > to_delete ) . delete_all
2011-08-18 03:33:10 +08:00
end
end
2013-03-19 03:07:47 +08:00
user_ids_to_update_account_associations = Enrollment .
where ( " course_id IN (?) AND workflow_state<>'deleted' " , course_ids_to_update_user_account_associations ) .
group ( :user_id ) . pluck ( :user_id ) unless course_ids_to_update_user_account_associations . empty?
2011-02-01 09:57:29 +08:00
end
2011-08-18 03:33:10 +08:00
User . update_account_associations ( user_ids_to_update_account_associations , :account_chain_cache = > account_chain_cache ) unless user_ids_to_update_account_associations . empty? || opts [ :skip_user_account_associations ]
user_ids_to_update_account_associations
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-08-18 03:33:10 +08:00
def update_account_associations
2013-01-26 01:32:08 +08:00
self . shard . activate do
Course . update_account_associations ( [ self ] )
end
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-05-17 00:27:35 +08:00
def associated_accounts
2013-03-08 07:23:32 +08:00
self . non_unique_associated_accounts . all . uniq
2011-05-17 00:27:35 +08:00
end
2012-01-04 04:30:49 +08:00
2013-03-21 03:38:19 +08:00
scope :recently_started , lambda { where ( :start_at = > 1 . month . ago .. Time . zone . now ) . order ( " start_at DESC " ) . limit ( 10 ) }
scope :recently_ended , lambda { where ( :conclude_at = > 1 . month . ago .. Time . zone . now ) . order ( " start_at DESC " ) . limit ( 10 ) }
scope :recently_created , lambda { where ( " created_at>? " , 1 . month . ago ) . order ( " created_at DESC " ) . limit ( 50 ) . includes ( :teachers ) }
scope :for_term , lambda { | term | term ? where ( :enrollment_term_id = > term ) : scoped }
scope :active_first , order ( " CASE WHEN courses.workflow_state='available' THEN 0 ELSE 1 END, name " )
scope :name_like , lambda { | name | where ( wildcard ( 'courses.name' , 'courses.sis_source_id' , 'courses.course_code' , name ) ) }
scope :needs_account , lambda { | account , limit | where ( :account_id = > nil , :root_account_id = > account ) . limit ( limit ) }
scope :active , where ( " courses.workflow_state<>'deleted' " )
scope :least_recently_updated , lambda { | limit | order ( :updated_at ) . limit ( limit ) }
scope :manageable_by_user , lambda { | * args |
2012-02-21 08:23:23 +08:00
# args[0] should be user_id, args[1], if true, will include completed
# enrollments as well as active enrollments
user_id = args [ 0 ]
workflow_states = ( args [ 1 ] . present? ? %w{ 'active' 'completed' } : %w{ 'active' } ) . join ( ', ' )
2013-03-21 03:38:19 +08:00
uniq . joins ( " INNER JOIN (
2011-06-09 03:56:27 +08:00
SELECT caa . course_id , au . user_id FROM course_account_associations AS caa
INNER JOIN accounts AS a ON a . id = caa . account_id AND a . workflow_state = 'active'
INNER JOIN account_users AS au ON au . account_id = a . id AND au . user_id = #{user_id.to_i}
UNION SELECT courses . id AS course_id , e . user_id FROM courses
INNER JOIN enrollments AS e ON e . course_id = courses . id AND e . user_id = #{user_id.to_i}
2012-02-21 08:23:23 +08:00
AND e . workflow_state IN ( #{workflow_states}) AND e.type IN ('TeacherEnrollment', 'TaEnrollment', 'DesignerEnrollment')
2011-11-18 03:25:22 +08:00
WHERE courses . workflow_state < > 'deleted' ) as course_users
2013-03-21 03:38:19 +08:00
ON course_users . course_id = courses . id " )
2011-02-01 09:57:29 +08:00
}
2013-03-21 03:38:19 +08:00
scope :not_deleted , where ( " workflow_state<>'deleted' " )
2011-02-01 09:57:29 +08:00
2013-03-21 03:38:19 +08:00
scope :with_enrollments , lambda {
where ( " EXISTS ( #{ Enrollment . active . select ( " 1 " ) . where ( " enrollments.course_id=courses.id " ) . to_sql } ) " )
2011-08-17 05:49:53 +08:00
}
2013-03-21 03:38:19 +08:00
scope :without_enrollments , lambda {
where ( " NOT EXISTS ( #{ Enrollment . active . select ( " 1 " ) . where ( " enrollments.course_id=courses.id " ) . to_sql } ) " )
2012-11-01 06:46:10 +08:00
}
2013-03-21 03:38:19 +08:00
scope :completed , lambda {
joins ( :enrollment_term ) .
where ( " courses.workflow_state='completed' OR courses.conclude_at<? OR enrollment_terms.end_at<? " , Time . now . utc , Time . now . utc )
2012-11-01 06:46:10 +08:00
}
2013-03-21 03:38:19 +08:00
scope :not_completed , lambda {
joins ( :enrollment_term ) .
where ( " courses.workflow_state<>'completed' AND
( courses . conclude_at IS NULL OR courses . conclude_at > = ?) AND
( enrollment_terms . end_at IS NULL OR enrollment_terms . end_at > = ?) " , Time.now.utc, Time.now.utc)
2012-11-01 06:46:10 +08:00
}
2013-03-21 03:38:19 +08:00
scope :by_teachers , lambda { | teacher_ids |
teacher_ids . empty? ?
where ( " ? " , false ) :
where ( " EXISTS ( #{ Enrollment . active . select ( " 1 " ) . where ( " enrollments.course_id=courses.id AND enrollments.type='TeacherEnrollment' AND enrollments.user_id IN (?) " , teacher_ids ) . to_sql } ) " )
2012-11-01 06:46:10 +08:00
}
2013-03-21 03:38:19 +08:00
scope :by_associated_accounts , lambda { | account_ids |
account_ids . empty? ?
where ( " ? " , false ) :
where ( " EXISTS ( #{ CourseAccountAssociation . select ( " 1 " ) . where ( " course_account_associations.course_id=courses.id AND course_account_associations.account_id IN (?) " , account_ids ) . to_sql } ) " )
2012-11-01 06:46:10 +08:00
}
2011-08-17 05:49:53 +08:00
2013-03-21 03:38:19 +08:00
scope :deleted , where ( :workflow_state = > 'deleted' )
2013-03-05 01:20:41 +08:00
2011-02-01 09:57:29 +08:00
set_broadcast_policy do | p |
p . dispatch :grade_weight_changed
p . to { participating_students }
2012-01-04 04:30:49 +08:00
p . whenever { | record |
( record . available? && @grade_weight_changed ) ||
2011-02-01 09:57:29 +08:00
record . changed_in_state ( :available , :fields = > :group_weighting_scheme )
}
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
p . dispatch :new_course
p . to { self . root_account . account_users }
p . whenever { | record |
record . root_account &&
2011-06-22 00:23:08 +08:00
( ( record . just_created && record . name != Course . default_name ) ||
( record . prior_version . name == Course . default_name && record . name != Course . default_name ) )
2011-02-01 09:57:29 +08:00
}
end
2011-06-22 00:23:08 +08:00
def self . default_name
2011-07-01 04:36:59 +08:00
# TODO i18n
2011-06-22 00:23:08 +08:00
t ( 'default_name' , " My Course " )
end
2012-01-04 04:30:49 +08:00
2011-10-29 07:19:11 +08:00
def users_not_in_groups_sql ( groups , opts = { } )
2013-06-07 20:59:27 +08:00
[ " SELECT DISTINCT users.id, users.name #{ " , #{ opts [ :order_by ] } " if opts [ :order_by ] . present? }
FROM users
INNER JOIN enrollments e ON e . user_id = users . id
2011-10-29 07:19:11 +08:00
WHERE e . course_id = ? AND e . workflow_state NOT IN ( 'rejected' , 'completed' , 'deleted' ) AND e . type = 'StudentEnrollment'
2013-01-09 06:06:48 +08:00
#{Group.not_in_group_sql_fragment(groups)}
2012-02-02 04:14:56 +08:00
#{"ORDER BY #{opts[:order_by]}" if opts[:order_by].present?}
#{"#{opts[:order_by_dir]}" if opts[:order_by_dir]}", self.id]
2011-10-29 07:19:11 +08:00
end
def users_not_in_groups ( groups )
User . find_by_sql ( users_not_in_groups_sql ( groups ) )
end
2011-02-01 09:57:29 +08:00
def paginate_users_not_in_groups ( groups , page , per_page = 15 )
2013-06-07 20:59:27 +08:00
User . paginate_by_sql ( users_not_in_groups_sql ( groups , :order_by = > " #{ User . sortable_name_order_by_clause ( 'users' ) } " , :order_by_dir = > " ASC " ) ,
2011-10-29 07:19:11 +08:00
:page = > page , :per_page = > per_page )
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2012-01-13 07:57:58 +08:00
def instructors_in_charge_of ( user_id )
2013-03-19 03:07:47 +08:00
section_ids = current_enrollments .
where ( :course_id = > self , :user_id = > user_id ) .
where ( " course_section_id IS NOT NULL " ) . pluck ( :course_section_id ) . uniq # TODO: with real Rails 3, this uniq can become part of the scope
2012-02-18 10:49:16 +08:00
participating_instructors . restrict_to_sections ( section_ids )
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2012-10-20 04:04:42 +08:00
def user_is_instructor? ( user )
2011-02-01 09:57:29 +08:00
return unless user
2012-10-20 04:04:42 +08:00
Rails . cache . fetch ( [ self , user , " course_user_is_instructor " ] . cache_key ) do
2012-03-02 04:47:45 +08:00
user . cached_current_enrollments . any? { | e | e . course_id == self . id && e . participating_instructor? }
2011-02-01 09:57:29 +08:00
end
end
2012-10-20 04:04:42 +08:00
memoize :user_is_instructor?
2012-01-04 04:30:49 +08:00
2012-12-07 14:28:37 +08:00
def user_is_student? ( user , opts = { } )
2011-02-01 09:57:29 +08:00
return unless user
2012-12-07 14:28:37 +08:00
Rails . cache . fetch ( [ self , user , " course_user_is_student " , opts [ :include_future ] ] . cache_key ) do
user . cached_current_enrollments ( :include_future = > opts [ :include_future ] ) . any? { | e |
e . course_id == self . id && ( opts [ :include_future ] ? e . student? : e . participating_student? )
}
2011-02-01 09:57:29 +08:00
end
end
memoize :user_is_student?
2012-01-04 04:30:49 +08:00
2012-10-20 04:04:42 +08:00
def user_has_been_instructor? ( user )
2012-03-02 04:47:45 +08:00
return unless user
2012-10-20 04:04:42 +08:00
Rails . cache . fetch ( [ self , user , " course_user_has_been_instructor " ] . cache_key ) do
# active here is !deleted; it still includes concluded, etc.
self . instructor_enrollments . active . find_by_user_id ( user . id ) . present?
2012-03-02 04:47:45 +08:00
end
end
2012-10-20 04:04:42 +08:00
memoize :user_has_been_instructor?
2012-03-02 04:47:45 +08:00
2012-10-30 01:00:07 +08:00
def user_has_been_admin? ( user )
return unless user
Rails . cache . fetch ( [ self , user , " course_user_has_been_admin " ] . cache_key ) do
# active here is !deleted; it still includes concluded, etc.
self . admin_enrollments . active . find_by_user_id ( user . id ) . present?
end
end
memoize :user_has_been_admin?
def user_has_been_observer? ( user )
return unless user
Rails . cache . fetch ( [ self , user , " course_user_has_been_observer " ] . cache_key ) do
# active here is !deleted; it still includes concluded, etc.
self . observer_enrollments . active . find_by_user_id ( user . id ) . present?
end
end
memoize :user_has_been_observer?
2012-03-02 04:47:45 +08:00
def user_has_been_student? ( user )
return unless user
Rails . cache . fetch ( [ self , user , " course_user_has_been_student " ] . cache_key ) do
self . all_student_enrollments . find_by_user_id ( user . id ) . present?
end
end
memoize :user_has_been_student?
2012-10-30 01:00:07 +08:00
def user_has_no_enrollments? ( user )
return unless user
Rails . cache . fetch ( [ self , user , " course_user_has_no_enrollments " ] . cache_key ) do
enrollments . find_by_user_id ( user . id ) . nil?
end
end
memoize :user_has_no_enrollments?
2012-07-27 04:32:17 +08:00
# Public: Determine if a group weighting scheme should be applied.
#
# Returns boolean.
def apply_group_weights?
group_weighting_scheme == 'percent'
end
2013-06-27 23:33:28 +08:00
def apply_assignment_group_weights = ( apply )
if apply
self . group_weighting_scheme = 'percent'
else
self . group_weighting_scheme = 'equal'
end
end
2011-02-01 09:57:29 +08:00
def grade_weight_changed!
@grade_weight_changed = true
self . save!
@grade_weight_changed = false
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def membership_for_user ( user )
self . enrollments . find_by_user_id ( user && user . id )
end
2012-01-04 04:30:49 +08:00
2012-06-18 23:15:30 +08:00
def infer_root_account
# This is a bit tricky. Basically, it ensures a is the current account;
# if account is not loaded, it will not double load (because it's
# already cached). If it's already loaded, and correct, it again will
# only use the cache. If it's already loaded and the wrong one, it will
# force reload
a = self . account ( self . account && self . account . id != self . account_id )
self . root_account_id = a . root_account_id if a
self . root_account_id || = a . id if a
# Ditto
self . root_account ( self . root_account && self . root_account . id != self . root_account_id )
end
2011-02-01 09:57:29 +08:00
def assert_defaults
self . tab_configuration || = [ ] unless self . tab_configuration == [ ]
self . name = nil if self . name && self . name . strip . empty?
2011-06-22 00:23:08 +08:00
self . name || = t ( 'missing_name' , " Unnamed Course " )
2011-04-23 14:16:02 +08:00
self . course_code = nil if self . course_code == " " || ( self . name_changed? && self . course_code && self . name_was && self . name_was . start_with? ( self . course_code ) )
2011-02-01 09:57:29 +08:00
if ! self . course_code && self . name
res = [ ]
split = self . name . split ( / \ s / )
res << split [ 0 ]
res << split [ 1 .. - 1 ] . find { | txt | txt . match ( / \ d / ) } rescue nil
self . course_code = res . compact . join ( " " )
end
@group_weighting_scheme_changed = self . group_weighting_scheme_changed?
self . indexed = nil unless self . is_public
if self . account_id && self . account_id_changed?
2012-06-18 23:15:30 +08:00
infer_root_account
2011-02-01 09:57:29 +08:00
end
if self . root_account_id && self . root_account_id_changed?
2011-05-07 00:42:55 +08:00
a = self . account ( self . account && self . account . id != self . account_id )
2011-02-01 09:57:29 +08:00
self . account_id = nil if self . account_id && self . account_id != self . root_account_id && a && a . root_account_id != self . root_account_id
self . account_id || = self . root_account_id
end
self . root_account_id || = Account . default . id
self . account_id || = self . root_account_id
2011-08-20 06:09:57 +08:00
self . enrollment_term = nil if self . enrollment_term . try ( :root_account_id ) != self . root_account_id
2011-02-01 09:57:29 +08:00
self . enrollment_term || = self . root_account . default_enrollment_term
self . allow_student_wiki_edits = ( self . default_wiki_editing_roles || " " ) . split ( ',' ) . include? ( 'students' )
true
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def update_course_section_names
return if @course_name_was == self . name || ! @course_name_was
sections = self . course_sections
2012-06-15 09:32:03 +08:00
fields_to_possibly_rename = [ :name , :section_code ]
2011-02-01 09:57:29 +08:00
sections . each do | section |
something_changed = false
fields_to_possibly_rename . each do | field |
2012-01-04 04:30:49 +08:00
section . send ( " #{ field } = " , section . default_section ?
2011-02-01 09:57:29 +08:00
self . name :
( section . send ( field ) || self . name ) . sub ( @course_name_was , self . name ) )
something_changed = true if section . send ( field ) != section . send ( " #{ field } _was " )
end
if something_changed
2011-08-31 06:13:41 +08:00
attr_hash = { :updated_at = > Time . now . utc }
2011-02-01 09:57:29 +08:00
fields_to_possibly_rename . each { | key | attr_hash [ key ] = section . send ( key ) }
2013-03-19 03:07:47 +08:00
CourseSection . where ( :id = > section ) . update_all ( attr_hash )
2011-02-01 09:57:29 +08:00
end
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def update_enrollments_later
2011-08-20 06:09:57 +08:00
self . update_enrolled_users if ! self . new_record? && ! ( self . changes . keys & [ 'workflow_state' , 'name' , 'course_code' , 'start_at' , 'conclude_at' , 'enrollment_term_id' ] ) . empty?
2011-02-01 09:57:29 +08:00
true
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def update_enrolled_users
if self . completed?
2013-03-19 03:07:47 +08:00
Enrollment . where ( :course_id = > self , :workflow_state = > [ 'active' , 'invited' ] ) . update_all ( :workflow_state = > 'completed' )
2012-01-04 04:30:49 +08:00
appointment_participants . active . current . update_all ( :workflow_state = > 'deleted' )
appointment_groups . each ( & :clear_cached_available_slots! )
2011-02-16 07:08:51 +08:00
elsif self . deleted?
2013-03-19 03:07:47 +08:00
Enrollment . where ( " course_id=? AND workflow_state<>'deleted' " , self ) . update_all ( :workflow_state = > 'deleted' )
2011-08-20 06:09:57 +08:00
end
2011-11-22 01:55:44 +08:00
if self . root_account_id_changed?
2013-03-19 03:07:47 +08:00
CourseSection . where ( :course_id = > self ) . update_all ( :root_account_id = > self . root_account_id )
Enrollment . where ( :course_id = > self ) . update_all ( :root_account_id = > self . root_account_id )
2011-11-22 01:55:44 +08:00
end
2011-08-20 06:09:57 +08:00
case Enrollment . connection . adapter_name
2013-02-27 01:37:54 +08:00
when 'MySQL' , 'Mysql2'
2011-08-20 06:09:57 +08:00
Enrollment . connection . execute ( " UPDATE users, enrollments SET users.updated_at=NOW(), enrollments.updated_at=NOW() WHERE users.id=enrollments.user_id AND enrollments.course_id= #{ self . id } " )
else
2013-03-19 03:07:47 +08:00
Enrollment . where ( :course_id = > self ) . update_all ( :updated_at = > Time . now . utc )
User . where ( " id IN (SELECT user_id FROM enrollments WHERE course_id=?) " , self ) . update_all ( :updated_at = > Time . now . utc )
2011-02-01 09:57:29 +08:00
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def self_enrollment_allowed?
2011-03-27 11:38:54 +08:00
! ! ( self . account && self . account . self_enrollment_allowed? ( self ) )
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def self_enrollment_code
2013-01-29 08:36:31 +08:00
read_attribute ( :self_enrollment_code ) || set_self_enrollment_code
2012-05-18 00:51:31 +08:00
end
def set_self_enrollment_code
return if ! self_enrollment? || read_attribute ( :self_enrollment_code )
# subset of letters and numbers that are unambiguous
alphanums = 'ABCDEFGHJKLMNPRTWXY346789'
code_length = 6
# we're returning a 6-digit base-25(ish) code. that means there are ~250
# million possible codes. we should expect to see our first collision
# within the first 16k or so (thus the retry loop), but we won't risk ever
# exhausting a retry loop until we've used up about 15% or so of the
# keyspace. if needed, we can grow it at that point (but it's scoped to a
# shard, and not all courses will have enrollment codes, so that may not be
# necessary)
code = nil
self . class . unique_constraint_retry ( 10 ) do
code = code_length . times . map {
alphanums [ ( rand * alphanums . size ) . to_i , 1 ]
} . join
update_attribute :self_enrollment_code , code
end
code
end
2012-12-12 13:22:25 +08:00
def self_enrollment_limit_met?
2012-12-21 14:16:51 +08:00
self_enrollment_limit && self_enrolled_students . size > = self_enrollment_limit
2012-12-12 13:22:25 +08:00
end
2012-05-18 00:51:31 +08:00
def long_self_enrollment_code
2011-02-01 09:57:29 +08:00
Digest :: MD5 . hexdigest ( " #{ uuid } _for_ #{ id } " )
end
2012-05-18 00:51:31 +08:00
memoize :long_self_enrollment_code
# still include the old longer format, since links may be out there
def self_enrollment_codes
[ self_enrollment_code , long_self_enrollment_code ]
end
2012-01-04 04:30:49 +08:00
2011-04-13 01:03:21 +08:00
def update_final_scores_on_weighting_scheme_change
2011-02-01 09:57:29 +08:00
if @group_weighting_scheme_changed
2012-06-30 00:44:42 +08:00
connection . after_transaction_commit { self . recompute_student_scores }
2011-02-01 09:57:29 +08:00
end
end
2012-01-04 04:30:49 +08:00
2011-04-13 01:03:21 +08:00
def recompute_student_scores
2012-12-12 21:50:15 +08:00
Enrollment . recompute_final_score ( student_ids , self . id )
2011-02-01 09:57:29 +08:00
end
2012-04-05 04:12:28 +08:00
handle_asynchronously_if_production :recompute_student_scores ,
:singleton = > proc { | c | " recompute_student_scores: #{ c . global_id } " }
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def home_page
2013-05-17 05:02:04 +08:00
self . wiki . front_page
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def context_code
2013-03-08 08:08:47 +08:00
raise " DONT USE THIS, use .short_name instead " unless Rails . env . production?
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def allow_media_comments?
true || [ ] . include? ( self . id )
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def short_name
course_code
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def short_name = ( val )
write_attribute ( :course_code , val )
end
2012-01-04 04:30:49 +08:00
2012-12-27 08:51:39 +08:00
def short_name_slug
truncate_text ( short_name , :ellipsis = > '' )
end
2011-02-01 09:57:29 +08:00
# Allows the account to be set directly
belongs_to :account
2012-01-04 04:30:49 +08:00
2012-07-24 05:29:18 +08:00
def wiki_with_create
Wiki . wiki_for_context ( self )
2011-02-01 09:57:29 +08:00
end
2012-07-24 05:29:18 +08:00
alias_method_chain :wiki , :create
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
# A universal lookup for all messages.
def messages
Message . for ( self )
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def do_complete
self . conclude_at || = Time . now
end
2011-05-24 07:24:31 +08:00
def do_unconclude
self . conclude_at = nil
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def do_offer
self . start_at || = Time . now
send_later_if_production ( :invite_uninvited_students )
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def invite_uninvited_students
self . enrollments . find_all_by_workflow_state ( " creation_pending " ) . each do | e |
e . invite!
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
workflow do
state :created do
event :claim , :transitions_to = > :claimed
event :offer , :transitions_to = > :available
event :complete , :transitions_to = > :completed
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
state :claimed do
event :offer , :transitions_to = > :available
event :complete , :transitions_to = > :completed
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
state :available do
event :complete , :transitions_to = > :completed
end
2011-05-24 07:24:31 +08:00
state :completed do
event :unconclude , :transitions_to = > :available
end
2011-02-01 09:57:29 +08:00
state :deleted
end
2012-01-04 04:30:49 +08:00
2013-04-16 00:36:53 +08:00
def api_state
return 'unpublished' if workflow_state == 'created' || workflow_state == 'claimed'
workflow_state
end
2011-02-01 09:57:29 +08:00
alias_method :destroy! , :destroy
def destroy
self . workflow_state = 'deleted'
save!
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def call_event ( event )
self . send ( event ) if self . current_state . events . include? event . to_sym
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def claim_with_teacher ( user )
raise " Must provide a valid teacher " unless user
return unless self . state == :created
e = enroll_user ( user , 'TeacherEnrollment' , :enrollment_state = > 'active' ) #teacher(user)
claim
e
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def self . require_assignment_groups ( contexts )
courses = contexts . select { | c | c . is_a? ( Course ) }
2013-04-02 02:55:32 +08:00
groups = Shard . partition_by_shard ( courses ) do | shard_courses |
AssignmentGroup . select ( " id, context_id, context_type " ) . where ( :context_type = > " Course " , :context_id = > shard_courses )
end . index_by ( & :context_id )
courses . each do | course |
if ! groups [ course . id ]
course . require_assignment_group rescue nil
end
end
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def require_assignment_group
2013-04-02 02:55:32 +08:00
shard . activate do
has_group = Rails . cache . read ( [ 'has_assignment_group' , self ] . cache_key )
return if has_group && Rails . env . production?
if self . assignment_groups . active . empty?
self . assignment_groups . create ( :name = > t ( '#assignment_group.default_name' , " Assignments " ) )
end
Rails . cache . write ( [ 'has_assignment_group' , self ] . cache_key , true )
2011-02-01 09:57:29 +08:00
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def self . create_unique ( uuid = nil , account_id = nil , root_account_id = nil )
2011-04-15 06:09:37 +08:00
uuid || = AutoHandle . generate_securish_uuid
2011-02-01 09:57:29 +08:00
course = find_or_initialize_by_uuid ( uuid )
course = Course . new if course . deleted?
2011-06-22 00:23:08 +08:00
course . name = self . default_name if course . new_record?
course . short_name = t ( 'default_short_name' , " Course-101 " ) if course . new_record?
2011-02-01 09:57:29 +08:00
course . account_id = account_id || root_account_id
course . root_account_id = root_account_id
course . save!
course
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def <=> ( other )
self . id < = > other . id
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def quota
Rails . cache . fetch ( [ 'default_quota' , self ] . cache_key ) do
2011-07-12 05:36:55 +08:00
storage_quota
2011-02-01 09:57:29 +08:00
end
end
2012-01-04 04:30:49 +08:00
2011-06-18 00:46:48 +08:00
def storage_quota_mb
2011-06-18 04:19:46 +08:00
storage_quota / 1 . megabyte
2011-06-18 00:46:48 +08:00
end
2012-01-04 04:30:49 +08:00
2011-06-18 00:46:48 +08:00
def storage_quota_mb = ( val )
2011-07-09 21:22:33 +08:00
self . storage_quota = val . try ( :to_i ) . try ( :megabytes )
2011-06-18 00:46:48 +08:00
end
2012-01-04 04:30:49 +08:00
2011-07-12 05:36:55 +08:00
def storage_quota
return read_attribute ( :storage_quota ) ||
( self . account . default_storage_quota rescue nil ) ||
Setting . get_cached ( 'course_default_quota' , 500 . megabytes . to_s ) . to_i
end
2011-02-01 09:57:29 +08:00
def storage_quota = ( val )
val = val . to_f
val = nil if val < = 0
if account && account . default_storage_quota == val
val = nil
end
write_attribute ( :storage_quota , val )
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def assign_uuid
2011-04-15 06:09:37 +08:00
self . uuid || = AutoHandle . generate_securish_uuid
2011-02-01 09:57:29 +08:00
end
protected :assign_uuid
def full_name
name
end
def to_atom
Atom :: Entry . new do | entry |
entry . title = self . name
entry . updated = self . updated_at
entry . published = self . created_at
2012-01-04 04:30:49 +08:00
entry . links << Atom :: Link . new ( :rel = > 'alternate' ,
2011-02-01 09:57:29 +08:00
:href = > " / #{ context_url_prefix } /courses/ #{ self . id } " )
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
set_policy do
given { | user | self . available? && self . is_public }
2013-04-06 04:40:05 +08:00
can :read and can :read_outcomes and can :read_syllabus
given { | user | self . available? && self . public_syllabus }
can :read_syllabus
2012-01-04 04:30:49 +08:00
2012-08-17 06:41:43 +08:00
RoleOverride . permissions . each do | permission , details |
given { | user , session | ( self . enrollment_allows ( user , session , permission ) || self . account_membership_allows ( user , session , permission ) ) && ( ! details [ :if ] || send ( details [ :if ] ) ) }
2011-07-14 00:24:17 +08:00
can permission
2011-02-01 09:57:29 +08:00
end
2012-12-12 21:50:15 +08:00
2013-03-26 03:38:02 +08:00
given { | user , session | session && session [ :enrollment_uuid ] && ( hash = Enrollment . course_user_state ( self , session [ :enrollment_uuid ] ) || { } ) && ( hash [ :enrollment_state ] == " invited " || hash [ :enrollment_state ] == " active " && hash [ :user_state ] . to_s == " pre_registered " ) && ( self . available? || self . completed? || self . claimed? && hash [ :is_admin ] ) }
2012-11-01 04:28:33 +08:00
can :read and can :read_outcomes
refactor user creation/invitations closes #5833
fixes #5573, #5572, #5753
* communication channels are now only unique within a single user
* UserList changes
* Always resolve pseudonym#unique_ids
* Support looking up by SMS CCs
* Option to either require e-mails match an existing CC,
or e-mails that don't match a Pseudonym will always be
returned unattached (relying on better merging behavior
to not have a gazillion accounts created)
* Method to return users, creating new ones (*without* a
Pseudonym) if necessary. (can't create with a pseudonym,
since Pseudonym#unique_id is still unique, I can't have
multiple outstanding users with the same unique_id)
* EnrollmentsFromUserList is mostly gutted, now using UserList's
functionality directy.
* Use UserList for adding account admins, removing the now
unused Account#add_admin => User#find_by_email/User#assert_by_email
codepath
* Update UsersController#create to not worry about duplicate
communication channels
* Remove AccountsController#add_user, and just use
UsersController#create
* Change SIS::UserImporter to send out a merge opportunity
e-mail if a conflicting CC is found (but still create the CC)
* In /profile, don't worry about conflicting CCs (the CC confirmation
process will now allow merging)
* Remove CommunicationChannelsController#try_merge and #merge
* For the non-simple case of CoursesController#enrollment_invitation
redirect to /register (CommunicationsChannelController#confirm)
* Remove CoursesController#transfer_enrollment
* Move PseudonymsController#registration_confirmation to
CommunicationChannelsController#confirm (have to be able to
register an account without a Pseudonym yet)
* Fold the old direct confirm functionality in, if there are
no available merge opportunities
* Allow merging the new account with the currently logged in user
* Allow changing the Pseudonym#unique_id when registering a new
account (since there might be conflicts)
* Display a list of merge opportunities based on conflicting
communication channels
* Provide link(s) to log in as the other user,
redirecting back to the registration page after login is
complete (to complete the merge as the current user)
* Remove several assert_* methods that are no longer needed
* Update PseudonymSessionsController a bit to deal with the new
way of dealing with conflicting CCs (especially CCs from LDAP),
and to redirect back to the registration/confirmation page when
attempting to do a merge
* Expose the open_registration setting; use it to control if
inviting users to a course is able to create new users
Change-Id: If2f38818a71af656854d3bf8431ddbf5dcb84691
Reviewed-on: https://gerrit.instructure.com/6149
Tested-by: Hudson <hudson@instructure.com>
Reviewed-by: Jacob Fugal <jacob@instructure.com>
2011-10-13 04:30:48 +08:00
2011-11-22 01:49:00 +08:00
given { | user | ( self . available? || self . completed? ) && user && user . cached_current_enrollments . any? { | e | e . course_id == self . id && [ :active , :invited , :completed ] . include? ( e . state_based_on_date ) } }
2012-11-01 04:28:33 +08:00
can :read and can :read_outcomes
2012-01-04 04:30:49 +08:00
2012-03-14 04:08:19 +08:00
# Active students
2013-08-01 07:24:30 +08:00
given { | user |
available? && user &&
user . cached_current_enrollments . any? { | e |
e . course_id == id && e . participating_student?
}
}
2012-11-01 04:28:33 +08:00
can :read and can :participate_as_student and can :read_grades and can :read_outcomes
2012-12-12 21:50:15 +08:00
2011-02-11 14:00:39 +08:00
given { | user | ( self . available? || self . completed? ) && user && user . cached_not_ended_enrollments . any? { | e | e . course_id == self . id && e . participating_observer? && e . associated_user_id } }
2011-07-14 00:24:17 +08:00
can :read_grades
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
given { | user , session | self . available? && self . teacherless? && user && user . cached_not_ended_enrollments . any? { | e | e . course_id == self . id && e . participating_student? } && ( ! session || ! session [ " role_course_ #{ self . id } " ] ) }
2011-07-14 00:24:17 +08:00
can :update and can :delete and RoleOverride . teacherless_permissions . each { | p | can p }
2011-08-16 06:34:57 +08:00
2012-07-12 01:20:08 +08:00
# Active admins (Teacher/TA/Designer)
2011-09-01 05:23:47 +08:00
given { | user , session | ( self . available? || self . created? || self . claimed? ) && user && user . cached_not_ended_enrollments . any? { | e | e . course_id == self . id && e . participating_admin? } && ( ! session || ! session [ " role_course_ #{ self . id } " ] ) }
2013-04-24 22:50:45 +08:00
can :read_as_admin and can :read and can :manage and can :update and can :use_student_view and can :read_outcomes and can :view_hidden_items and can :view_unpublished_items
2011-08-15 23:53:55 +08:00
2012-07-12 01:20:08 +08:00
# Teachers and Designers can delete/reset, but not TAs
given { | user , session | ! self . deleted? && ! self . sis_source_id && user && user . cached_not_ended_enrollments . any? { | e | e . course_id == self . id && e . participating_content_admin? } && ( ! session || ! session [ " role_course_ #{ self . id } " ] ) }
2011-09-01 05:23:47 +08:00
can :delete
2012-07-12 01:20:08 +08:00
given { | user , session | ! self . deleted? && user && user . cached_not_ended_enrollments . any? { | e | e . course_id == self . id && e . participating_content_admin? } && ( ! session || ! session [ " role_course_ #{ self . id } " ] ) }
can :reset_content
2011-09-01 05:23:47 +08:00
2012-04-10 07:23:36 +08:00
# Student view student
given { | user | user && user . fake_student? && user . cached_not_ended_enrollments . any? { | e | e . course_id == self . id } }
2012-11-01 04:28:33 +08:00
can :read and can :participate_as_student and can :read_grades and can :read_outcomes
2012-04-10 07:23:36 +08:00
2011-09-01 05:23:47 +08:00
# Prior users
2012-12-12 21:50:15 +08:00
given do | user |
( available? || completed? ) && user &&
prior_enrollments . for_user ( user ) . count > 0
end
can :read , :read_outcomes
2011-08-16 06:34:57 +08:00
2012-07-12 01:20:08 +08:00
# Admin (Teacher/TA/Designer) of a concluded course
2012-12-12 21:50:15 +08:00
given do | user |
! self . deleted? && user &&
( prior_enrollments . for_user ( user ) . any? { | e | e . admin? } ||
user . cached_not_ended_enrollments . any? do | e |
e . course_id == self . id && e . admin? && e . completed?
end
)
end
can [ :read , :read_as_admin , :read_roster , :read_prior_roster , :read_forum , :use_student_view , :read_outcomes ]
given do | user |
! self . deleted? && user &&
( prior_enrollments . for_user ( user ) . any? { | e | e . instructor? } ||
user . cached_not_ended_enrollments . any? do | e |
e . course_id == self . id && e . instructor? && e . completed?
end
)
end
can :read_user_notes , :view_all_grades
2011-08-16 06:34:57 +08:00
2012-07-12 01:20:08 +08:00
# Teacher or Designer of a concluded course
2012-12-12 21:50:15 +08:00
given do | user |
! self . deleted? && ! self . sis_source_id && user &&
( prior_enrollments . for_user ( user ) . any? { | e | e . content_admin? } ||
user . cached_not_ended_enrollments . any? do | e |
e . course_id == self . id && e . content_admin? && e . state_based_on_date == :completed
end
)
end
2011-09-01 05:23:47 +08:00
can :delete
2011-08-16 06:34:57 +08:00
# Student of a concluded course
2012-12-12 21:50:15 +08:00
given do | user |
( self . available? || self . completed? ) && user &&
( prior_enrollments . for_user ( user ) . any? { | e | e . student? || e . assigned_observer? } ||
user . cached_not_ended_enrollments . any? do | e |
e . course_id == self . id && ( e . student? || e . assigned_observer? ) && e . state_based_on_date == :completed
end
)
end
can :read , :read_grades , :read_forum , :read_outcomes
2011-08-16 06:34:57 +08:00
# Viewing as different role type
2011-02-01 09:57:29 +08:00
given { | user , session | session && session [ " role_course_ #{ self . id } " ] }
2012-11-01 04:28:33 +08:00
can :read and can :read_outcomes
2011-08-15 23:53:55 +08:00
2011-08-16 06:34:57 +08:00
# Admin
given { | user , session | self . account_membership_allows ( user , session ) }
can :read_as_admin
given { | user , session | self . account_membership_allows ( user , session , :manage_courses ) }
2013-04-24 22:50:45 +08:00
can :read_as_admin and can :manage and can :update and can :delete and can :use_student_view and can :reset_content and can :view_hidden_items and can :view_unpublished_items
2011-08-16 06:34:57 +08:00
given { | user , session | self . account_membership_allows ( user , session , :read_course_content ) }
2012-11-01 04:28:33 +08:00
can :read and can :read_outcomes
2011-08-16 06:34:57 +08:00
2011-09-01 05:23:47 +08:00
given { | user , session | ! self . deleted? && self . sis_source_id && self . account_membership_allows ( user , session , :manage_sis ) }
can :delete
2011-08-16 06:34:57 +08:00
# Admins with read_roster can see prior enrollments (can't just check read_roster directly,
# because students can't see prior enrollments)
given { | user , session | self . account_membership_allows ( user , session , :read_roster ) }
can :read_prior_roster
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2013-02-13 04:31:15 +08:00
def allows_gradebook_uploads?
! large_roster?
end
2013-02-13 05:27:09 +08:00
# Public: Determine if SpeedGrader is enabled for the Course.
#
# Returns a boolean.
def allows_speed_grader?
! large_roster?
end
2013-02-12 06:53:29 +08:00
def old_gradebook_visible?
2013-02-26 05:07:40 +08:00
! ( large_roster? || (
student_count = Rails . cache . fetch ( [ 'student_count' , self ] . cache_key ) { students . count }
student_count > Setting . get_cached ( 'gb1_max' , '250' ) . to_i )
)
2013-02-12 06:53:29 +08:00
end
2011-02-01 09:57:29 +08:00
def enrollment_allows ( user , session , permission )
return false unless user && permission
2011-03-29 00:07:52 +08:00
2013-02-09 01:22:24 +08:00
temp_type = session && session [ " role_course_ #{ self . id } " ]
2011-02-01 09:57:29 +08:00
@enrollment_lookup || = { }
2013-02-09 01:22:24 +08:00
@enrollment_lookup [ user . id ] || = shard . activate do
if temp_type
2011-08-12 05:32:03 +08:00
[ Enrollment . typed_enrollment ( temp_type ) . new ( :course = > self , :user = > user , :workflow_state = > 'active' ) ]
2011-03-29 00:07:52 +08:00
else
2011-08-24 05:51:31 +08:00
self . enrollments . active_or_pending . for_user ( user ) . reject { | e | [ :inactive , :completed ] . include? ( e . state_based_on_date ) }
2011-02-01 09:57:29 +08:00
end
2013-02-09 01:22:24 +08:00
end
2011-03-29 00:07:52 +08:00
@enrollment_lookup [ user . id ] . any? { | e | e . has_permission_to? ( permission ) }
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def self . find_all_by_context_code ( codes )
ids = codes . map { | c | c . match ( / \ Acourse_( \ d+) \ z / ) [ 1 ] rescue nil } . compact
2013-03-19 03:07:47 +08:00
Course . where ( :id = > ids ) . includes ( :current_enrollments ) . all
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-24 13:26:39 +08:00
def end_at
conclude_at
end
2012-01-04 04:30:49 +08:00
2011-02-24 13:26:39 +08:00
def end_at_changed?
conclude_at_changed?
end
2011-07-28 00:33:04 +08:00
def recently_ended?
conclude_at && conclude_at < Time . now . utc && conclude_at > 1 . month . ago
end
2012-08-14 06:23:29 +08:00
# Public: Return true if the end date for a course or its term has passed.
#
# Returns boolean or nil.
def soft_concluded?
end_at . try ( :< , Time . now ) || enrollment_term . end_at . try ( :< , Time . now )
end
2012-10-26 04:08:44 +08:00
def soft_conclude!
self . conclude_at = Time . now
self . restrict_enrollments_to_course_dates = true
end
2011-02-01 09:57:29 +08:00
def state_sortable
case state
when :invited
1
when :creation_pending
1
when :active
0
when :deleted
5
when :course_inactivated
3
when :rejected
4
when :completed
2
else
6
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def account_chain
self . account . account_chain
end
2012-01-04 04:30:49 +08:00
2011-09-08 13:20:55 +08:00
def account_chain_ids
account_chain . map ( & :id )
end
memoize :account_chain_ids
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def institution_name
return self . root_account . name if self . root_account_id != Account . default . id
return ( self . account || self . root_account ) . name
end
memoize :institution_name
2011-08-13 00:12:13 +08:00
def account_users_for ( user )
2012-09-18 03:22:39 +08:00
return [ ] unless user
2013-05-31 23:38:08 +08:00
@associated_account_ids || = ( self . associated_accounts + [ Account . site_admin ] ) . map { | a | a . active? ? a . id : nil } . compact
2011-08-13 00:12:13 +08:00
@account_users || = { }
2012-09-18 03:22:39 +08:00
@account_users [ user ] || = Shard . partition_by_shard ( @associated_account_ids ) do | account_chain_ids |
if account_chain_ids == [ Account . site_admin . id ]
Account . site_admin . account_users_for ( user )
else
2013-03-19 03:07:47 +08:00
AccountUser . where ( :account_id = > account_chain_ids , :user_id = > user ) . all
2012-09-18 03:22:39 +08:00
end
end
@account_users [ user ] || = [ ]
2011-08-13 00:12:13 +08:00
@account_users [ user ]
end
2011-08-16 06:34:57 +08:00
def account_membership_allows ( user , session , permission = nil )
return false unless user
2011-02-01 09:57:29 +08:00
return false if session && session [ " role_course_ #{ self . id } " ]
2011-08-13 00:12:13 +08:00
2011-02-01 09:57:29 +08:00
@membership_allows || = { }
2012-12-07 07:15:53 +08:00
@membership_allows [ [ user . id , permission ] ] || = self . account_users_for ( user ) . any? { | au | permission . nil? || au . has_permission_to? ( self , permission ) }
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def teacherless?
# TODO: I need a better test for teacherless courses... in the mean time we'll just do this
return false
@teacherless_course || = Rails . cache . fetch ( [ 'teacherless_course' , self ] . cache_key ) do
! self . sis_source_id && self . teacher_enrollments . empty?
end
end
2012-01-04 04:30:49 +08:00
2011-11-30 05:59:40 +08:00
def grade_publishing_status_translation ( status , message )
status = " unpublished " if status . blank?
case status
when 'error'
if message . present?
message = t ( 'grade_publishing_status.error_with_message' , " Error: %{message} " , :message = > message )
2011-10-04 02:18:07 +08:00
else
2011-11-30 05:59:40 +08:00
message = t ( 'grade_publishing_status.error' , " Error " )
end
when 'unpublished'
if message . present?
message = t ( 'grade_publishing_status.unpublished_with_message' , " Unpublished: %{message} " , :message = > message )
else
message = t ( 'grade_publishing_status.unpublished' , " Unpublished " )
end
when 'pending'
if message . present?
message = t ( 'grade_publishing_status.pending_with_message' , " Pending: %{message} " , :message = > message )
else
message = t ( 'grade_publishing_status.pending' , " Pending " )
end
when 'publishing'
if message . present?
message = t ( 'grade_publishing_status.publishing_with_message' , " Publishing: %{message} " , :message = > message )
else
message = t ( 'grade_publishing_status.publishing' , " Publishing " )
end
when 'published'
if message . present?
message = t ( 'grade_publishing_status.published_with_message' , " Published: %{message} " , :message = > message )
else
message = t ( 'grade_publishing_status.published' , " Published " )
end
when 'unpublishable'
if message . present?
message = t ( 'grade_publishing_status.unpublishable_with_message' , " Unpublishable: %{message} " , :message = > message )
else
message = t ( 'grade_publishing_status.unpublishable' , " Unpublishable " )
end
else
if message . present?
message = t ( 'grade_publishing_status.unknown_with_message' , " Unknown status, %{status}: %{message} " , :message = > message , :status = > status )
else
message = t ( 'grade_publishing_status.unknown' , " Unknown status, %{status} " , :status = > status )
2011-10-04 02:18:07 +08:00
end
end
2011-11-30 05:59:40 +08:00
message
2011-10-01 02:40:25 +08:00
end
2011-11-30 05:59:40 +08:00
memoize :grade_publishing_status_translation
2011-10-01 02:40:25 +08:00
2011-11-30 05:59:40 +08:00
def grade_publishing_statuses
found_statuses = [ ] . to_set
2012-03-14 04:08:19 +08:00
enrollments = student_enrollments . not_fake . group_by do | e |
2011-11-30 05:59:40 +08:00
found_statuses . add e . grade_publishing_status
grade_publishing_status_translation ( e . grade_publishing_status , e . grade_publishing_message )
2011-04-15 07:49:25 +08:00
end
2011-11-30 05:59:40 +08:00
overall_status = " error "
overall_status = " unpublished " unless found_statuses . size > 0
overall_status = ( %w{ error unpublished pending publishing published unpublishable } ) . detect { | s | found_statuses . include? ( s ) } || overall_status
return enrollments , overall_status
end
def should_kick_off_grade_publishing_timeout?
settings = Canvas :: Plugin . find! ( 'grade_export' ) . settings
settings [ :success_timeout ] . to_i > 0 && Canvas :: Plugin . value_to_boolean ( settings [ :wait_for_success ] )
end
def self . valid_grade_export_types
@valid_grade_export_types || = {
" instructure_csv " = > {
:name = > t ( 'grade_export_types.instructure_csv' , " Instructure formatted CSV " ) ,
:callback = > lambda { | course , enrollments , publishing_user , publishing_pseudonym |
course . generate_grade_publishing_csv_output ( enrollments , publishing_user , publishing_pseudonym )
} ,
:requires_grading_standard = > false ,
:requires_publishing_pseudonym = > false
}
}
end
def allows_grade_publishing_by ( user )
return false unless Canvas :: Plugin . find! ( 'grade_export' ) . enabled?
settings = Canvas :: Plugin . find! ( 'grade_export' ) . settings
format_settings = Course . valid_grade_export_types [ settings [ :format_type ] ]
return false unless format_settings
return false if user . sis_pseudonym_for ( self ) . nil? and format_settings [ :requires_publishing_pseudonym ]
return true
2011-04-15 07:49:25 +08:00
end
def publish_final_grades ( publishing_user )
# we want to set all the publishing statuses to 'pending' immediately,
# and then as a delayed job, actually go publish them.
2011-11-30 05:59:40 +08:00
raise " final grade publishing disabled " unless Canvas :: Plugin . find! ( 'grade_export' ) . enabled?
settings = Canvas :: Plugin . find! ( 'grade_export' ) . settings
2011-04-15 07:49:25 +08:00
last_publish_attempt_at = Time . now . utc
2013-03-19 03:07:47 +08:00
self . student_enrollments . not_fake . update_all ( :grade_publishing_status = > " pending " ,
2011-11-30 05:59:40 +08:00
:grade_publishing_message = > nil ,
2013-03-19 03:07:47 +08:00
:last_publish_attempt_at = > last_publish_attempt_at )
2011-04-15 07:49:25 +08:00
send_later_if_production ( :send_final_grades_to_endpoint , publishing_user )
2011-11-30 05:59:40 +08:00
send_at ( last_publish_attempt_at + settings [ :success_timeout ] . to_i . seconds , :expire_pending_grade_publishing_statuses , last_publish_attempt_at ) if should_kick_off_grade_publishing_timeout?
2011-04-15 07:49:25 +08:00
end
def send_final_grades_to_endpoint ( publishing_user )
# actual grade publishing logic is here, but you probably want
# 'publish_final_grades'
2011-11-30 05:59:40 +08:00
self . recompute_student_scores_without_send_later
2013-03-08 07:23:32 +08:00
enrollments = self . student_enrollments . not_fake . includes ( :user , :course_section ) . order_by_sortable_name
2011-04-15 07:49:25 +08:00
2011-11-30 05:59:40 +08:00
errors = [ ]
posts_to_make = [ ]
posted_enrollment_ids = [ ]
all_enrollment_ids = enrollments . map ( & :id )
2011-06-22 02:58:04 +08:00
begin
2011-04-15 07:49:25 +08:00
2011-11-30 05:59:40 +08:00
raise " final grade publishing disabled " unless Canvas :: Plugin . find! ( 'grade_export' ) . enabled?
settings = Canvas :: Plugin . find! ( 'grade_export' ) . settings
2011-06-22 02:58:04 +08:00
raise " endpoint undefined " if settings [ :publish_endpoint ] . blank?
2011-11-30 05:59:40 +08:00
format_settings = Course . valid_grade_export_types [ settings [ :format_type ] ]
raise " unknown format type: #{ settings [ :format_type ] } " unless format_settings
raise " grade publishing requires a grading standard " if ! self . grading_standard_enabled? && format_settings [ :requires_grading_standard ]
2011-06-22 02:58:04 +08:00
2011-11-30 05:59:40 +08:00
publishing_pseudonym = publishing_user . sis_pseudonym_for ( self )
raise " publishing disallowed for this publishing user " if publishing_pseudonym . nil? and format_settings [ :requires_publishing_pseudonym ]
2011-06-22 02:58:04 +08:00
2011-11-30 05:59:40 +08:00
callback = Course . valid_grade_export_types [ settings [ :format_type ] ] [ :callback ]
2011-06-22 02:58:04 +08:00
2011-11-30 05:59:40 +08:00
posts_to_make = callback . call ( self , enrollments , publishing_user , publishing_pseudonym )
2011-06-22 02:58:04 +08:00
2011-11-30 05:59:40 +08:00
rescue = > e
2013-03-19 03:07:47 +08:00
Enrollment . where ( :id = > all_enrollment_ids ) . update_all ( :grade_publishing_status = > " error " , :grade_publishing_message = > e . to_s )
2011-11-30 05:59:40 +08:00
raise e
2011-04-28 08:16:51 +08:00
end
2011-04-15 07:49:25 +08:00
2011-04-28 08:16:51 +08:00
posts_to_make . each do | enrollment_ids , res , mime_type |
begin
2011-11-30 05:59:40 +08:00
posted_enrollment_ids += enrollment_ids
2011-04-28 08:16:51 +08:00
SSLCommon . post_data ( settings [ :publish_endpoint ] , res , mime_type )
2013-03-19 03:07:47 +08:00
Enrollment . where ( :id = > enrollment_ids ) . update_all ( :grade_publishing_status = > ( should_kick_off_grade_publishing_timeout? ? " publishing " : " published " ) , :grade_publishing_message = > nil )
2011-04-28 08:16:51 +08:00
rescue = > e
errors << e
2013-03-19 03:07:47 +08:00
Enrollment . where ( :id = > enrollment_ids ) . update_all ( :grade_publishing_status = > " error " , :grade_publishing_message = > e . to_s )
2011-04-28 08:16:51 +08:00
end
end
2011-06-22 02:58:04 +08:00
2013-03-19 03:07:47 +08:00
Enrollment . where ( :id = > ( all_enrollment_ids . to_set - posted_enrollment_ids . to_set ) . to_a ) . update_all ( :grade_publishing_status = > " unpublishable " , :grade_publishing_message = > nil )
2011-11-30 05:59:40 +08:00
2011-04-28 08:16:51 +08:00
raise errors [ 0 ] if errors . size > 0
end
2012-01-04 04:30:49 +08:00
2011-11-30 05:59:40 +08:00
def generate_grade_publishing_csv_output ( enrollments , publishing_user , publishing_pseudonym )
2011-04-28 08:16:51 +08:00
enrollment_ids = [ ]
2013-04-19 23:54:35 +08:00
res = CSV . generate do | csv |
2012-05-09 11:25:52 +08:00
row = [ " publisher_id " , " publisher_sis_id " , " course_id " , " course_sis_id " , " section_id " , " section_sis_id " , " student_id " , " student_sis_id " , " enrollment_id " , " enrollment_status " , " score " ]
2011-11-30 05:59:40 +08:00
row << " grade " if self . grading_standard_enabled?
csv << row
2011-04-15 07:49:25 +08:00
enrollments . each do | enrollment |
2011-06-23 04:35:05 +08:00
next unless enrollment . computed_final_score
2011-11-30 05:59:40 +08:00
enrollment_ids << enrollment . id
pseudonym_sis_ids = enrollment . user . pseudonyms . active . find_all_by_account_id ( self . root_account_id ) . map { | p | p . sis_user_id }
pseudonym_sis_ids = [ nil ] if pseudonym_sis_ids . empty?
pseudonym_sis_ids . each do | pseudonym_sis_id |
2012-05-09 11:25:52 +08:00
row = [ publishing_user . try ( :id ) , publishing_pseudonym . try ( :sis_user_id ) ,
enrollment . course . id , enrollment . course . sis_source_id ,
enrollment . course_section . id , enrollment . course_section . sis_source_id ,
enrollment . user . id , pseudonym_sis_id , enrollment . id ,
enrollment . workflow_state , enrollment . computed_final_score ]
2011-11-30 05:59:40 +08:00
row << enrollment . computed_final_grade if self . grading_standard_enabled?
csv << row
2011-04-15 07:49:25 +08:00
end
end
end
2011-11-30 05:59:40 +08:00
return [ [ enrollment_ids , res , " text/csv " ] ]
2011-04-15 07:49:25 +08:00
end
def expire_pending_grade_publishing_statuses ( last_publish_attempt_at )
2013-03-19 03:07:47 +08:00
self . student_enrollments . not_fake . where ( :grade_publishing_status = > [ 'pending' , 'publishing' ] ,
:last_publish_attempt_at = > last_publish_attempt_at ) .
update_all ( :grade_publishing_status = > 'error' , :grade_publishing_message = > " Timed out. " )
2011-04-15 07:49:25 +08:00
end
2011-02-01 09:57:29 +08:00
def gradebook_to_csv ( options = { } )
2013-04-24 10:54:10 +08:00
# user: used for name in csv output
# course_section: used for display_name in csv output
# user > pseudonyms: used for sis_user_id/unique_id if options[:include_sis_id]
# user > pseudonyms > account: used in find_pseudonym_for_account > works_for_account
2012-02-24 03:55:17 +08:00
includes = [ :user , :course_section ]
2013-04-24 10:54:10 +08:00
includes = { :user = > { :pseudonyms = > :account } , :course_section = > [ ] } if options [ :include_sis_id ]
2012-06-21 04:02:10 +08:00
scope = options [ :user ] ? self . enrollments_visible_to ( options [ :user ] ) : self . student_enrollments
2013-03-08 07:23:32 +08:00
student_enrollments = scope . includes ( includes ) . order_by_sortable_name # remove duplicate enrollments for students enrolled in multiple sections
2013-02-09 05:39:18 +08:00
student_enrollments = student_enrollments . all . uniq_by ( & :user_id )
calc = GradeCalculator . new ( student_enrollments . map ( & :user_id ) , self ,
:ignore_muted = > false )
grades = calc . compute_scores
submissions = { }
calc . submissions . each { | s | submissions [ [ s . user_id , s . assignment_id ] ] = s }
2013-02-12 04:41:18 +08:00
assignments = calc . assignments
2013-02-09 05:39:18 +08:00
2011-06-22 00:23:08 +08:00
read_only = t ( 'csv.read_only_field' , '(read only)' )
2011-07-01 04:36:59 +08:00
t 'csv.student' , 'Student'
t 'csv.id' , 'ID'
2011-08-19 23:39:44 +08:00
t 'csv.sis_user_id' , 'SIS User ID'
t 'csv.sis_login_id' , 'SIS Login ID'
2011-07-01 04:36:59 +08:00
t 'csv.section' , 'Section'
t 'csv.comments' , 'Comments'
t 'csv.current_score' , 'Current Score'
t 'csv.final_score' , 'Final Score'
t 'csv.final_grade' , 'Final Grade'
t 'csv.points_possible' , 'Points Possible'
2013-04-19 23:54:35 +08:00
res = CSV . generate do | csv |
2011-02-01 09:57:29 +08:00
#First row
2011-08-19 23:39:44 +08:00
row = [ " Student " , " ID " ]
row . concat ( [ " SIS User ID " , " SIS Login ID " ] ) if options [ :include_sis_id ]
row << " Section "
2013-02-12 04:41:18 +08:00
row . concat assignments . map ( & :title_with_id )
2013-04-30 08:29:45 +08:00
include_points = ! apply_group_weights?
row . concat ( [ " Current Points " , " Final Points " ] ) if include_points
2011-02-01 09:57:29 +08:00
row . concat ( [ " Current Score " , " Final Score " ] )
2011-11-30 05:59:40 +08:00
row . concat ( [ " Final Grade " ] ) if self . grading_standard_enabled?
2013-02-12 04:41:18 +08:00
csv << row
2012-01-04 04:30:49 +08:00
2012-01-26 06:51:17 +08:00
#Possible muted row
if assignments . any? ( & :muted )
#This is is not translated since we look for this exact string when we upload to gradebook.
2012-12-22 07:02:45 +08:00
row = [ '' , '' , '' ]
2012-01-26 06:51:17 +08:00
row . concat ( [ '' , '' ] ) if options [ :include_sis_id ]
2013-02-12 04:41:18 +08:00
row . concat ( assignments . map { | a | a . muted? ? 'Muted' : '' } )
row . concat [ '' , '' ]
row . concat [ '' ] if self . grading_standard_enabled?
csv << row
2012-01-26 06:51:17 +08:00
end
2011-02-01 09:57:29 +08:00
#Second Row
row = [ " Points Possible " , " " , " " ]
2011-09-13 04:52:16 +08:00
row . concat ( [ " " , " " ] ) if options [ :include_sis_id ]
2013-02-12 04:41:18 +08:00
row . concat assignments . map ( & :points_possible )
2013-04-30 08:29:45 +08:00
row . concat [ read_only , read_only ] if include_points
2011-06-22 00:23:08 +08:00
row . concat ( [ read_only , read_only ] )
2011-11-30 05:59:40 +08:00
row . concat ( [ read_only ] ) if self . grading_standard_enabled?
2013-02-12 04:41:18 +08:00
csv << row
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
student_enrollments . each do | student_enrollment |
student = student_enrollment . user
student_section = ( student_enrollment . course_section . display_name rescue nil ) || " "
student_submissions = assignments . map do | a |
submission = submissions [ [ student . id , a . id ] ]
2013-02-12 04:41:18 +08:00
submission . try ( :score )
2011-02-01 09:57:29 +08:00
end
#Last Row
2011-08-19 23:39:44 +08:00
row = [ student . last_name_first , student . id ]
2012-02-24 03:55:17 +08:00
if options [ :include_sis_id ]
pseudonym = student . sis_pseudonym_for ( self . root_account )
row << pseudonym . try ( :sis_user_id )
pseudonym || = student . find_pseudonym_for_account ( self . root_account , true )
row << pseudonym . try ( :unique_id )
end
2011-08-19 23:39:44 +08:00
row << student_section
2011-02-01 09:57:29 +08:00
row . concat ( student_submissions )
2012-12-22 07:02:45 +08:00
2013-04-30 08:29:45 +08:00
current_info , final_info = grades . shift
row . concat [ current_info [ :total ] , final_info [ :total ] ] if include_points
row . concat [ current_info [ :grade ] , final_info [ :grade ] ]
2011-11-30 05:59:40 +08:00
if self . grading_standard_enabled?
2013-04-30 08:29:45 +08:00
row . concat ( [ score_to_grade ( final_info [ :grade ] ) ] )
2011-04-09 06:45:38 +08:00
end
2013-02-12 04:41:18 +08:00
csv << row
2011-02-01 09:57:29 +08:00
end
end
end
2011-12-07 07:36:27 +08:00
# included to make it easier to work with api, which returns
# sis_source_id as sis_course_id.
alias_attribute :sis_course_id , :sis_source_id
2011-04-09 06:45:38 +08:00
def grading_standard_title
2011-11-30 05:59:40 +08:00
if self . grading_standard_enabled?
2011-06-22 00:23:08 +08:00
self . grading_standard . try ( :title ) || t ( 'default_grading_scheme_name' , " Default Grading Scheme " )
2011-04-09 06:45:38 +08:00
else
nil
end
end
2012-01-04 04:30:49 +08:00
2011-04-09 06:45:38 +08:00
def score_to_grade ( score )
2011-11-30 05:59:40 +08:00
return nil unless self . grading_standard_enabled? && score
2013-02-09 05:39:18 +08:00
@scheme || = self . grading_standard . try ( :data ) ||
GradingStandard . default_grading_standard
GradingStandard . score_to_grade ( @scheme , score )
2011-04-09 06:45:38 +08:00
end
2011-02-01 09:57:29 +08:00
2012-03-09 01:14:57 +08:00
def participants ( include_observers = false )
( participating_admins + participating_students + ( include_observers ? participating_observers : [ ] ) ) . uniq
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
def enroll_user ( user , type = 'StudentEnrollment' , opts = { } )
2011-02-01 09:57:29 +08:00
enrollment_state = opts [ :enrollment_state ]
section = opts [ :section ]
2011-12-09 08:02:47 +08:00
limit_privileges_to_course_section = opts [ :limit_privileges_to_course_section ]
2012-04-16 23:27:28 +08:00
associated_user_id = opts [ :associated_user_id ]
2012-12-27 23:54:05 +08:00
role_name = opts [ :role_name ]
2011-02-01 09:57:29 +08:00
section || = self . default_section
enrollment_state || = self . available? ? " invited " : " creation_pending "
2012-06-19 05:38:29 +08:00
if type == 'TeacherEnrollment' || type == 'TaEnrollment' || type == 'DesignerEnrollment'
enrollment_state = 'invited' if enrollment_state == 'creation_pending'
else
enrollment_state = 'creation_pending' if enrollment_state == 'invited' && ! self . available?
end
2012-04-16 23:27:28 +08:00
if opts [ :allow_multiple_enrollments ] && associated_user_id
2012-12-27 23:54:05 +08:00
e = self . enrollments . find_by_user_id_and_type_and_role_name_and_course_section_id_and_associated_user_id ( user . id , type , role_name , section . id , associated_user_id )
2012-04-16 23:27:28 +08:00
elsif opts [ :allow_multiple_enrollments ]
2012-12-27 23:54:05 +08:00
e = self . enrollments . find_by_user_id_and_type_and_role_name_and_course_section_id ( user . id , type , role_name , section . id )
2012-03-14 04:08:19 +08:00
else
2012-12-27 23:54:05 +08:00
e = self . enrollments . find_by_user_id_and_type_and_role_name ( user . id , type , role_name )
2012-03-14 04:08:19 +08:00
end
2013-01-11 06:16:27 +08:00
if e
e . already_enrolled = true
e . attributes = {
:course_section = > section ,
:workflow_state = > 'invited' ,
:limit_privileges_to_course_section = > limit_privileges_to_course_section } if e . completed? || e . rejected?
end
2012-03-14 04:08:19 +08:00
# if we're creating a new enrollment, we want to return it as the correct
# subclass, but without using associations, we need to manually activate
# sharding. We should probably find a way to go back to using the
# association here -- just ran out of time.
self . shard . activate do
e || = Enrollment . typed_enrollment ( type ) . new (
2013-01-16 07:37:54 +08:00
:user = > user ,
2012-03-14 04:08:19 +08:00
:course = > self ,
2013-01-16 07:37:54 +08:00
:course_section = > section ,
:workflow_state = > enrollment_state ,
2012-03-14 04:08:19 +08:00
:limit_privileges_to_course_section = > limit_privileges_to_course_section )
end
2012-04-16 23:27:28 +08:00
e . associated_user_id = associated_user_id
2012-12-27 23:54:05 +08:00
e . role_name = role_name
2011-10-27 00:39:39 +08:00
if e . changed?
if opts [ :no_notify ]
e . save_without_broadcasting
else
e . save
end
end
2011-09-02 11:40:25 +08:00
e . user = user
2011-02-01 09:57:29 +08:00
self . claim if self . created? && e && e . admin?
2013-02-09 01:25:31 +08:00
unless opts [ :skip_touch_user ]
e . associated_user . try ( :touch )
user . try ( :touch )
end
2012-03-14 04:08:19 +08:00
user . try ( :reload )
2011-02-01 09:57:29 +08:00
e
2013-02-12 04:41:18 +08:00
end
2012-01-04 04:30:49 +08:00
2011-10-27 00:39:39 +08:00
def enroll_student ( user , opts = { } )
enroll_user ( user , 'StudentEnrollment' , opts )
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2012-05-30 07:35:00 +08:00
def self_enroll_student ( user , opts = { } )
enrollment = enroll_student ( user , opts . merge ( :no_notify = > true ) )
enrollment . self_enrolled = true
2012-12-07 14:28:37 +08:00
enrollment . accept ( :force )
2012-05-30 07:35:00 +08:00
unless opts [ :skip_pseudonym ]
new_pseudonym = user . find_or_initialize_pseudonym_for_account ( root_account )
new_pseudonym . save if new_pseudonym && new_pseudonym . changed?
end
enrollment
end
2011-02-01 09:57:29 +08:00
def enroll_ta ( user )
enroll_user ( user , 'TaEnrollment' )
end
2012-01-04 04:30:49 +08:00
2012-01-13 07:57:58 +08:00
def enroll_designer ( user )
enroll_user ( user , 'DesignerEnrollment' )
end
2011-02-01 09:57:29 +08:00
def enroll_teacher ( user )
enroll_user ( user , 'TeacherEnrollment' )
end
2012-01-04 04:30:49 +08:00
2013-01-31 03:39:40 +08:00
def resubmission_for ( asset )
2013-03-19 03:07:47 +08:00
# without the scoped, Rails 2 will try to do an update_all instead (due to
# the association)
asset . ignores . where ( :purpose = > 'grading' , :permanent = > false ) . scoped . delete_all
2013-01-31 03:39:40 +08:00
instructors . each ( & :touch )
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-04-09 06:45:38 +08:00
def grading_standard_enabled
! ! self . grading_standard_id
end
2011-11-30 05:59:40 +08:00
alias_method :grading_standard_enabled? , :grading_standard_enabled
2012-01-04 04:30:49 +08:00
2011-04-09 06:45:38 +08:00
def grading_standard_enabled = ( val )
2011-11-30 05:59:40 +08:00
if Canvas :: Plugin . value_to_boolean ( val )
2011-04-09 06:45:38 +08:00
self . grading_standard_id || = 0
2011-11-30 05:59:40 +08:00
else
self . grading_standard = self . grading_standard_id = nil
2011-04-09 06:45:38 +08:00
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def add_aggregate_entries ( entries , feed )
if feed . feed_purpose == 'announcements'
entries . each do | entry |
user = entry . user || feed . user
# If already existed and has been updated
if entry . entry_changed? && entry . asset
entry . asset . update_attributes (
:title = > entry . title ,
:message = > entry . message
)
elsif ! entry . asset
announcement = self . announcements . build (
:title = > entry . title ,
:message = > entry . message
)
announcement . user = user
announcement . save
entry . update_attributes ( :asset = > announcement )
end
end
elsif feed . feed_purpose == 'calendar'
entries . each do | entry |
user = entry . user || feed . user
# If already existed and has been updated
if entry . entry_changed? && entry . asset
event = entry . asset
event . attributes = {
:title = > entry . title ,
:description = > entry . message ,
:start_at = > entry . start_at ,
:end_at = > entry . end_at
}
event . workflow_state = 'cancelled' if entry . cancelled?
event . save
elsif entry . active? && ! entry . asset
event = self . calendar_events . build (
:title = > entry . title ,
:description = > entry . message ,
:start_at = > entry . start_at ,
:end_at = > entry . end_at
)
event . workflow_state = 'read_only'
event . workflow_state = 'cancelled' if entry . cancelled?
event . save
entry . update_attributes ( :asset = > event )
end
end
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def readable_default_wiki_editing_roles
roles = self . default_wiki_editing_roles || " teachers "
case roles
when 'teachers'
2011-06-22 00:23:08 +08:00
t ( 'wiki_permissions.only_teachers' , 'Only Teachers' )
2011-02-01 09:57:29 +08:00
when 'teachers,students'
2011-06-22 00:23:08 +08:00
t ( 'wiki_permissions.teachers_students' , 'Teacher and Students' )
2011-02-01 09:57:29 +08:00
when 'teachers,students,public'
2011-06-22 00:23:08 +08:00
t ( 'wiki_permissions.all' , 'Anyone' )
2011-02-01 09:57:29 +08:00
else
2011-06-22 00:23:08 +08:00
t ( 'wiki_permissions.only_teachers' , 'Only Teachers' )
2011-02-01 09:57:29 +08:00
end
end
2012-01-04 04:30:49 +08:00
2012-07-11 00:57:14 +08:00
def default_section ( opts = { } )
section = course_sections . active . find_by_default_section ( true )
if ! section && opts [ :include_xlists ]
2013-03-19 03:07:47 +08:00
section = CourseSection . active . where ( :nonxlist_course_id = > self ) . order ( :id ) . first
2012-07-11 00:57:14 +08:00
end
if ! section
section = course_sections . build
section . default_section = true
2011-05-07 02:22:03 +08:00
section . course = self
2013-01-29 06:26:26 +08:00
section . root_account_id = self . root_account_id
2012-07-11 00:57:14 +08:00
section . save unless new_record?
2011-05-07 02:22:03 +08:00
end
2012-07-11 00:57:14 +08:00
section
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def assert_section
if self . course_sections . active . empty?
default = self . default_section
default . workflow_state = 'active'
default . save
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def file_structure_for ( user )
User . file_structure_for ( self , user )
end
2012-01-04 04:30:49 +08:00
2011-09-07 22:02:47 +08:00
def merge_in ( course , options = { } , import = nil )
2011-02-01 09:57:29 +08:00
return [ ] if course == self
2011-09-07 22:02:47 +08:00
res = merge_into_course ( course , options , import )
2011-02-01 09:57:29 +08:00
course . course_sections . active . each do | section |
if options [ :all_sections ] || options [ section . asset_string . to_sym ]
section . move_to_course ( self )
end
end
res
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def self . copy_authorized_content ( html , to_context , user )
return html unless to_context
pairs = [ ]
content_types_to_copy = [ 'files' ]
matches = html . scan ( / \/ (courses|groups|users) \/ ( \ d+) \/ ( \ w+) / ) do | match |
pairs << [ match [ 0 ] . singularize , match [ 1 ] . to_i ] if content_types_to_copy . include? ( match [ 2 ] )
end
pairs = pairs . select { | p | p [ 0 ] != to_context . class . to_s || p [ 1 ] != to_context . id }
pairs . uniq . each do | context_type , id |
context = Context . find_by_asset_string ( " #{ context_type } _ #{ id } " ) rescue nil
if context
if context . grants_right? ( user , nil , :manage_content )
html = self . migrate_content_links ( html , context , to_context , content_types_to_copy )
2012-01-04 04:30:49 +08:00
else
2011-02-01 09:57:29 +08:00
html = self . migrate_content_links ( html , context , to_context , content_types_to_copy , user )
end
end
end
html
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def turnitin_settings
# check if somewhere up the account chain turnitin is enabled and
# has valid settings
2013-07-09 03:08:06 +08:00
account . turnitin_settings
2011-02-01 09:57:29 +08:00
end
2013-07-09 03:08:06 +08:00
memoize :turnitin_settings
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def turnitin_pledge
self . account . closest_turnitin_pledge
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def all_turnitin_comments
comments = self . account . closest_turnitin_comments || " "
if self . turnitin_comments && ! self . turnitin_comments . empty?
comments += " \n \n " if comments && ! comments . empty?
comments += self . turnitin_comments
end
self . extend TextHelper
format_message ( comments ) . first
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def turnitin_enabled?
! ! self . turnitin_settings
end
2011-04-28 02:34:01 +08:00
def self . find_or_create_for_new_context ( obj_class , new_context , old_context , old_id )
association_name = obj_class . table_name
old_item = old_context . send ( association_name ) . find_by_id ( old_id )
2013-03-19 03:07:47 +08:00
res = new_context . send ( association_name ) . where ( :cloned_item_id = > old_item . cloned_item_id ) . order ( 'id desc' ) . first if old_item
2011-09-29 07:26:18 +08:00
if ! res && old_item
# make sure it's active by re-finding it with the active scope ... active
old_item = old_context . send ( association_name ) . active . find_by_id ( old_item . id )
2011-04-28 02:34:01 +08:00
res = old_item . clone_for ( new_context ) if old_item
res . save if res
end
res
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def self . migrate_content_links ( html , from_context , to_context , supported_types = nil , user_to_check_for_permission = nil )
2011-10-04 23:03:19 +08:00
return html unless html . present? && to_context
from_name = from_context . class . name . tableize
to_name = to_context . class . name . tableize
2011-02-01 09:57:29 +08:00
@merge_mappings || = { }
2011-10-04 23:03:19 +08:00
rewriter = UserContent :: HtmlRewriter . new ( from_context , user_to_check_for_permission )
2011-02-01 09:57:29 +08:00
limit_migrations_to_listed_types = ! ! supported_types
2011-10-04 23:03:19 +08:00
rewriter . allowed_types = %w( assignments calendar_events discussion_topics collaborations files conferences quizzes groups modules )
rewriter . set_default_handler do | match |
new_url = match . url
2011-10-16 06:43:54 +08:00
next ( new_url ) if supported_types && ! supported_types . include? ( match . type )
2011-10-04 23:03:19 +08:00
new_id = @merge_mappings [ " #{ match . obj_class . name . underscore } _ #{ match . obj_id } " ]
2011-10-16 06:43:54 +08:00
next ( new_url ) unless rewriter . user_can_view_content? { match . obj_class . find_by_id ( match . obj_id ) }
2011-10-04 23:03:19 +08:00
if ! new_id && to_context != from_context
new_obj = self . find_or_create_for_new_context ( match . obj_class , to_context , from_context , match . obj_id )
new_id = new_obj . id if new_obj
2011-02-01 09:57:29 +08:00
end
2011-10-04 23:03:19 +08:00
if ! limit_migrations_to_listed_types || new_id
new_url = new_url . gsub ( " #{ match . type } / #{ match . obj_id } " , new_id ? " #{ match . type } / #{ new_id } " : " #{ match . type } " )
2011-02-01 09:57:29 +08:00
end
2011-10-04 23:03:19 +08:00
new_url . gsub ( " / #{ from_name } / #{ from_context . id } " , " / #{ to_name } / #{ to_context . id } " )
end
rewriter . set_unknown_handler do | match |
match . url . gsub ( " / #{ from_name } / #{ from_context . id } " , " / #{ to_name } / #{ to_context . id } " )
2011-02-01 09:57:29 +08:00
end
2011-10-04 23:03:19 +08:00
html = rewriter . translate_content ( html )
2011-02-01 09:57:29 +08:00
if ! limit_migrations_to_listed_types
2011-10-04 23:03:19 +08:00
# for things like calendar urls, swap out the old context id with the new one
2011-02-01 09:57:29 +08:00
regex = Regexp . new ( " include_contexts=[^ \\ s&]* #{ from_context . asset_string } " )
html = html . gsub ( regex ) do | match |
match . gsub ( " #{ from_context . asset_string } " , " #{ to_context . asset_string } " )
end
2011-10-04 23:03:19 +08:00
# swap out the old host with the new host
2011-02-01 09:57:29 +08:00
html = html . gsub ( HostUrl . context_host ( from_context ) , HostUrl . context_host ( to_context ) )
end
2011-10-04 23:03:19 +08:00
2011-02-01 09:57:29 +08:00
html
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def migrate_content_links ( html , from_course )
Course . migrate_content_links ( html , from_course , self )
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
attr_accessor :merge_results
def log_merge_result ( text )
@merge_results || = [ ]
logger . debug text
@merge_results << text
end
def warn_merge_result ( text )
log_merge_result ( text )
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def bool_res ( val )
2011-11-30 05:59:40 +08:00
Canvas :: Plugin . value_to_boolean ( val )
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def process_migration_files ( data , migration )
return unless data [ 'all_files_export' ] && data [ 'all_files_export' ] [ 'file_path' ]
return unless File . exist? ( data [ 'all_files_export' ] [ 'file_path' ] )
2012-01-04 04:30:49 +08:00
2011-04-19 11:16:36 +08:00
self . attachment_path_id_lookup || = { }
2012-07-26 00:48:17 +08:00
self . attachment_path_id_lookup_lower || = { }
2011-02-01 09:57:29 +08:00
params = migration . migration_settings [ :migration_ids_to_import ]
valid_paths = [ ]
( data [ 'file_map' ] || { } ) . each do | id , file |
2012-09-14 02:11:21 +08:00
path = file [ 'path_name' ] . starts_with? ( '/' ) ? file [ 'path_name' ] [ 1 .. - 1 ] : file [ 'path_name' ]
self . attachment_path_id_lookup [ path ] = file [ 'migration_id' ]
self . attachment_path_id_lookup_lower [ path . downcase ] = file [ 'migration_id' ]
2013-05-30 06:41:50 +08:00
if migration . import_object? ( " attachments " , file [ 'migration_id' ] ) || migration . import_object? ( " files " , file [ 'migration_id' ] )
2012-09-14 02:11:21 +08:00
valid_paths << path
2011-02-01 09:57:29 +08:00
end
end
valid_paths = [ 0 ] if valid_paths . empty? && params [ :copy ] && params [ :copy ] [ :files ]
logger . debug " adding #{ valid_paths . length } files "
total = valid_paths . length
if valid_paths != [ 0 ]
current = 0
last = current
callback = Proc . new do
current += 1
if ( current - last ) > 10
last = current
2013-03-29 03:02:06 +08:00
migration . update_import_progress ( ( current . to_f / total ) * 18 . 0 )
2011-02-01 09:57:29 +08:00
end
end
2011-04-29 23:56:52 +08:00
unzip_opts = {
:course = > migration . context ,
:filename = > data [ 'all_files_export' ] [ 'file_path' ] ,
:valid_paths = > valid_paths ,
:callback = > callback ,
:logger = > logger ,
:rename_files = > migration . migration_settings [ :files_import_allow_rename ] ,
:migration_id_map = > self . attachment_path_id_lookup ,
}
if root_path = migration . migration_settings [ :files_import_root_path ]
unzip_opts [ :root_directory ] = Folder . assert_path (
root_path , migration . context )
end
unzipper = UnzipAttachment . new ( unzip_opts )
2013-03-29 03:02:06 +08:00
migration . update_import_progress ( 1 . 0 )
2011-02-01 09:57:29 +08:00
unzipper . process
end
end
private :process_migration_files
2012-01-13 00:52:41 +08:00
def import_media_objects ( mo_attachments , migration )
wait_for_completion = ( migration && migration . migration_settings [ :worker_class ] == CC :: Importer :: Canvas :: Converter . name )
unless mo_attachments . blank?
MediaObject . add_media_files ( mo_attachments , wait_for_completion )
end
end
2011-02-01 09:57:29 +08:00
def import_from_migration ( data , params , migration )
params || = { :copy = > { } }
logger . debug " starting import "
@full_migration_hash = data
@external_url_hash = { }
@migration_results = [ ]
2011-11-12 04:53:48 +08:00
@content_migration = migration
2011-02-01 09:57:29 +08:00
( data [ 'web_link_categories' ] || [ ] ) . map { | c | c [ 'links' ] } . flatten . each do | link |
@external_url_hash [ link [ 'link_id' ] ] = link
end
ActiveRecord :: Base . skip_touch_context
@imported_migration_items = [ ]
2012-03-28 22:52:21 +08:00
if ! migration . for_course_copy?
# These only need to be processed once
Attachment . skip_media_object_creation do
2013-03-29 03:02:06 +08:00
process_migration_files ( data , migration ) ; migration . update_import_progress ( 18 )
Attachment . process_migration ( data , migration ) ; migration . update_import_progress ( 20 )
2012-03-28 22:52:21 +08:00
mo_attachments = self . imported_migration_items . find_all { | i | i . is_a? ( Attachment ) && i . media_entry_id . present? }
import_media_objects ( mo_attachments , migration )
end
2011-04-24 08:51:53 +08:00
end
2011-04-28 00:25:47 +08:00
2013-03-29 03:02:06 +08:00
migration . update_import_progress ( 31 )
question_data = AssessmentQuestion . process_migration ( data , migration ) ; migration . update_import_progress ( 35 )
Group . process_migration ( data , migration ) ; migration . update_import_progress ( 36 )
LearningOutcome . process_migration ( data , migration ) ; migration . update_import_progress ( 37 )
Rubric . process_migration ( data , migration ) ; migration . update_import_progress ( 38 )
2011-04-12 21:41:47 +08:00
@assignment_group_no_drop_assignments = { }
2013-03-29 03:02:06 +08:00
AssignmentGroup . process_migration ( data , migration ) ; migration . update_import_progress ( 39 )
ExternalFeed . process_migration ( data , migration ) ; migration . update_import_progress ( 39 . 5 )
GradingStandard . process_migration ( data , migration ) ; migration . update_import_progress ( 40 )
2013-06-20 01:45:02 +08:00
ContextExternalTool . process_migration ( data , migration ) ; migration . update_import_progress ( 45 )
2011-02-01 09:57:29 +08:00
2011-09-16 07:54:34 +08:00
#These need to be ran twice because they can reference each other
2013-06-20 01:45:02 +08:00
Quiz . process_migration ( data , migration , question_data ) ; migration . update_import_progress ( 50 )
2013-03-29 03:02:06 +08:00
DiscussionTopic . process_migration ( data , migration ) ; migration . update_import_progress ( 55 )
WikiPage . process_migration ( data , migration ) ; migration . update_import_progress ( 60 )
Assignment . process_migration ( data , migration ) ; migration . update_import_progress ( 65 )
2013-06-20 01:45:02 +08:00
2011-09-16 07:54:34 +08:00
# and second time...
2013-06-20 01:45:02 +08:00
Quiz . process_migration ( data , migration , question_data ) ; migration . update_import_progress ( 70 )
ContextModule . process_migration ( data , migration ) ; migration . update_import_progress ( 72 )
2013-03-29 03:02:06 +08:00
DiscussionTopic . process_migration ( data , migration ) ; migration . update_import_progress ( 75 )
WikiPage . process_migration ( data , migration ) ; migration . update_import_progress ( 80 )
Assignment . process_migration ( data , migration ) ; migration . update_import_progress ( 85 )
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
#These aren't referenced by anything, but reference other things
2013-03-29 03:02:06 +08:00
CalendarEvent . process_migration ( data , migration ) ; migration . update_import_progress ( 90 )
WikiPage . process_migration_course_outline ( data , migration ) ; migration . update_import_progress ( 95 )
2012-01-04 04:30:49 +08:00
2012-11-01 05:46:35 +08:00
everything_selected = ! migration . copy_options || migration . is_set? ( migration . copy_options [ :everything ] )
if everything_selected || migration . is_set? ( migration . copy_options [ :all_course_settings ] )
2013-03-29 03:02:06 +08:00
import_settings_from_migration ( data , migration ) ; migration . update_import_progress ( 96 )
2012-03-28 22:52:21 +08:00
end
2012-11-01 05:46:35 +08:00
syllabus_should_be_added = everything_selected || migration . copy_options [ :syllabus_body ]
if syllabus_should_be_added
syllabus_body = data [ :course ] [ :syllabus_body ] if data [ :course ]
import_syllabus_from_migration ( syllabus_body ) if syllabus_body
end
2013-04-04 02:30:57 +08:00
migration . add_warnings_for_missing_content_links
2011-06-18 00:58:18 +08:00
begin
#Adjust dates
2013-03-29 03:02:06 +08:00
if shift_options = migration . date_shift_options
2011-06-18 00:58:18 +08:00
shift_options = shift_date_options ( self , shift_options )
@imported_migration_items . each do | event |
if event . is_a? ( Assignment )
event . due_at = shift_date ( event . due_at , shift_options )
event . lock_at = shift_date ( event . lock_at , shift_options )
event . unlock_at = shift_date ( event . unlock_at , shift_options )
event . peer_reviews_due_at = shift_date ( event . peer_reviews_due_at , shift_options )
event . save_without_broadcasting!
elsif event . is_a? ( DiscussionTopic )
event . delayed_post_at = shift_date ( event . delayed_post_at , shift_options )
event . save_without_broadcasting!
elsif event . is_a? ( CalendarEvent )
event . start_at = shift_date ( event . start_at , shift_options )
event . end_at = shift_date ( event . end_at , shift_options )
event . save_without_broadcasting!
elsif event . is_a? ( Quiz )
event . due_at = shift_date ( event . due_at , shift_options )
event . lock_at = shift_date ( event . lock_at , shift_options )
event . unlock_at = shift_date ( event . unlock_at , shift_options )
event . save!
2012-03-28 22:52:21 +08:00
elsif event . is_a? ( ContextModule )
event . unlock_at = shift_date ( event . unlock_at , shift_options )
event . start_at = shift_date ( event . start_at , shift_options )
event . end_at = shift_date ( event . end_at , shift_options )
2012-04-20 00:47:31 +08:00
event . save!
2011-06-18 00:58:18 +08:00
end
2011-02-01 09:57:29 +08:00
end
2012-03-28 22:52:21 +08:00
self . start_at || = shift_options [ :new_start_date ]
self . conclude_at || = shift_options [ :new_end_date ]
2011-02-01 09:57:29 +08:00
end
2011-06-18 00:58:18 +08:00
rescue
2011-11-12 04:53:48 +08:00
add_migration_warning ( " Couldn't adjust the due dates. " , $! )
2011-02-01 09:57:29 +08:00
end
migration . progress = 100
migration . migration_settings || = { }
migration . migration_settings [ :imported_assets ] = @imported_migration_items . map ( & :asset_string )
migration . workflow_state = :imported
migration . save
ActiveRecord :: Base . skip_touch_context ( false )
self . touch
@imported_migration_items
end
2011-11-12 04:53:48 +08:00
attr_accessor :imported_migration_items , :full_migration_hash , :external_url_hash , :content_migration
2012-07-26 00:48:17 +08:00
attr_accessor :folder_name_lookups , :attachment_path_id_lookup , :attachment_path_id_lookup_lower , :assignment_group_no_drop_assignments
2012-01-04 04:30:49 +08:00
2012-11-01 05:46:35 +08:00
def import_syllabus_from_migration ( syllabus_body )
2013-04-04 02:30:57 +08:00
missing_links = [ ]
self . syllabus_body = ImportedHtmlConverter . convert ( syllabus_body , self , { :missing_links = > missing_links } )
self . content_migration . add_missing_content_links ( :class = > self . class . to_s ,
:id = > self . id , :field = > " syllabus " , :missing_links = > missing_links ,
:url = > " / #{ self . class . to_s . underscore . pluralize } / #{ self . id } /assignments/syllabus " )
2012-11-01 05:46:35 +08:00
end
2012-05-29 23:07:14 +08:00
def import_settings_from_migration ( data , migration )
2011-04-15 00:40:32 +08:00
return unless data [ :course ]
settings = data [ :course ]
2012-04-16 21:31:40 +08:00
if settings [ :tab_configuration ] && settings [ :tab_configuration ] . is_a? ( Array )
self . tab_configuration = settings [ :tab_configuration ]
end
2012-05-29 23:07:14 +08:00
if settings [ :storage_quota ] && ( migration . for_course_copy? || self . account . grants_right? ( migration . user , nil , :manage_courses ) )
self . storage_quota = settings [ :storage_quota ]
end
2011-04-15 00:40:32 +08:00
atts = Course . clonable_attributes
2011-09-14 01:51:33 +08:00
atts -= Canvas :: Migration :: MigratorHelper :: COURSE_NO_COPY_ATTS
2011-04-15 00:40:32 +08:00
settings . slice ( * atts . map ( & :to_s ) ) . each do | key , val |
self . send ( " #{ key } = " , val )
2011-04-12 21:41:47 +08:00
end
2012-05-29 23:07:14 +08:00
if settings [ :grading_standard_enabled ]
self . grading_standard_enabled = true
if settings [ :grading_standard_identifier_ref ]
if gs = self . grading_standards . find_by_migration_id ( settings [ :grading_standard_identifier_ref ] )
self . grading_standard = gs
else
migration . add_warning ( " Couldn't find copied grading standard for the course. " )
end
2012-12-15 03:49:40 +08:00
elsif settings [ :grading_standard_id ] . present?
if gs = GradingStandard . standards_for ( self ) . find_by_id ( settings [ :grading_standard_id ] )
2012-05-29 23:07:14 +08:00
self . grading_standard = gs
else
migration . add_warning ( " Couldn't find account grading standard for the course. " )
end
end
end
2011-04-12 21:41:47 +08:00
end
2011-04-28 00:25:47 +08:00
2011-11-12 04:53:48 +08:00
def add_migration_warning ( message , exception = '' )
return unless @content_migration
@content_migration . add_warning ( message , exception )
2011-04-28 00:25:47 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def backup_to_json
backup . to_json
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def backup
res = [ ]
res += self . folders . active
res += self . attachments . active
res += self . assignment_groups . active
res += self . assignments . active
res += self . submissions
res += self . quizzes
res += self . discussion_topics . active
res += self . discussion_entries . active
res += self . wiki . wiki_pages . active
res += self . calendar_events . active
res
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def may_have_links_to_migrate ( item )
@to_migrate_links || = [ ]
@to_migrate_links << item
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def map_merge ( old_item , new_item )
@merge_mappings || = { }
@merge_mappings [ old_item . asset_string ] = new_item && new_item . id
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def merge_mapped_id ( old_item )
@merge_mappings || = { }
return nil unless old_item
return @merge_mappings [ old_item ] if old_item . is_a? ( String )
@merge_mappings [ old_item . asset_string ]
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def same_dates? ( old , new , columns )
old && new && columns . all? { | column |
old . respond_to? ( column ) && new . respond_to? ( column ) && old . send ( column ) == new . send ( column )
}
end
2012-01-04 04:30:49 +08:00
2012-03-28 22:52:21 +08:00
def copy_attachments_from_course ( course , options = { } )
self . attachment_path_id_lookup = { }
2012-04-24 07:52:12 +08:00
root_folder = Folder . root_folders ( self ) . first
root_folder_name = root_folder . name + '/'
2012-03-28 22:52:21 +08:00
ce = options [ :content_export ]
cm = options [ :content_migration ]
2013-03-19 03:07:47 +08:00
attachments = course . attachments . where ( " file_state <> 'deleted' " ) . all
2012-03-28 22:52:21 +08:00
total = attachments . count + 1
attachments . each_with_index do | file , i |
2013-03-29 03:02:06 +08:00
cm . update_import_progress ( ( i . to_f / total ) * 18 . 0 ) if cm && ( i % 10 == 0 )
2013-01-11 04:10:15 +08:00
2012-03-28 22:52:21 +08:00
if ! ce || ce . export_object? ( file )
2013-01-11 04:10:15 +08:00
begin
new_file = file . clone_for ( self , nil , :overwrite = > true )
self . attachment_path_id_lookup [ file . full_display_path . gsub ( / \ A #{ root_folder_name } / , '' ) ] = new_file . migration_id
new_folder_id = merge_mapped_id ( file . folder )
2012-04-24 07:52:12 +08:00
2013-01-11 04:10:15 +08:00
if file . folder && file . folder . parent_folder_id . nil?
new_folder_id = root_folder . id
2012-03-28 22:52:21 +08:00
end
2013-01-11 04:10:15 +08:00
# make sure the file has somewhere to go
if ! new_folder_id
# gather mapping of needed folders from old course to new course
old_folders = [ ]
old_folders << file . folder
new_folders = [ ]
new_folders << old_folders . last . clone_for ( self , nil , options . merge ( { :include_subcontent = > false } ) )
2013-07-02 03:11:28 +08:00
while old_folders . last . parent_folder && old_folders . last . parent_folder . parent_folder_id
2013-01-11 04:10:15 +08:00
old_folders << old_folders . last . parent_folder
new_folders << old_folders . last . clone_for ( self , nil , options . merge ( { :include_subcontent = > false } ) )
2012-03-28 22:52:21 +08:00
end
2013-01-11 04:10:15 +08:00
old_folders . reverse!
new_folders . reverse!
# try to use folders that already match if possible
final_new_folders = [ ]
parent_folder = Folder . root_folders ( self ) . first
old_folders . each_with_index do | folder , idx |
if f = parent_folder . active_sub_folders . find_by_name ( folder . name )
final_new_folders << f
else
final_new_folders << new_folders [ idx ]
end
parent_folder = final_new_folders . last
end
# add or update the folder structure needed for the file
final_new_folders . first . parent_folder_id || =
merge_mapped_id ( old_folders . first . parent_folder ) ||
Folder . root_folders ( self ) . first . id
old_folders . each_with_index do | folder , idx |
final_new_folders [ idx ] . save!
map_merge ( folder , final_new_folders [ idx ] )
final_new_folders [ idx + 1 ] . parent_folder_id || = final_new_folders [ idx ] . id if final_new_folders [ idx + 1 ]
end
new_folder_id = merge_mapped_id ( file . folder )
2012-03-28 22:52:21 +08:00
end
2013-01-11 04:10:15 +08:00
new_file . folder_id = new_folder_id
new_file . save_without_broadcasting!
map_merge ( file , new_file )
rescue
cm . add_warning ( t ( :file_copy_error , " Couldn't copy file \" %{name} \" " , :name = > file . display_name || file . path_name ) , $! )
2012-03-28 22:52:21 +08:00
end
end
end
end
2011-02-01 09:57:29 +08:00
attr_accessor :merge_mappings
2012-01-04 04:30:49 +08:00
COPY_OPTIONS = [ :all_course_settings , :all_assignments , :all_external_tools , :all_files , :all_topics ,
2011-11-18 01:10:04 +08:00
:all_calendar_events , :all_quizzes , :all_wiki_pages , :all_modules , :all_outcomes ]
2011-09-07 22:02:47 +08:00
def merge_into_course ( course , options , course_import = nil )
2011-02-01 09:57:29 +08:00
@merge_mappings = { }
@merge_results = [ ]
to_shift_dates = [ ]
@to_migrate_links = [ ]
added_items = [ ]
delete_placeholder = nil
2012-01-04 04:30:49 +08:00
2011-11-18 01:10:04 +08:00
if bool_res ( options [ :course_settings ] ) || bool_res ( options [ :all_course_settings ] )
2011-02-19 05:15:07 +08:00
#Copy the course settings too
course . attributes . slice ( * Course . clonable_attributes . map ( & :to_s ) ) . keys . each do | attr |
self . send ( " #{ attr } = " , course . send ( attr ) )
end
2011-07-07 00:12:28 +08:00
may_have_links_to_migrate ( self )
2011-02-19 05:15:07 +08:00
self . save
end
2011-06-22 00:23:08 +08:00
if self . assignment_groups . length == 1 && self . assignment_groups . first . name == t ( '#assignment_group.default_name' , " Assignments " ) && self . assignment_groups . first . assignments . empty?
2011-02-01 09:57:29 +08:00
delete_placeholder = self . assignment_groups . first
self . group_weighting_scheme = course . group_weighting_scheme
elsif self . assignment_groups . length == 0
self . group_weighting_scheme = course . group_weighting_scheme
end
# There are groups to migrate
course . assignment_groups . active . each do | group |
if bool_res ( options [ :everything ] ) || bool_res ( options [ :all_assignments ] ) || bool_res ( options [ group . asset_string . to_sym ] )
new_group = group . clone_for ( self )
added_items << new_group
new_group . save_without_broadcasting!
map_merge ( group , new_group )
end
end
2011-11-12 04:53:48 +08:00
course . context_external_tools . active . each do | old_tool |
course_import . tick ( 82 ) if course_import
if bool_res ( options [ :everything ] ) || bool_res ( options [ :all_external_tools ] ) || bool_res ( options [ old_tool . asset_string . to_sym ] )
new_tool = old_tool . clone_for ( self )
new_tool . save
added_items << new_tool
end
end
2013-03-09 03:21:03 +08:00
course . assignments . no_graded_quizzes_or_topics . active . where ( " assignment_group_id IS NOT NULL " ) . each do | assignment |
2011-02-01 09:57:29 +08:00
course_import . tick ( 15 ) if course_import
if bool_res ( options [ :everything ] ) || bool_res ( options [ :all_assignments ] ) || bool_res ( options [ assignment . asset_string . to_sym ] )
new_assignment = assignment . clone_for ( self , nil , :migrate = > false )
to_shift_dates << new_assignment if new_assignment . clone_updated || same_dates? ( assignment , new_assignment , [ :due_at , :lock_at , :unlock_at , :peer_reviews_due_at ] )
added_items << new_assignment
new_assignment . save_without_broadcasting!
map_merge ( assignment , new_assignment )
end
end
# next, attachments
map_merge ( Folder . root_folders ( course ) . first , Folder . root_folders ( self ) . first )
2013-03-19 03:07:47 +08:00
course . attachments . where ( " file_state <> 'deleted' " ) . each do | file |
2011-02-01 09:57:29 +08:00
course_import . tick ( 30 ) if course_import
if bool_res ( options [ :everything ] ) || bool_res ( options [ :all_files ] ) || bool_res ( options [ file . asset_string . to_sym ] )
new_file = file . clone_for ( self )
added_items << new_file
new_folder_id = merge_mapped_id ( file . folder )
# make sure the file has somewhere to go
if ! new_folder_id
# gather mapping of needed folders from old course to new course
old_folders = [ ]
old_folders << file . folder
new_folders = [ ]
new_folders << old_folders . last . clone_for ( self , nil , options . merge ( { :include_subcontent = > false } ) )
while old_folders . last . parent_folder && old_folders . last . parent_folder . parent_folder_id && ! merge_mapped_id ( old_folders . last . parent_folder )
old_folders << old_folders . last . parent_folder
new_folders << old_folders . last . clone_for ( self , nil , options . merge ( { :include_subcontent = > false } ) )
end
added_items += new_folders
old_folders . reverse!
new_folders . reverse!
# try to use folders that already match if possible
final_new_folders = [ ]
parent_folder = Folder . root_folders ( self ) . first
old_folders . each_with_index do | folder , idx |
if f = parent_folder . active_sub_folders . find_by_name ( folder . name )
final_new_folders << f
else
final_new_folders << new_folders [ idx ]
end
parent_folder = final_new_folders . last
end
# add or update the folder structure needed for the file
final_new_folders . first . parent_folder_id || =
merge_mapped_id ( old_folders . first . parent_folder ) ||
Folder . root_folders ( self ) . first . id
old_folders . each_with_index do | folder , idx |
final_new_folders [ idx ] . save!
map_merge ( folder , final_new_folders [ idx ] )
final_new_folders [ idx + 1 ] . parent_folder_id || = final_new_folders [ idx ] . id if final_new_folders [ idx + 1 ]
end
new_folder_id = merge_mapped_id ( file . folder )
end
new_file . folder_id = new_folder_id
2012-02-25 04:05:58 +08:00
new_file . save!
2011-02-01 09:57:29 +08:00
map_merge ( file , new_file )
end
end
course . discussion_topics . active . each do | topic |
course_import . tick ( 40 ) if course_import
if bool_res ( options [ :everything ] ) || bool_res ( options [ :all_topics ] ) || bool_res ( options [ topic . asset_string . to_sym ] ) || ( topic . assignment_id && bool_res ( options [ " assignment_ #{ topic . assignment_id } " ] ) )
2011-02-08 05:27:56 +08:00
include_entries = options [ " discussion_topic_ #{ topic . id } _entries " ] == " 1 "
new_topic = topic . clone_for ( self , nil , :migrate = > bool_res ( options [ " #{ topic . asset_string } _entries " . to_sym ] ) , :include_entries = > include_entries )
2011-02-01 09:57:29 +08:00
to_shift_dates << new_topic if new_topic . delayed_post_at && ( new_topic . clone_updated || same_dates? ( topic , new_topic , [ :delayed_post_at ] ) )
to_shift_dates << new_topic . assignment if new_topic . assignment && ( new_topic . assignment_clone_updated || same_dates? ( topic . assignment , new_topic . assignment , [ :due_at , :lock_at , :unlock_at , :peer_reviews_due_at ] ) )
added_items << new_topic
added_items << new_topic . assignment if new_topic . assignment
new_topic . save_without_broadcasting!
map_merge ( topic , new_topic )
end
end
course . calendar_events . active . each do | event |
course_import . tick ( 50 ) if course_import
if bool_res ( options [ :everything ] ) || bool_res ( options [ :all_calendar_events ] ) || bool_res ( options [ event . asset_string . to_sym ] )
new_event = event . clone_for ( self , nil , :migrate = > false )
to_shift_dates << new_event if new_event . clone_updated || same_dates? ( event , new_event , [ :start_at , :end_at ] )
added_items << new_event
new_event . save_without_broadcasting!
map_merge ( event , new_event )
end
end
course . quizzes . active . each do | quiz |
course_import . tick ( 60 ) if course_import
2012-01-07 00:59:37 +08:00
if bool_res ( options [ :everything ] ) || bool_res ( options [ :all_quizzes ] ) || bool_res ( options [ quiz . asset_string . to_sym ] ) || ( quiz . assignment_id && bool_res ( options [ " assignment_ #{ quiz . assignment_id } " ] ) )
2011-02-01 09:57:29 +08:00
new_quiz = quiz . clone_for ( self )
to_shift_dates << new_quiz if new_quiz . clone_updated || same_dates? ( quiz , new_quiz , [ :due_at , :lock_at , :unlock_at ] )
added_items << new_quiz
added_items << new_quiz . assignment if new_quiz . assignment
new_quiz . save!
map_merge ( quiz , new_quiz )
end
end
2012-07-24 05:29:18 +08:00
course . wiki . wiki_pages . each do | page |
course_import . tick ( 70 ) if course_import
if bool_res ( options [ :everything ] ) || bool_res ( options [ :all_wiki_pages ] ) || bool_res ( options [ page . asset_string . to_sym ] )
if page . title . blank?
next if page . body . blank?
page . title = t ( '#wiki_page.missing_name' , " Unnamed Page " )
2011-02-01 09:57:29 +08:00
end
2012-07-24 05:29:18 +08:00
new_page = page . clone_for ( self , nil , :migrate = > false , :old_context = > course )
added_items << new_page
new_page . wiki_id = self . wiki . id
new_page . ensure_unique_title
log_merge_result ( " Wiki Page \" #{ page . title } \" renamed to \" #{ new_page . title } \" " ) if new_page . title != page . title
new_page . save_without_broadcasting!
map_merge ( page , new_page )
2011-02-01 09:57:29 +08:00
end
end
course . context_modules . active . each do | mod |
course_import . tick ( 80 ) if course_import
if bool_res ( options [ :everything ] ) || bool_res ( options [ :all_modules ] ) || bool_res ( options [ mod . asset_string . to_sym ] )
new_mod = mod . clone_for ( self )
to_shift_dates << new_mod if new_mod . clone_updated || same_dates? ( mod , new_mod , [ :unlock_at , :start_at , :end_at ] )
new_mod . save!
added_items << new_mod
map_merge ( mod , new_mod )
end
end
2012-01-04 04:30:49 +08:00
learning outcomes refactor
This list is *NOT* complete, some items may have snuck in that I forgot
to note, and/or some of the noted items may not be completely functional
yet.
Specs need to be written around a lot of this, other specs will no doubt
need to be fixed.
Some things, particularly around LearningOutcomeGroups will need data
migrations that aren't there yet.
* remove LearningOutcome.non_rubric_outcomes? and replace with false
where invoked
* remove LearningOutcome.enabled? and replace with true where invoked
* remove never-taken branches
* remove the shared/aligned_outcomes partial and it's supporting
javascript, since it's now empty
* remove js handler for add_outcome_alignment_link and supporting
method since it only occurred in never-taken branches
* mix LearningOutcomeContext into Course and Account
* replace LearningOutcomeGroup.default_for(context) with
LearningOutcomeContext#root_outcome_group
* rename LearningOutcome#content_tags to LearningOutcome#alignments
* rename LearningOutcomeGroup#content_tags to
LearningOutcomeGroup#child_links, and properly restrict
* remove ContentTag[Alignment]#rubric_association_id, add
ContentTag[Alignment]#has_rubric_association? that looks at the
presence of the content's rubric_association_id
* condition off the assignment having a rubric_association rather than
filtering tags by has_rubric_association (which just looks back at
the assignment). all or none of the assignment's alignments are
forced to have the association (via the assignment). this was true in
practice before, is now codified (and more efficient)
* rename AssessmentQuestionBank#learning_outcome_tags to
AssessmentQuestionBank#learning_outcome_alignments
* rename Assignment#learning_outcome_tags to
Assignment#learning_outcome_alignments
* rename Rubric#learning_outcome_tags to
Rubric#learning_outcome_alignments
* move/rename (Course|Account)#learning_outcome_tags to
LearningOutcomeContext#learning_outcome_links
* move/rename Account#learning_outcomes (corrected) and
Course#learning_outcomes to
LearningOutcomeContext#linked_learning_outcomes
* move/rename Account#created_learning_outcomes and
Course#created_learning_outcomes to
LearningOutcomeContext#created_learning_outcomes
* clarify and correct usage of linked_learning_outcomes vs.
created_learning_outcomes
* move/rename (Account|Account)#learning_outcome_groups to
LearningOutcomeContext#learning_outcome_groups
* remove unused Account#associated_learning_outcomes
* just remove one link to a learning outcome when deleting
* merge Account#has_outcomes?, Course#has_outcomes? and
Course#has_outcomes into LearningOutcomeContext#has_outcomes?, add a
use in Context#active_record_types
* kill LearningOutcomeGroup#root_learning_outcome_group (unused)
* rename LearningOutcomeResult#content_tag to
LearningOutcomeResult#alignment
* kill unused (and broken) OutcomesController#add_outcome_group
* kill unused OutcomesController#update_outcomes_for_asset
* kill unused OutcomesController#outcomes_for_asset
* remove unused (outside specs, correct specs)
AssessmentQuestionBank#outcomes=
* remove unused ContentTag#learning_outcome_content
* replace ContentTag.learning_outcome_tags_for(asset) (only ever called
with asset=an assignment) with call to
Assignment#learning_outcome_alignments
* remove unused ContentTag.not_rubric
* remove (now) unused ContentTag.include_outcome
* remove unused LearningOutcome#learning_outcome_group_associations
* avoid explicit use of ContentTag in outcome-related specs
* replace LearningOutcomeGroup#learning_outcome_tags with
LearningOutcomeGroup#child_outcome_links (and only use for outcome
links; not tags for child groups)
* split ContentTag#create_outcome_result into
Submission#create_outcome_result,
QuizSubmission#create_outcome_result, and
RubricAssessment#create_outcome_result. fix some bugs along the way
* refactor ContentTag.outcome_tags_for_banks and some code from
QuizSubmission#(track_outcomes|update_outcomes_for_assessment_questions)
into QuizSubmission#questions_and_alignments
* refactor RubricAssociation#update_outcome_relations and
Rubric#update_alignments into LearningOutcome.update_alignments
* don't use ContentTag#rubric_association with outcome alignments; use
the tag's content's rubric_association in its place (they should have
been equal anyways)
* refactor LearningOutcome.available_in_context and
@context.root_outcome_group.sorted_all_outcomes (only time
sorted_all_outcomes is used) into
LearningOutcomeContext#available_outcomes and
LearningOutcomeContext#available_outcome
* overhaul LearningOutcomeGroup#sorted_content and rename to
LearningOutcomeGroup#sorted_children. it not returns ContentTags
(outcome links) and LearningOutcomeGroups, vs. LearningOutcomes and
LearningOutcomeGroups; fix usages appropriately
* fix UI for arranging/deleting outcome links and groups within a group
to refer to the outcome link rather than the outcome
Change-Id: I85d99f2634f7206332cb1f5d5ea575b428988d4b
Reviewed-on: https://gerrit.instructure.com/12590
Reviewed-by: Jacob Fugal <jacob@instructure.com>
Tested-by: Jacob Fugal <jacob@instructure.com>
2012-07-13 01:16:13 +08:00
course . root_outcome_group . child_outcome_groups . each do | group |
2011-05-25 22:36:00 +08:00
course_import . tick ( 85 ) if course_import
use_outcome = lambda { | lo | bool_res ( options [ :everything ] ) || bool_res ( options [ :all_outcomes ] ) || bool_res ( options [ lo . asset_string . to_sym ] ) }
learning outcomes refactor
This list is *NOT* complete, some items may have snuck in that I forgot
to note, and/or some of the noted items may not be completely functional
yet.
Specs need to be written around a lot of this, other specs will no doubt
need to be fixed.
Some things, particularly around LearningOutcomeGroups will need data
migrations that aren't there yet.
* remove LearningOutcome.non_rubric_outcomes? and replace with false
where invoked
* remove LearningOutcome.enabled? and replace with true where invoked
* remove never-taken branches
* remove the shared/aligned_outcomes partial and it's supporting
javascript, since it's now empty
* remove js handler for add_outcome_alignment_link and supporting
method since it only occurred in never-taken branches
* mix LearningOutcomeContext into Course and Account
* replace LearningOutcomeGroup.default_for(context) with
LearningOutcomeContext#root_outcome_group
* rename LearningOutcome#content_tags to LearningOutcome#alignments
* rename LearningOutcomeGroup#content_tags to
LearningOutcomeGroup#child_links, and properly restrict
* remove ContentTag[Alignment]#rubric_association_id, add
ContentTag[Alignment]#has_rubric_association? that looks at the
presence of the content's rubric_association_id
* condition off the assignment having a rubric_association rather than
filtering tags by has_rubric_association (which just looks back at
the assignment). all or none of the assignment's alignments are
forced to have the association (via the assignment). this was true in
practice before, is now codified (and more efficient)
* rename AssessmentQuestionBank#learning_outcome_tags to
AssessmentQuestionBank#learning_outcome_alignments
* rename Assignment#learning_outcome_tags to
Assignment#learning_outcome_alignments
* rename Rubric#learning_outcome_tags to
Rubric#learning_outcome_alignments
* move/rename (Course|Account)#learning_outcome_tags to
LearningOutcomeContext#learning_outcome_links
* move/rename Account#learning_outcomes (corrected) and
Course#learning_outcomes to
LearningOutcomeContext#linked_learning_outcomes
* move/rename Account#created_learning_outcomes and
Course#created_learning_outcomes to
LearningOutcomeContext#created_learning_outcomes
* clarify and correct usage of linked_learning_outcomes vs.
created_learning_outcomes
* move/rename (Account|Account)#learning_outcome_groups to
LearningOutcomeContext#learning_outcome_groups
* remove unused Account#associated_learning_outcomes
* just remove one link to a learning outcome when deleting
* merge Account#has_outcomes?, Course#has_outcomes? and
Course#has_outcomes into LearningOutcomeContext#has_outcomes?, add a
use in Context#active_record_types
* kill LearningOutcomeGroup#root_learning_outcome_group (unused)
* rename LearningOutcomeResult#content_tag to
LearningOutcomeResult#alignment
* kill unused (and broken) OutcomesController#add_outcome_group
* kill unused OutcomesController#update_outcomes_for_asset
* kill unused OutcomesController#outcomes_for_asset
* remove unused (outside specs, correct specs)
AssessmentQuestionBank#outcomes=
* remove unused ContentTag#learning_outcome_content
* replace ContentTag.learning_outcome_tags_for(asset) (only ever called
with asset=an assignment) with call to
Assignment#learning_outcome_alignments
* remove unused ContentTag.not_rubric
* remove (now) unused ContentTag.include_outcome
* remove unused LearningOutcome#learning_outcome_group_associations
* avoid explicit use of ContentTag in outcome-related specs
* replace LearningOutcomeGroup#learning_outcome_tags with
LearningOutcomeGroup#child_outcome_links (and only use for outcome
links; not tags for child groups)
* split ContentTag#create_outcome_result into
Submission#create_outcome_result,
QuizSubmission#create_outcome_result, and
RubricAssessment#create_outcome_result. fix some bugs along the way
* refactor ContentTag.outcome_tags_for_banks and some code from
QuizSubmission#(track_outcomes|update_outcomes_for_assessment_questions)
into QuizSubmission#questions_and_alignments
* refactor RubricAssociation#update_outcome_relations and
Rubric#update_alignments into LearningOutcome.update_alignments
* don't use ContentTag#rubric_association with outcome alignments; use
the tag's content's rubric_association in its place (they should have
been equal anyways)
* refactor LearningOutcome.available_in_context and
@context.root_outcome_group.sorted_all_outcomes (only time
sorted_all_outcomes is used) into
LearningOutcomeContext#available_outcomes and
LearningOutcomeContext#available_outcome
* overhaul LearningOutcomeGroup#sorted_content and rename to
LearningOutcomeGroup#sorted_children. it not returns ContentTags
(outcome links) and LearningOutcomeGroups, vs. LearningOutcomes and
LearningOutcomeGroups; fix usages appropriately
* fix UI for arranging/deleting outcome links and groups within a group
to refer to the outcome link rather than the outcome
Change-Id: I85d99f2634f7206332cb1f5d5ea575b428988d4b
Reviewed-on: https://gerrit.instructure.com/12590
Reviewed-by: Jacob Fugal <jacob@instructure.com>
Tested-by: Jacob Fugal <jacob@instructure.com>
2012-07-13 01:16:13 +08:00
f = group . clone_for ( self , root_outcome_group , use_outcome )
added_items << f if f
end
course . root_outcome_group . child_outcome_links . each do | link |
course_import . tick ( 85 ) if course_import
if bool_res ( options [ :everything ] ) || bool_res ( options [ :all_outcomes ] ) || bool_res ( options [ link . content . asset_string . to_sym ] )
lo = link . content . clone_for ( self , root_outcome_group )
2011-05-25 22:36:00 +08:00
added_items << lo
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
# Groups could be created by objects with attached assignments as well. (like quizzes/topics)
# So don't delete the placeholder until everything has been cloned
delete_placeholder . destroy if delete_placeholder && self . assignment_groups . length > 1
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
@to_migrate_links . uniq . each do | obj |
2011-05-25 22:36:00 +08:00
course_import . tick ( 90 ) if course_import
2011-02-01 09:57:29 +08:00
if obj . is_a? ( Assignment )
obj . description = migrate_content_links ( obj . description , course )
elsif obj . is_a? ( CalendarEvent )
obj . description = migrate_content_links ( obj . description , course )
elsif obj . is_a? ( DiscussionTopic )
obj . message = migrate_content_links ( obj . message , course )
obj . discussion_entries . each do | entry |
entry . message = migrate_content_links ( obj . message , course )
entry . save_without_broadcasting!
end
elsif obj . is_a? ( WikiPage )
obj . body = migrate_content_links ( obj . body , course )
elsif obj . is_a? ( Quiz )
obj . description = migrate_content_links ( obj . description , course )
2011-07-07 00:12:28 +08:00
elsif obj . is_a? ( Course )
obj . syllabus_body = migrate_content_links ( obj . syllabus_body , course )
2011-02-01 09:57:29 +08:00
end
obj . save_without_broadcasting! rescue obj . save!
end
if ! to_shift_dates . empty? && bool_res ( options [ :shift_dates ] )
log_merge_result ( " Moving events to new dates " )
shift_options = ( bool_res ( options [ :shift_dates ] ) rescue false ) ? options : { }
2011-05-02 23:25:29 +08:00
shift_options = shift_date_options ( course , shift_options )
2011-02-01 09:57:29 +08:00
to_shift_dates . uniq . each do | event |
course_import . tick ( 100 ) if course_import
if event . is_a? ( Assignment )
2011-05-02 23:25:29 +08:00
event . due_at = shift_date ( event . due_at , shift_options )
event . lock_at = shift_date ( event . lock_at , shift_options )
event . unlock_at = shift_date ( event . unlock_at , shift_options )
event . peer_reviews_due_at = shift_date ( event . peer_reviews_due_at , shift_options )
2011-02-01 09:57:29 +08:00
elsif event . is_a? ( DiscussionTopic )
2011-05-02 23:25:29 +08:00
event . delayed_post_at = shift_date ( event . delayed_post_at , shift_options )
2011-02-01 09:57:29 +08:00
log_merge_result ( " The Topic \" #{ event . title } \" won't be posted until #{ event . delayed_post_at . to_s } " )
elsif event . is_a? ( CalendarEvent )
2011-05-02 23:25:29 +08:00
event . start_at = shift_date ( event . start_at , shift_options )
event . end_at = shift_date ( event . end_at , shift_options )
2011-02-01 09:57:29 +08:00
elsif event . is_a? ( Quiz )
2011-05-02 23:25:29 +08:00
event . due_at = shift_date ( event . due_at , shift_options )
event . lock_at = shift_date ( event . lock_at , shift_options )
event . unlock_at = shift_date ( event . unlock_at , shift_options )
2011-02-01 09:57:29 +08:00
elsif event . is_a? ( ContextModule )
2011-05-02 23:25:29 +08:00
event . unlock_at = shift_date ( event . unlock_at , shift_options )
event . start_at = shift_date ( event . start_at , shift_options )
event . end_at = shift_date ( event . end_at , shift_options )
2011-02-01 09:57:29 +08:00
end
event . respond_to? ( :save_without_broadcasting! ) ? event . save_without_broadcasting! : event . save!
end
2011-05-03 04:29:32 +08:00
self . start_at || = shift_options [ :new_start_date ]
self . conclude_at || = shift_options [ :new_end_date ]
2011-02-01 09:57:29 +08:00
end
2011-05-03 04:29:32 +08:00
self . save
2011-02-01 09:57:29 +08:00
if course_import
course_import . added_item_codes = added_items . map { | i | i . asset_string }
course_import . log = merge_results
course_import . save!
end
added_items . map { | i | i . asset_string }
end
def self . clonable_attributes
2011-05-03 04:29:32 +08:00
[ :group_weighting_scheme , :grading_standard_id , :is_public ,
2013-05-21 03:39:36 +08:00
:allow_student_wiki_edits , :show_public_context_messages ,
2011-09-14 01:21:09 +08:00
:syllabus_body , :allow_student_forum_attachments ,
2011-05-03 04:29:32 +08:00
:default_wiki_editing_roles , :allow_student_organized_groups ,
:default_view , :show_all_discussion_entries , :open_enrollment ,
:storage_quota , :tab_configuration , :allow_wiki_comments ,
2013-02-08 03:56:05 +08:00
:turnitin_comments , :self_enrollment , :license , :indexed , :locale ,
:hide_final_grade , :hide_distribution_graphs ,
2013-02-05 05:53:31 +08:00
:allow_student_discussion_topics , :lock_all_announcements ]
2011-02-01 09:57:29 +08:00
end
2011-05-03 04:29:32 +08:00
2013-02-08 03:56:05 +08:00
# TODO: remove me? looks like only a single spec exercises this code (incidentally, no less)
2011-02-01 09:57:29 +08:00
def clone_for ( account , opts = { } )
new_course = Course . new
2011-12-28 05:57:56 +08:00
root_account = account . root_account
2011-02-01 09:57:29 +08:00
self . attributes . delete_if { | k , v | [ :id , :section , :account_id , :workflow_state , :created_at , :updated_at , :root_account_id , :enrollment_term_id , :sis_source_id , :sis_batch_id ] . include? ( k . to_sym ) } . each do | key , val |
2013-02-08 03:56:05 +08:00
new_course . write_attribute ( key , val )
2011-02-01 09:57:29 +08:00
end
new_course . workflow_state = 'created'
new_course . name = opts [ :name ] if opts [ :name ]
new_course . account_id = account . id
new_course . root_account_id = root_account . id
new_course . enrollment_term_id = opts [ :enrollment_term_id ]
2011-06-08 00:31:14 +08:00
new_course . abstract_course_id = self . abstract_course_id
2011-02-01 09:57:29 +08:00
new_course . save!
if opts [ :copy_content ]
new_course . send_later ( :merge_into_course , self , :everything = > true )
end
new_course
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def assert_assignment_group
has_group = Rails . cache . fetch ( [ 'has_assignment_group' , self . id ] . cache_key ) do
self . assignment_groups . active . count > 0
end
if ! has_group
2011-06-22 00:23:08 +08:00
group = self . assignment_groups . new :name = > t ( '#assignment_group.default_name' , " Assignments " ) , :position = > 1
2011-02-01 09:57:29 +08:00
group . save
end
end
2012-01-04 04:30:49 +08:00
2011-05-02 23:25:29 +08:00
def shift_date_options ( course , options = { } )
result = { }
result [ :old_start_date ] = Date . parse ( options [ :old_start_date ] ) rescue course . real_start_date
result [ :old_end_date ] = Date . parse ( options [ :old_end_date ] ) rescue course . real_end_date
result [ :new_start_date ] = Date . parse ( options [ :new_start_date ] ) rescue self . real_start_date
result [ :new_end_date ] = Date . parse ( options [ :new_end_date ] ) rescue self . real_end_date
2011-09-13 01:09:53 +08:00
result [ :day_substitutions ] = options [ :day_substitutions ]
2013-02-21 06:23:15 +08:00
result [ :time_zone ] = options [ :time_zone ]
result [ :time_zone ] || = course . account . default_time_zone unless course . account . nil?
2011-05-02 23:25:29 +08:00
result
end
def shift_date ( time , options = { } )
2011-02-01 09:57:29 +08:00
return nil unless time
2013-02-21 06:23:15 +08:00
time_zone = options [ :time_zone ] || Time . zone
Time . use_zone time_zone do
time = ActiveSupport :: TimeWithZone . new ( time . utc , Time . zone )
old_date = time . to_date
new_date = old_date . clone
old_start_date = options [ :old_start_date ]
old_end_date = options [ :old_end_date ]
new_start_date = options [ :new_start_date ]
new_end_date = options [ :new_end_date ]
return time unless old_start_date && old_end_date && new_start_date && new_end_date
old_full_diff = old_end_date - old_start_date
old_event_diff = old_date - old_start_date
old_event_percent = old_full_diff > 0 ? old_event_diff . to_f / old_full_diff . to_f : 0
new_full_diff = new_end_date - new_start_date
new_event_diff = ( new_full_diff . to_f * old_event_percent ) . to_i
new_date = new_start_date + new_event_diff
options [ :day_substitutions ] || = { }
options [ :day_substitutions ] [ old_date . wday . to_s ] || = old_date . wday . to_s
if options [ :day_substitutions ] && options [ :day_substitutions ] [ old_date . wday . to_s ]
if new_date . wday != options [ :day_substitutions ] [ old_date . wday . to_s ] . to_i
new_date += ( options [ :day_substitutions ] [ old_date . wday . to_s ] . to_i - new_date . wday ) % 7
new_date -= 7 unless new_date - 7 < new_start_date
end
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2013-02-21 06:23:15 +08:00
new_time = Time . utc ( new_date . year , new_date . month , new_date . day , ( time . hour rescue 0 ) , ( time . min rescue 0 ) ) . in_time_zone
new_time -= new_time . utc_offset
log_merge_result ( " Events for #{ old_date . to_s } moved to #{ new_date . to_s } " )
new_time
end
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def real_start_date
return self . start_at . to_date if self . start_at
all_dates . min
end
def all_dates
( self . calendar_events . active + self . assignments . active ) . inject ( [ ] ) { | list , e |
list << e . end_at if e . end_at
list << e . start_at if e . start_at
list
} . compact . flatten . map { | d | d . to_date } . uniq rescue [ ]
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def real_end_date
return self . conclude_at . to_date if self . conclude_at
all_dates . max
end
def is_a_context?
true
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def self . serialization_excludes ; [ :uuid ] ; end
2012-01-04 04:30:49 +08:00
2011-08-19 06:03:33 +08:00
def section_visibilities_for ( user )
2013-01-30 05:49:16 +08:00
shard . activate do
Rails . cache . fetch ( [ 'section_visibilities_for' , user , self ] . cache_key ) do
2013-03-19 03:07:47 +08:00
enrollments = Enrollment . select ( [ :course_section_id , :limit_privileges_to_course_section , :type , :associated_user_id ] ) .
where ( " user_id=? AND course_id=? AND workflow_state<>'deleted' " , user , self )
2013-01-30 05:49:16 +08:00
enrollments . map do | e |
{
:course_section_id = > e . course_section_id ,
:limit_privileges_to_course_section = > e . limit_privileges_to_course_section ,
:type = > e . type ,
:associated_user_id = > e . associated_user_id ,
:admin = > e . admin?
}
end
end
2011-02-01 09:57:29 +08:00
end
2011-08-19 06:03:33 +08:00
end
2011-09-30 05:36:13 +08:00
memoize :section_visibilities_for
2011-08-19 06:03:33 +08:00
def visibility_limited_to_course_sections? ( user , visibilities = section_visibilities_for ( user ) )
2013-05-03 23:38:33 +08:00
visibilities . all? { | s | s [ :limit_privileges_to_course_section ] }
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-06-30 04:05:59 +08:00
# returns a scope, not an array of users/enrollments
2011-02-01 09:57:29 +08:00
def students_visible_to ( user , include_priors = false )
2012-06-20 01:42:43 +08:00
enrollments_visible_to ( user , :include_priors = > include_priors , :return_users = > true )
2011-06-30 04:05:59 +08:00
end
2012-12-12 21:50:15 +08:00
2012-06-20 01:42:43 +08:00
def enrollments_visible_to ( user , opts = { } )
2011-08-19 06:03:33 +08:00
visibilities = section_visibilities_for ( user )
2012-06-20 01:42:43 +08:00
relation = [ ]
relation << 'all' if opts [ :include_priors ]
if opts [ :type ] == :all
relation << 'user' if opts [ :return_users ]
2011-06-30 04:05:59 +08:00
else
2012-06-20 01:42:43 +08:00
relation << ( opts [ :type ] . try ( :to_s ) || 'student' )
2011-06-30 04:05:59 +08:00
end
2012-06-20 01:42:43 +08:00
if opts [ :return_users ]
relation . last << 's'
else
relation << 'enrollments'
end
relation = relation . join ( '_' )
# our relations don't all follow the same pattern
relation = case relation
when 'all_enrollments' ; 'enrollments'
when 'enrollments' ; 'current_enrollments'
else ; relation
end
scope = self . send ( relation . to_sym )
if opts [ :section_ids ]
2013-03-19 03:07:47 +08:00
scope = scope . where ( 'enrollments.course_section_id' = > opts [ :section_ids ] . to_a )
2011-11-09 04:44:16 +08:00
end
2013-06-29 01:18:55 +08:00
visibility_level = enrollment_visibility_level_for ( user , visibilities )
account_admin = visibility_level == :full && visibilities . empty?
# teachers, account admins, and student view students can see student view students
if ! visibilities . any? { | v | v [ :admin ] || v [ :type ] == 'StudentViewEnrollment' } && ! account_admin
2013-03-19 03:07:47 +08:00
scope = scope . where ( " enrollments.type<>'StudentViewEnrollment' " )
2012-03-14 04:08:19 +08:00
end
MessageableUser refactor with sharding
Separates, streamlines, and makes shard-aware all use cases of
User#messageable_users *other* than searching (call site in
SearchController#matching_participants).
Produces three new methods that take the bulk of that responsibility:
* User#load_messageable_users -- given a set of users, filter out the
ones that aren't messageable, and load any common contexts for those
that are.
* User#load_messageable_user -- as User#load_messageable_users, but for
just one user.
* User#messageable_users_in_context -- given a context (a course,
section, or group), return the list of messageable users in that
context.
refs CNVS-2519
remaining on CNVS-2519 is to tackle the search application of
User#messageable_user. mostly there, but reconciling pagination
with ranking by number of shared contexts is proving problematic, so I'm
going to separate that into another commit.
meanwhile, I've renamed User#messageable_users to
User#deprecated_search_messageable_users to discourage any accidental
new uses and left it otherwise untouched. searching for users on the
same shard should be unaffected. You can still locate messageable users
on other shards to insert into conversations by browsing the shared
contexts.
test-plan:
* create user A in shard X
* create user B in shard Y
* for situations where A could message B if on the same shard:
- setup the situation where the common tie is on shard X (e.g. course
on shard X and both A and B in it). run exercises below
- setup the situation where the common tie is on shard Y. run
exercises.
- if appropriate, setup the situation where the common tie is on
shard Z. run exercises.
* for each setup described above, login as A:
- A should see the "message this user" button on B's profile
- if the common tie is a course, section, or group, A should see B
under that context when the context is selected in the recipient
browser
- if a conversation exists involving both A and B, when A loads the
conversation they should see B tagged with the common contexts
* regression test searching for messageable users from the same shard
Change-Id: Ibba5551f8afc2435fd14a2e827a400bf95eae76a
Reviewed-on: https://gerrit.instructure.com/17569
Tested-by: Jenkins <jenkins@instructure.com>
QA-Review: Clare Hetherington <clare@instructure.com>
Reviewed-by: Jon Jensen <jon@instructure.com>
2013-02-05 06:18:20 +08:00
# See also MessageableUser::Calculator (same logic used to get users across multiple courses) (should refactor)
2013-06-29 01:18:55 +08:00
case visibility_level
2013-05-23 05:13:25 +08:00
when :full , :limited then scope
2013-03-19 03:07:47 +08:00
when :sections then scope . where ( " enrollments.course_section_id IN (?) OR (enrollments.limit_privileges_to_course_section=? AND enrollments.type IN ('TeacherEnrollment', 'TaEnrollment', 'DesignerEnrollment')) " , visibilities . map { | s | s [ :course_section_id ] } , false )
when :restricted then scope . where ( :enrollments = > { :user_id = > visibilities . map { | s | s [ :associated_user_id ] } . compact + [ user ] } )
else scope . where ( " ? " , false )
2012-04-16 23:27:28 +08:00
end
end
def users_visible_to ( user , include_priors = false )
visibilities = section_visibilities_for ( user )
scope = include_priors ? users : current_users
MessageableUser refactor with sharding
Separates, streamlines, and makes shard-aware all use cases of
User#messageable_users *other* than searching (call site in
SearchController#matching_participants).
Produces three new methods that take the bulk of that responsibility:
* User#load_messageable_users -- given a set of users, filter out the
ones that aren't messageable, and load any common contexts for those
that are.
* User#load_messageable_user -- as User#load_messageable_users, but for
just one user.
* User#messageable_users_in_context -- given a context (a course,
section, or group), return the list of messageable users in that
context.
refs CNVS-2519
remaining on CNVS-2519 is to tackle the search application of
User#messageable_user. mostly there, but reconciling pagination
with ranking by number of shared contexts is proving problematic, so I'm
going to separate that into another commit.
meanwhile, I've renamed User#messageable_users to
User#deprecated_search_messageable_users to discourage any accidental
new uses and left it otherwise untouched. searching for users on the
same shard should be unaffected. You can still locate messageable users
on other shards to insert into conversations by browsing the shared
contexts.
test-plan:
* create user A in shard X
* create user B in shard Y
* for situations where A could message B if on the same shard:
- setup the situation where the common tie is on shard X (e.g. course
on shard X and both A and B in it). run exercises below
- setup the situation where the common tie is on shard Y. run
exercises.
- if appropriate, setup the situation where the common tie is on
shard Z. run exercises.
* for each setup described above, login as A:
- A should see the "message this user" button on B's profile
- if the common tie is a course, section, or group, A should see B
under that context when the context is selected in the recipient
browser
- if a conversation exists involving both A and B, when A loads the
conversation they should see B tagged with the common contexts
* regression test searching for messageable users from the same shard
Change-Id: Ibba5551f8afc2435fd14a2e827a400bf95eae76a
Reviewed-on: https://gerrit.instructure.com/17569
Tested-by: Jenkins <jenkins@instructure.com>
QA-Review: Clare Hetherington <clare@instructure.com>
Reviewed-by: Jon Jensen <jon@instructure.com>
2013-02-05 06:18:20 +08:00
# See also MessageableUsers (same logic used to get users across multiple courses) (should refactor)
2012-04-16 23:27:28 +08:00
case enrollment_visibility_level_for ( user , visibilities )
when :full then scope
2013-03-19 03:07:47 +08:00
when :sections then scope . where ( :enrollments = > { :course_section_id = > visibilities . map { | s | s [ :course_section_id ] } } )
when :restricted then scope . where ( :enrollments = > { :user_id = > ( visibilities . map { | s | s [ :associated_user_id ] } . compact + [ user ] ) } )
2013-05-23 05:13:25 +08:00
when :limited then scope . where ( " enrollments.type IN ('StudentEnrollment', 'TeacherEnrollment', 'TaEnrollment', 'StudentViewEnrollment') " )
2013-03-19 03:07:47 +08:00
else scope . where ( " ? " , false )
2011-08-19 06:03:33 +08:00
end
end
2011-09-30 05:36:13 +08:00
def sections_visible_to ( user , sections = active_course_sections )
visibilities = section_visibilities_for ( user )
2011-10-13 06:49:30 +08:00
section_ids = visibilities . map { | s | s [ :course_section_id ] }
2011-09-30 05:36:13 +08:00
case enrollment_visibility_level_for ( user , visibilities )
2013-05-23 05:13:25 +08:00
when :full , :limited
2012-10-18 02:46:22 +08:00
if visibilities . all? { | v | [ 'StudentEnrollment' , 'StudentViewEnrollment' , 'ObserverEnrollment' ] . include? v [ :type ] }
2013-03-19 03:07:47 +08:00
sections . where ( :id = > section_ids )
2012-10-18 02:46:22 +08:00
else
sections
end
when :sections
2013-03-19 03:07:47 +08:00
sections . where ( :id = > section_ids )
2012-10-18 02:46:22 +08:00
else
# return an empty set, but keep it as a scope for downstream consistency
2013-03-19 03:07:47 +08:00
sections . where ( " ? " , false )
2012-10-18 02:46:22 +08:00
end
end
# derived from policy for Group#grants_right?(user, nil, :read)
def groups_visible_to ( user , groups = active_groups )
if grants_rights? ( user , nil , :manage_groups , :view_group_pages ) . values . any?
# course-wide permissions; all groups are visible
groups
else
# no course-wide permissions; only groups the user is a member of are
# visible
2013-03-19 03:07:47 +08:00
groups . joins ( :participating_group_memberships ) .
where ( 'group_memberships.user_id' = > user )
2011-09-30 05:36:13 +08:00
end
end
2013-01-08 01:34:01 +08:00
def enrollment_visibility_level_for ( user , visibilities = section_visibilities_for ( user ) , require_message_permission = false )
permissions = require_message_permission ?
[ :send_messages ] :
[ :manage_grades , :manage_students , :manage_admin_users , :read_roster , :view_all_grades ]
2013-05-23 05:13:25 +08:00
granted_permissions = self . grants_rights? ( user , nil , * permissions ) . select { | key , value | value } . keys
if granted_permissions . empty?
2013-01-08 01:34:01 +08:00
:restricted # e.g. observer, can only see admins in the course
elsif visibilities . present? && visibility_limited_to_course_sections? ( user , visibilities )
2011-08-19 06:03:33 +08:00
:sections
2013-05-23 05:13:25 +08:00
elsif granted_permissions . eql? [ :read_roster ]
:limited
2011-02-01 09:57:29 +08:00
else
2011-08-19 06:03:33 +08:00
:full
2011-02-01 09:57:29 +08:00
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def unpublished?
self . created? || self . claimed?
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def tab_configuration
super . map { | h | h . with_indifferent_access } rescue [ ]
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
TAB_HOME = 0
TAB_SYLLABUS = 1
TAB_PAGES = 2
TAB_ASSIGNMENTS = 3
TAB_QUIZZES = 4
TAB_GRADES = 5
TAB_PEOPLE = 6
TAB_GROUPS = 7
TAB_DISCUSSIONS = 8
TAB_CHAT = 9
TAB_MODULES = 10
TAB_FILES = 11
TAB_CONFERENCES = 12
TAB_SETTINGS = 13
TAB_ANNOUNCEMENTS = 14
TAB_OUTCOMES = 15
TAB_COLLABORATIONS = 16
2011-06-22 00:23:08 +08:00
2011-02-01 09:57:29 +08:00
def self . default_tabs
[
2011-08-06 05:14:21 +08:00
{ :id = > TAB_HOME , :label = > t ( '#tabs.home' , " Home " ) , :css_class = > 'home' , :href = > :course_path } ,
{ :id = > TAB_ANNOUNCEMENTS , :label = > t ( '#tabs.announcements' , " Announcements " ) , :css_class = > 'announcements' , :href = > :course_announcements_path } ,
{ :id = > TAB_ASSIGNMENTS , :label = > t ( '#tabs.assignments' , " Assignments " ) , :css_class = > 'assignments' , :href = > :course_assignments_path } ,
{ :id = > TAB_DISCUSSIONS , :label = > t ( '#tabs.discussions' , " Discussions " ) , :css_class = > 'discussions' , :href = > :course_discussion_topics_path } ,
{ :id = > TAB_GRADES , :label = > t ( '#tabs.grades' , " Grades " ) , :css_class = > 'grades' , :href = > :course_grades_path } ,
{ :id = > TAB_PEOPLE , :label = > t ( '#tabs.people' , " People " ) , :css_class = > 'people' , :href = > :course_users_path } ,
{ :id = > TAB_CHAT , :label = > t ( '#tabs.chat' , " Chat " ) , :css_class = > 'chat' , :href = > :course_chat_path } ,
{ :id = > TAB_PAGES , :label = > t ( '#tabs.pages' , " Pages " ) , :css_class = > 'pages' , :href = > :course_wiki_pages_path } ,
{ :id = > TAB_FILES , :label = > t ( '#tabs.files' , " Files " ) , :css_class = > 'files' , :href = > :course_files_path } ,
{ :id = > TAB_SYLLABUS , :label = > t ( '#tabs.syllabus' , " Syllabus " ) , :css_class = > 'syllabus' , :href = > :syllabus_course_assignments_path } ,
{ :id = > TAB_OUTCOMES , :label = > t ( '#tabs.outcomes' , " Outcomes " ) , :css_class = > 'outcomes' , :href = > :course_outcomes_path } ,
{ :id = > TAB_QUIZZES , :label = > t ( '#tabs.quizzes' , " Quizzes " ) , :css_class = > 'quizzes' , :href = > :course_quizzes_path } ,
{ :id = > TAB_MODULES , :label = > t ( '#tabs.modules' , " Modules " ) , :css_class = > 'modules' , :href = > :course_context_modules_path } ,
{ :id = > TAB_CONFERENCES , :label = > t ( '#tabs.conferences' , " Conferences " ) , :css_class = > 'conferences' , :href = > :course_conferences_path } ,
{ :id = > TAB_COLLABORATIONS , :label = > t ( '#tabs.collaborations' , " Collaborations " ) , :css_class = > 'collaborations' , :href = > :course_collaborations_path } ,
2011-08-31 04:32:58 +08:00
{ :id = > TAB_SETTINGS , :label = > t ( '#tabs.settings' , " Settings " ) , :css_class = > 'settings' , :href = > :course_settings_path } ,
2011-02-01 09:57:29 +08:00
]
end
2012-01-04 04:30:49 +08:00
2012-12-20 07:01:13 +08:00
def tab_hidden? ( id )
tab = self . tab_configuration . find { | t | t [ :id ] == id }
return tab && tab [ :hidden ]
end
basic lti navigation links
By properly configuring external tools (see
/spec/models/course_spec/rb:898 for examples) they can
be added as left-side navigation links to a course,
an account, or to the user profile section of Canvas.
testing notes:
- you have to manually set options on the external tool:
- for user navigation the tool needs to be created on the root account
with the following settings:
{:user_navigation => {:url => <url>, :text => <tab label>} }
(there are also some optional language options you can set using
the :labels attribute)
- for account navigation it's the same
- for course navigation it's the same, except with :course_navigation
there's also some additional options:
:visibility => <value> // public, members, admins
:default => <value> // disabled, enabled
test plan:
- configure a user navigation tool at the root account level,
make sure it shows up in the user's profile section
- configure a course navigation tool at the account level,
make sure it shows up in the course's navigation
- configure a course navigation tool at the course level,
make sure it shows up in the course's navigation
- make sure :default => 'disabled' course navigation tools don't
appear by default in the navigation, but can be enabled on
the course settings page
- make sure :visibility => 'members' only shows up for course members
- make sure :visibility => 'admins' only shows up for course admins
- configure an account navigation tool at the account level,
make sure it shows up in the account's navigation, and
any sub-account's navigation
Change-Id: I977da3c6b89a9e32b4cff4c2b6b221f8162782ff
Reviewed-on: https://gerrit.instructure.com/5427
Reviewed-by: Brian Whitmer <brian@instructure.com>
Tested-by: Hudson <hudson@instructure.com>
2011-08-18 13:49:01 +08:00
def external_tool_tabs ( opts )
2012-01-18 13:32:57 +08:00
tools = self . context_external_tools . active . having_setting ( 'course_navigation' )
basic lti navigation links
By properly configuring external tools (see
/spec/models/course_spec/rb:898 for examples) they can
be added as left-side navigation links to a course,
an account, or to the user profile section of Canvas.
testing notes:
- you have to manually set options on the external tool:
- for user navigation the tool needs to be created on the root account
with the following settings:
{:user_navigation => {:url => <url>, :text => <tab label>} }
(there are also some optional language options you can set using
the :labels attribute)
- for account navigation it's the same
- for course navigation it's the same, except with :course_navigation
there's also some additional options:
:visibility => <value> // public, members, admins
:default => <value> // disabled, enabled
test plan:
- configure a user navigation tool at the root account level,
make sure it shows up in the user's profile section
- configure a course navigation tool at the account level,
make sure it shows up in the course's navigation
- configure a course navigation tool at the course level,
make sure it shows up in the course's navigation
- make sure :default => 'disabled' course navigation tools don't
appear by default in the navigation, but can be enabled on
the course settings page
- make sure :visibility => 'members' only shows up for course members
- make sure :visibility => 'admins' only shows up for course admins
- configure an account navigation tool at the account level,
make sure it shows up in the account's navigation, and
any sub-account's navigation
Change-Id: I977da3c6b89a9e32b4cff4c2b6b221f8162782ff
Reviewed-on: https://gerrit.instructure.com/5427
Reviewed-by: Brian Whitmer <brian@instructure.com>
Tested-by: Hudson <hudson@instructure.com>
2011-08-18 13:49:01 +08:00
account_ids = self . account_chain_ids
2012-01-18 13:32:57 +08:00
tools += ContextExternalTool . active . having_setting ( 'course_navigation' ) . find_all_by_context_type_and_context_id ( 'Account' , account_ids )
basic lti navigation links
By properly configuring external tools (see
/spec/models/course_spec/rb:898 for examples) they can
be added as left-side navigation links to a course,
an account, or to the user profile section of Canvas.
testing notes:
- you have to manually set options on the external tool:
- for user navigation the tool needs to be created on the root account
with the following settings:
{:user_navigation => {:url => <url>, :text => <tab label>} }
(there are also some optional language options you can set using
the :labels attribute)
- for account navigation it's the same
- for course navigation it's the same, except with :course_navigation
there's also some additional options:
:visibility => <value> // public, members, admins
:default => <value> // disabled, enabled
test plan:
- configure a user navigation tool at the root account level,
make sure it shows up in the user's profile section
- configure a course navigation tool at the account level,
make sure it shows up in the course's navigation
- configure a course navigation tool at the course level,
make sure it shows up in the course's navigation
- make sure :default => 'disabled' course navigation tools don't
appear by default in the navigation, but can be enabled on
the course settings page
- make sure :visibility => 'members' only shows up for course members
- make sure :visibility => 'admins' only shows up for course admins
- configure an account navigation tool at the account level,
make sure it shows up in the account's navigation, and
any sub-account's navigation
Change-Id: I977da3c6b89a9e32b4cff4c2b6b221f8162782ff
Reviewed-on: https://gerrit.instructure.com/5427
Reviewed-by: Brian Whitmer <brian@instructure.com>
Tested-by: Hudson <hudson@instructure.com>
2011-08-18 13:49:01 +08:00
tools . sort_by ( & :id ) . map do | tool |
{
:id = > tool . asset_string ,
:label = > tool . label_for ( :course_navigation , opts [ :language ] ) ,
:css_class = > tool . asset_string ,
:href = > :course_external_tool_path ,
2013-04-10 00:48:51 +08:00
:visibility = > tool . course_navigation ( :visibility ) ,
basic lti navigation links
By properly configuring external tools (see
/spec/models/course_spec/rb:898 for examples) they can
be added as left-side navigation links to a course,
an account, or to the user profile section of Canvas.
testing notes:
- you have to manually set options on the external tool:
- for user navigation the tool needs to be created on the root account
with the following settings:
{:user_navigation => {:url => <url>, :text => <tab label>} }
(there are also some optional language options you can set using
the :labels attribute)
- for account navigation it's the same
- for course navigation it's the same, except with :course_navigation
there's also some additional options:
:visibility => <value> // public, members, admins
:default => <value> // disabled, enabled
test plan:
- configure a user navigation tool at the root account level,
make sure it shows up in the user's profile section
- configure a course navigation tool at the account level,
make sure it shows up in the course's navigation
- configure a course navigation tool at the course level,
make sure it shows up in the course's navigation
- make sure :default => 'disabled' course navigation tools don't
appear by default in the navigation, but can be enabled on
the course settings page
- make sure :visibility => 'members' only shows up for course members
- make sure :visibility => 'admins' only shows up for course admins
- configure an account navigation tool at the account level,
make sure it shows up in the account's navigation, and
any sub-account's navigation
Change-Id: I977da3c6b89a9e32b4cff4c2b6b221f8162782ff
Reviewed-on: https://gerrit.instructure.com/5427
Reviewed-by: Brian Whitmer <brian@instructure.com>
Tested-by: Hudson <hudson@instructure.com>
2011-08-18 13:49:01 +08:00
:external = > true ,
2013-04-10 00:48:51 +08:00
:hidden = > tool . course_navigation ( :default ) == 'disabled' ,
basic lti navigation links
By properly configuring external tools (see
/spec/models/course_spec/rb:898 for examples) they can
be added as left-side navigation links to a course,
an account, or to the user profile section of Canvas.
testing notes:
- you have to manually set options on the external tool:
- for user navigation the tool needs to be created on the root account
with the following settings:
{:user_navigation => {:url => <url>, :text => <tab label>} }
(there are also some optional language options you can set using
the :labels attribute)
- for account navigation it's the same
- for course navigation it's the same, except with :course_navigation
there's also some additional options:
:visibility => <value> // public, members, admins
:default => <value> // disabled, enabled
test plan:
- configure a user navigation tool at the root account level,
make sure it shows up in the user's profile section
- configure a course navigation tool at the account level,
make sure it shows up in the course's navigation
- configure a course navigation tool at the course level,
make sure it shows up in the course's navigation
- make sure :default => 'disabled' course navigation tools don't
appear by default in the navigation, but can be enabled on
the course settings page
- make sure :visibility => 'members' only shows up for course members
- make sure :visibility => 'admins' only shows up for course admins
- configure an account navigation tool at the account level,
make sure it shows up in the account's navigation, and
any sub-account's navigation
Change-Id: I977da3c6b89a9e32b4cff4c2b6b221f8162782ff
Reviewed-on: https://gerrit.instructure.com/5427
Reviewed-by: Brian Whitmer <brian@instructure.com>
Tested-by: Hudson <hudson@instructure.com>
2011-08-18 13:49:01 +08:00
:args = > [ self . id , tool . id ]
}
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def tabs_available ( user = nil , opts = { } )
2012-08-22 02:07:38 +08:00
# make sure t() is called before we switch to the slave, in case we update the user's selected locale in the process
default_tabs = Course . default_tabs
2012-10-23 05:22:15 +08:00
opts . reverse_merge! ( :include_external = > true )
2012-08-22 02:07:38 +08:00
2013-04-03 01:53:08 +08:00
Shackles . activate ( :slave ) do
2012-08-21 01:20:36 +08:00
# We will by default show everything in default_tabs, unless the teacher has configured otherwise.
tabs = self . tab_configuration . compact
settings_tab = default_tabs [ - 1 ]
2012-10-23 05:22:15 +08:00
external_tabs = ( opts [ :include_external ] && external_tool_tabs ( opts ) ) || [ ]
2012-08-21 01:20:36 +08:00
tabs = tabs . map do | tab |
default_tab = default_tabs . find { | t | t [ :id ] == tab [ :id ] } || external_tabs . find { | t | t [ :id ] == tab [ :id ] }
if default_tab
tab [ :label ] = default_tab [ :label ]
tab [ :href ] = default_tab [ :href ]
tab [ :css_class ] = default_tab [ :css_class ]
tab [ :args ] = default_tab [ :args ]
tab [ :visibility ] = default_tab [ :visibility ]
tab [ :external ] = default_tab [ :external ]
default_tabs . delete_if { | t | t [ :id ] == tab [ :id ] }
external_tabs . delete_if { | t | t [ :id ] == tab [ :id ] }
tab
else
# Remove any tabs we don't know about in default_tabs (in case we removed them or something, like Groups)
nil
end
2011-08-16 06:34:57 +08:00
end
2012-08-21 01:20:36 +08:00
tabs . compact!
tabs += default_tabs
tabs += external_tabs
# Ensure that Settings is always at the bottom
tabs . delete_if { | t | t [ :id ] == TAB_SETTINGS }
tabs << settings_tab
tabs . each do | tab |
tab [ :hidden_unused ] = true if tab [ :id ] == TAB_MODULES && ! active_record_types [ :modules ]
tab [ :hidden_unused ] = true if tab [ :id ] == TAB_FILES && ! active_record_types [ :files ]
tab [ :hidden_unused ] = true if tab [ :id ] == TAB_QUIZZES && ! active_record_types [ :quizzes ]
tab [ :hidden_unused ] = true if tab [ :id ] == TAB_ASSIGNMENTS && ! active_record_types [ :assignments ]
tab [ :hidden_unused ] = true if tab [ :id ] == TAB_PAGES && ! active_record_types [ :pages ] && ! allow_student_wiki_edits
tab [ :hidden_unused ] = true if tab [ :id ] == TAB_CONFERENCES && ! active_record_types [ :conferences ] && ! self . grants_right? ( user , nil , :create_conferences )
tab [ :hidden_unused ] = true if tab [ :id ] == TAB_ANNOUNCEMENTS && ! active_record_types [ :announcements ]
tab [ :hidden_unused ] = true if tab [ :id ] == TAB_OUTCOMES && ! active_record_types [ :outcomes ]
2011-09-08 02:41:06 +08:00
end
2012-08-21 01:20:36 +08:00
# remove tabs that the user doesn't have access to
unless opts [ :for_reordering ]
unless self . grants_rights? ( user , opts [ :session ] , :read , :manage_content ) . values . any?
tabs . delete_if { | t | t [ :id ] == TAB_HOME }
tabs . delete_if { | t | t [ :id ] == TAB_ANNOUNCEMENTS }
tabs . delete_if { | t | t [ :id ] == TAB_PAGES }
tabs . delete_if { | t | t [ :id ] == TAB_OUTCOMES }
tabs . delete_if { | t | t [ :id ] == TAB_CONFERENCES }
tabs . delete_if { | t | t [ :id ] == TAB_COLLABORATIONS }
tabs . delete_if { | t | t [ :id ] == TAB_MODULES }
end
unless self . grants_rights? ( user , opts [ :session ] , :participate_as_student , :manage_content ) . values . any?
tabs . delete_if { | t | t [ :visibility ] == 'members' }
end
unless self . grants_rights? ( user , opts [ :session ] , :read , :manage_content , :manage_assignments ) . values . any?
tabs . delete_if { | t | t [ :id ] == TAB_ASSIGNMENTS }
tabs . delete_if { | t | t [ :id ] == TAB_QUIZZES }
2011-09-08 02:41:06 +08:00
end
2013-04-06 04:40:05 +08:00
unless self . grants_rights? ( user , opts [ :session ] , :read , :read_syllabus , :manage_content , :manage_assignments ) . values . any?
tabs . delete_if { | t | t [ :id ] == TAB_SYLLABUS }
end
2012-08-21 01:20:36 +08:00
tabs . delete_if { | t | t [ :visibility ] == 'admins' } unless self . grants_right? ( user , opts [ :session ] , :manage_content )
if self . grants_rights? ( user , opts [ :session ] , :manage_content , :manage_assignments ) . values . any?
tabs . detect { | t | t [ :id ] == TAB_ASSIGNMENTS } [ :manageable ] = true
tabs . detect { | t | t [ :id ] == TAB_SYLLABUS } [ :manageable ] = true
tabs . detect { | t | t [ :id ] == TAB_QUIZZES } [ :manageable ] = true
end
tabs . delete_if { | t | t [ :hidden ] && t [ :external ] }
tabs . delete_if { | t | t [ :id ] == TAB_GRADES } unless self . grants_rights? ( user , opts [ :session ] , :read_grades , :view_all_grades , :manage_grades ) . values . any?
tabs . detect { | t | t [ :id ] == TAB_GRADES } [ :manageable ] = true if self . grants_rights? ( user , opts [ :session ] , :view_all_grades , :manage_grades ) . values . any?
tabs . delete_if { | t | t [ :id ] == TAB_PEOPLE } unless self . grants_rights? ( user , opts [ :session ] , :read_roster , :manage_students , :manage_admin_users ) . values . any?
tabs . detect { | t | t [ :id ] == TAB_PEOPLE } [ :manageable ] = true if self . grants_rights? ( user , opts [ :session ] , :manage_students , :manage_admin_users ) . values . any?
tabs . delete_if { | t | t [ :id ] == TAB_FILES } unless self . grants_rights? ( user , opts [ :session ] , :read , :manage_files ) . values . any?
tabs . detect { | t | t [ :id ] == TAB_FILES } [ :manageable ] = true if self . grants_right? ( user , opts [ :session ] , :managed_files )
tabs . delete_if { | t | t [ :id ] == TAB_DISCUSSIONS } unless self . grants_rights? ( user , opts [ :session ] , :read_forum , :moderate_forum , :post_to_forum ) . values . any?
tabs . detect { | t | t [ :id ] == TAB_DISCUSSIONS } [ :manageable ] = true if self . grants_right? ( user , opts [ :session ] , :moderate_forum )
tabs . delete_if { | t | t [ :id ] == TAB_SETTINGS } unless self . grants_right? ( user , opts [ :session ] , :read_as_admin )
if ! user || ! self . grants_right? ( user , nil , :manage_content )
# remove some tabs for logged-out users or non-students
if self . grants_right? ( user , nil , :read_as_admin )
tabs . delete_if { | t | [ TAB_CHAT ] . include? ( t [ :id ] ) }
elsif ! self . grants_right? ( user , nil , :participate_as_student )
2012-11-02 03:57:55 +08:00
tabs . delete_if { | t | [ TAB_PEOPLE , TAB_CHAT , TAB_OUTCOMES ] . include? ( t [ :id ] ) }
2012-08-21 01:20:36 +08:00
end
2011-08-16 06:34:57 +08:00
2012-10-23 05:06:28 +08:00
unless discussion_topics . new . grants_right? ( user , nil , :read )
tabs . delete_if { | t | t [ :id ] == TAB_ANNOUNCEMENTS }
end
2012-08-21 01:20:36 +08:00
# remove hidden tabs from students
tabs . delete_if { | t | ( t [ :hidden ] || ( t [ :hidden_unused ] && ! opts [ :include_hidden_unused ] ) ) && ! t [ :manageable ] }
end
2011-09-08 02:41:06 +08:00
end
2012-08-21 01:20:36 +08:00
# Uncommenting these lines will always put hidden links after visible links
# tabs.each_with_index{|t, i| t[:sort_index] = i }
# tabs = tabs.sort_by{|t| [t[:hidden_unused] || t[:hidden] ? 1 : 0, t[:sort_index]] } if !self.tab_configuration || self.tab_configuration.empty?
tabs
2011-02-01 09:57:29 +08:00
end
end
memoize :tabs_available
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def allow_wiki_comments
read_attribute ( :allow_wiki_comments )
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def account_name
self . account . name rescue nil
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def term_name
self . enrollment_term . name rescue nil
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
def enable_user_notes
2011-12-28 05:57:56 +08:00
root_account . enable_user_notes rescue false
2011-02-01 09:57:29 +08:00
end
2012-01-04 04:30:49 +08:00
2011-02-03 05:30:07 +08:00
def equella_settings
account = self . account
while account
settings = account . equella_settings
return settings if settings
account = account . parent_account
end
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
# This will move the course to be in the specified account.
# All enrollments, sections, and other objects attached to the course will also be updated.
2012-01-04 04:30:49 +08:00
def move_to_account ( new_root_account , new_sub_account = nil )
2011-02-01 09:57:29 +08:00
self . account = new_sub_account || new_root_account
self . save if new_sub_account
self . root_account = new_root_account
user_ids = [ ]
2012-01-04 04:30:49 +08:00
2013-03-19 03:07:47 +08:00
CourseSection . where ( :course_id = > self ) . each do | cs |
2011-02-01 09:57:29 +08:00
cs . update_attribute ( :root_account_id , new_root_account . id )
end
2012-01-04 04:30:49 +08:00
2013-03-19 03:07:47 +08:00
Enrollment . where ( :course_id = > self ) . each do | e |
2011-02-01 09:57:29 +08:00
e . update_attribute ( :root_account_id , new_root_account . id )
user_ids << e . user_id
end
2012-01-04 04:30:49 +08:00
2011-02-01 09:57:29 +08:00
self . save
User . update_account_associations ( user_ids )
end
2011-08-11 01:48:34 +08:00
cattr_accessor :settings_options
self . settings_options = { }
2013-02-08 03:56:05 +08:00
def self . add_setting ( setting , opts = { } )
setting = setting . to_sym
settings_options [ setting ] = opts
cast_expression = " val.to_s "
if opts [ :boolean ]
opts [ :default ] || = false
cast_expression = " Canvas::Plugin.value_to_boolean(val) "
end
2013-02-23 02:41:37 +08:00
class_eval <<-CODE
2013-02-08 03:56:05 +08:00
def #{setting}
2013-02-12 03:52:53 +08:00
if settings_frd [ #{setting.inspect}].nil? && !@disable_setting_defaults
default = Course . settings_options [ #{setting.inspect}][:default]
default . respond_to? ( :call ) ? default . call ( self ) : default
else
2013-02-08 03:56:05 +08:00
settings_frd [ #{setting.inspect}]
2013-02-12 03:52:53 +08:00
end
2013-02-08 03:56:05 +08:00
end
def #{setting}=(val)
settings_frd [ #{setting.inspect}] = #{cast_expression}
end
CODE
alias_method " #{ setting } ? " , setting if opts [ :boolean ]
if opts [ :alias ]
alias_method opts [ :alias ] , setting
alias_method " #{ opts [ :alias ] } = " , " #{ setting } = "
alias_method " #{ opts [ :alias ] } ? " , " #{ setting } ? "
2013-01-09 07:02:16 +08:00
end
end
2013-02-08 03:56:05 +08:00
# unfortunately we decided to pluralize this in the API after the fact...
# so now we pluralize it everywhere except the actual settings hash and
# course import/export :(
add_setting :hide_final_grade , :alias = > :hide_final_grades , :boolean = > true
add_setting :hide_distribution_graphs , :boolean = > true
add_setting :allow_student_discussion_topics , :boolean = > true , :default = > true
2013-02-08 04:09:05 +08:00
add_setting :allow_student_discussion_editing , :boolean = > true , :default = > true
2013-02-05 05:53:31 +08:00
add_setting :lock_all_announcements , :boolean = > true , :default = > false
2013-02-12 03:52:53 +08:00
add_setting :large_roster , :boolean = > true , :default = > lambda { | c | c . root_account . large_course_rosters? }
2013-04-06 04:40:05 +08:00
add_setting :public_syllabus , :boolean = > true , :default = > false
2013-07-10 00:14:52 +08:00
add_setting :enable_draft , boolean : true , default : false
2013-02-08 04:09:05 +08:00
def user_can_manage_own_discussion_posts? ( user )
return true if allow_student_discussion_editing?
return true if user_is_instructor? ( user )
false
end
2013-01-09 07:02:16 +08:00
2012-09-06 05:57:33 +08:00
def filter_attributes_for_user ( hash , user , session )
2013-02-08 03:56:05 +08:00
hash . delete ( :hide_final_grades ) unless grants_right? user , :update
2012-09-06 05:57:33 +08:00
hash
end
2013-02-08 03:56:05 +08:00
# DEPRECATED, use setting accessors instead
2011-08-11 01:48:34 +08:00
def settings = ( hash )
2013-02-08 03:56:05 +08:00
write_attribute ( :settings , hash )
2011-08-11 01:48:34 +08:00
end
2013-02-08 03:56:05 +08:00
# frozen, because you should use setters
2011-08-11 01:48:34 +08:00
def settings
2013-02-08 03:56:05 +08:00
settings_frd . dup . freeze
end
def settings_frd
read_attribute ( :settings ) || write_attribute ( :settings , { } )
end
def disable_setting_defaults
@disable_setting_defaults = true
yield
ensure
@disable_setting_defaults = nil
2011-08-11 01:48:34 +08:00
end
2011-08-23 06:25:28 +08:00
def reset_content
Course . transaction do
2011-08-31 00:14:27 +08:00
new_course = Course . new
2011-09-14 01:16:41 +08:00
self . attributes . delete_if { | k , v | [ :id , :created_at , :updated_at , :syllabus_body , :wiki_id , :default_view , :tab_configuration ] . include? ( k . to_sym ) } . each do | key , val |
2011-10-13 07:28:30 +08:00
new_course . write_attribute ( key , val )
2011-08-23 06:25:28 +08:00
end
2012-06-26 02:18:45 +08:00
# there's a unique constraint on this, so we need to clear it out
self . self_enrollment_code = nil
self . self_enrollment = false
2011-08-31 00:14:27 +08:00
# The order here is important; we have to set our sis id to nil and save first
# so that the new course can be saved, then we need the new course saved to
# get its id to move over sections and enrollments. Setting this course to
# deleted has to be last otherwise it would set all the enrollments to
# deleted before they got moved
2011-09-14 01:16:41 +08:00
self . uuid = self . sis_source_id = self . sis_batch_id = nil ;
2011-08-25 00:25:11 +08:00
self . save!
2011-10-13 07:28:30 +08:00
Course . process_as_sis { new_course . save! }
2013-03-19 03:07:47 +08:00
self . course_sections . update_all ( :course_id = > new_course )
2011-08-31 00:14:27 +08:00
# we also want to bring along prior enrollments, so don't use the enrollments
# association
2011-09-14 01:16:41 +08:00
case Enrollment . connection . adapter_name
2013-02-27 01:37:54 +08:00
when 'MySQL' , 'Mysql2'
2011-09-14 01:16:41 +08:00
Enrollment . connection . execute ( " UPDATE users, enrollments SET users.updated_at= #{ Course . sanitize ( Time . now . utc ) } , enrollments.updated_at= #{ Course . sanitize ( Time . now . utc ) } , enrollments.course_id= #{ new_course . id } WHERE users.id=enrollments.user_id AND enrollments.course_id= #{ self . id } " )
else
2013-03-19 03:07:47 +08:00
Enrollment . where ( :course_id = > self ) . update_all ( :course_id = > new_course , :updated_at = > Time . now . utc )
User . where ( " id IN (SELECT user_id FROM enrollments WHERE course_id=?) " , new_course ) . update_all ( :updated_at = > Time . now . utc )
2011-09-14 01:16:41 +08:00
end
2011-08-31 00:14:27 +08:00
self . replacement_course_id = new_course . id
self . workflow_state = 'deleted'
self . save!
2013-08-06 05:06:27 +08:00
# Assign original course profile to the new course (automatically saves it)
new_course . profile = self . profile
2011-10-13 07:28:30 +08:00
Course . find ( new_course . id )
2011-08-23 06:25:28 +08:00
end
end
2011-11-15 03:39:28 +08:00
2012-02-10 00:27:10 +08:00
def has_open_course_imports?
2013-03-19 03:07:47 +08:00
self . course_imports . where ( :workflow_state = > [ 'created' , 'started' ] ) . exists?
2012-02-10 00:27:10 +08:00
end
introduce preferred user list search mode
closes #7059, #7411
preferred is a compromise between open registration and closed
registration. if a single user is found, that user is found without
introducing any temporary user to allow user disambiguation. if no
users are found, or multiple users are found, it's the same behavior
as open registration.
as part of this, the "only search existing users" checkbox has been
removed. instead, preferred searching will be used in the following
cases:
* adding an admin, and open registration is enabled
* adding an admin, open registration is disabled, and the user
has permission to create new users
* adding a user to a course, open registration is enabled, and
delegated authentication is in use
* adding a user to a course, open registration is disabled, and
the user has permission to create new users
the notable case that preferred searching is not used, and the
user would want to use search existing users is open registration
enabled, and adding a user to a course. in this case, a temporary
user will be created instead of sending the invitation to the
existing user. however, the end user experience is identical
(invitation sent to e-mail, invitation visible in the same locations
in the UI), with the small exception that the end user gets the
opportunity to create a separate account if desired (but not
preferred).
test plan:
* go through each of the cases above for a user that doesn't exist
yet, a single matching user exists, or multiple users exist.
it should behave as described above
Change-Id: Idbc7fe23bfc7430b4cd25f7981f5dc08b9e4ffda
Reviewed-on: https://gerrit.instructure.com/8966
Tested-by: Hudson <hudson@instructure.com>
Reviewed-by: Brian Palmer <brianp@instructure.com>
2012-02-24 06:24:48 +08:00
def user_list_search_mode_for ( user )
if self . root_account . open_registration?
return self . root_account . delegated_authentication? ? :preferred : :open
end
return :preferred if self . root_account . grants_right? ( user , :manage_user_logins )
:closed
end
2012-03-03 08:05:06 +08:00
def participating_users ( user_ids )
2013-03-19 03:07:47 +08:00
enrollments = self . enrollments . includes ( :user ) .
where ( :enrollments = > { :workflow_state = > 'active' } , :users = > { :id = > user_ids } )
2012-03-03 08:05:06 +08:00
enrollments . select { | e | e . active? } . map ( & :user ) . uniq
end
2012-12-12 21:50:15 +08:00
2012-03-14 04:08:19 +08:00
def student_view_student
fake_student = find_or_create_student_view_student
fake_student = sync_enrollments ( fake_student )
fake_student
end
# part of the way we isolate this fake student from places we don't want it
# to appear is to ensure that it does not have a pseudonym or any
# account_associations. if either of these conditions is false, something is
# wrong.
def find_or_create_student_view_student
if self . student_view_students . active . count == 0
fake_student = nil
User . skip_updating_account_associations do
fake_student = User . new ( :name = > t ( 'student_view_student_name' , " Test Student " ) )
fake_student . preferences [ :fake_student ] = true
fake_student . workflow_state = 'registered'
fake_student . save
2012-03-31 04:38:56 +08:00
# hash the unique_id so that it's hard to accidently enroll the user in
# a course by entering something in a user list. :(
fake_student . pseudonyms . create! ( :account = > self . root_account ,
:unique_id = > Canvas :: Security . hmac_sha1 ( " Test Student_ #{ fake_student . id } " ) )
2012-03-14 04:08:19 +08:00
end
fake_student
else
self . student_view_students . active . first
end
end
private :find_or_create_student_view_student
2012-12-12 21:50:15 +08:00
2012-03-14 04:08:19 +08:00
# we want to make sure the student view student is always enrolled in all the
# sections of the course, so that a section limited teacher can grade them.
def sync_enrollments ( fake_student )
2012-12-20 03:28:43 +08:00
self . default_section
2012-03-14 04:08:19 +08:00
self . course_sections . active . each do | section |
# enroll fake_student will only create the enrollment if it doesn't already exist
2012-12-12 21:50:15 +08:00
self . enroll_user ( fake_student , 'StudentViewEnrollment' ,
:allow_multiple_enrollments = > true ,
2012-03-14 04:08:19 +08:00
:section = > section ,
2012-12-12 21:50:15 +08:00
:enrollment_state = > 'active' ,
:no_notify = > true ,
2012-03-14 04:08:19 +08:00
:skip_touch_user = > true )
end
fake_student
end
private :sync_enrollments
2012-11-17 06:00:05 +08:00
def associated_shards
[ Shard . default ]
end
2012-12-12 21:50:15 +08:00
def includes_student? ( user )
return false if user . nil? || user . id . nil?
student_enrollments . find_by_user_id ( user . id ) . present?
end
2013-01-16 07:37:54 +08:00
def update_one ( update_params )
case update_params [ :event ]
when 'offer'
if self . completed?
self . unconclude!
else
self . offer! unless self . available?
end
when 'conclude'
self . complete! unless self . completed?
when 'delete'
self . sis_source_id = nil
self . workflow_state = 'deleted'
self . save!
2013-02-26 04:13:57 +08:00
when 'undelete'
self . workflow_state = 'claimed'
self . save!
2013-01-16 07:37:54 +08:00
end
end
def self . do_batch_update ( progress , user , course_ids , update_params )
2013-02-06 07:31:21 +08:00
account = progress . context
progress_runner = ProgressRunner . new ( progress )
progress_runner . completed_message do | completed_count |
t ( 'batch_update_message' , {
2013-01-16 07:37:54 +08:00
:one = > " 1 course processed " ,
:other = > " %{count} courses processed "
} ,
:count = > completed_count )
end
2013-02-06 07:31:21 +08:00
progress_runner . do_batch_update ( course_ids ) do | course_id |
course = account . associated_courses . find_by_id ( course_id )
2013-02-26 04:13:57 +08:00
raise t ( 'course_not_found' , " The course was not found " ) unless course &&
( course . workflow_state != 'deleted' || update_params [ :event ] == 'undelete' )
2013-02-06 07:31:21 +08:00
raise t ( 'access_denied' , " Access was denied " ) unless course . grants_right? user , :update
course . update_one ( update_params )
end
2013-01-16 07:37:54 +08:00
end
def self . batch_update ( account , user , course_ids , update_params )
progress = account . progresses . create! :tag = > " course_batch_update " , :completion = > 0 . 0
2013-06-04 06:35:34 +08:00
job = Course . send_later_enqueue_args ( :do_batch_update ,
{ no_delay : true } ,
progress , user , course_ids , update_params )
2013-01-16 07:37:54 +08:00
progress . user_id = user . id
progress . delayed_job_id = job . id
progress . save!
progress
end
2013-03-12 05:14:19 +08:00
def re_send_invitations!
2013-03-19 03:07:47 +08:00
self . enrollments . invited . except ( :includes ) . includes ( :user = > :communication_channels ) . find_each do | e |
2013-03-12 05:14:19 +08:00
e . re_send_confirmation! if e . invited?
end
end
2013-07-10 00:14:52 +08:00
# Public: Determine if draft state is enabled for this course.
#
# Returns a boolean (default: false).
def draft_state_enabled?
( root_account . allow_draft? && enable_draft? ) || root_account . enable_draft?
end
2011-02-01 09:57:29 +08:00
end