canvas-lms/app/models/course.rb

2840 lines
113 KiB
Ruby
Raw Normal View History

2011-02-01 09:57:29 +08:00
#
# Copyright (C) 2011 - 2015 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/>.
#
require 'atom'
require 'csv'
2011-02-01 09:57:29 +08:00
class Course < ActiveRecord::Base
include Context
include Workflow
include TextHelper
include HtmlTextHelper
include TimeZoneHelper
include ContentLicenses
include TurnitinID
2011-02-01 09:57:29 +08:00
attr_accessor :teacher_names
attr_writer :student_count, :primary_enrollment_type, :primary_enrollment_role_id, :primary_enrollment_rank, :primary_enrollment_state, :invitation
attr_accessible :name,
:section,
:account,
:group_weighting_scheme,
:start_at,
:conclude_at,
:grading_standard_id,
:is_public,
:is_public_to_auth_users,
:allow_student_wiki_edits,
:show_public_context_messages,
:syllabus_body,
:public_description,
:allow_student_forum_attachments,
:allow_student_discussion_topics,
:allow_student_discussion_editing,
allow displaing total grade as points for students fixes CNVS-9874 when teacher choses to show total grade as points in GB2, a setting is saved student grade summary page shows the total grade in same format if assignment groups are weighted, grade is displayed as a percentage again test plan: - new addition: - go to a course where GB2 is displaying totals as points BUT has no DB setting about show_point_totals (ask mike if you need help getting to this state) - as a student look at the grade summary page, total should be a percent - as a teacher in that class, go to GB2 and wait for 5 seconds - as that same student, go back to grade summary, total should be points now - as a teacher, change total grade to show as points in GB2 - when you return to the GB, even from a new browser, this should be the same - in GB, tooltip should show points if cell shows percent, and visa vera - as a student in that class, you should see your total grade as points - grade tooltip should show points if cell shows percent, and visa vera - switch to weighted assignment groups - total grade as a teacher and student should switch back to percent - switch back to non-weighted - total grade should stay a percent until explicitly changed back to points - GB2 weighting and points/percent switching should have no unintended effects on the GB - student grade summary page should display everything in a consistent manner Change-Id: Id0c4f496576c226eb7000d6684a37faf0b439359 Reviewed-on: https://gerrit.instructure.com/28780 Tested-by: Jenkins <jenkins@instructure.com> QA-Review: Caleb Guanzon <cguanzon@instructure.com> Reviewed-by: Simon Williams <simon@instructure.com> Product-Review: Mike Nomitch <mnomitch@instructure.com>
2014-01-15 01:06:03 +08:00
:show_total_grade_as_points,
: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,
:restrict_student_past_view,
:restrict_student_future_view,
:grading_standard,
:grading_standard_enabled,
:locale,
:integration_id,
:hide_final_grades,
:hide_distribution_graphs,
:lock_all_announcements,
:public_syllabus,
:course_format,
:time_zone,
:organize_epub_by_content_type
2011-02-01 09:57:29 +08:00
time_zone_attribute :time_zone
def time_zone
if read_attribute(:time_zone)
super
else
root_account.default_time_zone
end
end
2011-02-01 09:57:29 +08:00
serialize :tab_configuration
serialize :settings, Hash
2011-02-01 09:57:29 +08:00
belongs_to :root_account, :class_name => 'Account'
belongs_to :abstract_course
2011-02-01 09:57:29 +08:00
belongs_to :enrollment_term
belongs_to :grading_standard
belongs_to :template_course, :class_name => 'Course'
has_many :templated_courses, :class_name => 'Course', :foreign_key => 'template_course_id'
2011-02-01 09:57:29 +08:00
has_many :course_sections
has_many :active_course_sections, -> { where(workflow_state: 'active') }, class_name: 'CourseSection'
has_many :enrollments, -> { preload(:user).where("enrollments.workflow_state<>'deleted'") }, dependent: :destroy, inverse_of: :course
has_many :all_enrollments, :class_name => 'Enrollment'
has_many :current_enrollments, -> { where("enrollments.workflow_state NOT IN ('rejected', 'completed', 'deleted', 'inactive')").preload(:user) }, class_name: 'Enrollment'
has_many :all_current_enrollments, -> { where("enrollments.workflow_state NOT IN ('rejected', 'completed', 'deleted')").preload(:user) }, class_name: 'Enrollment'
has_many :typical_current_enrollments, -> { where("enrollments.workflow_state NOT IN ('rejected', 'completed', 'deleted', 'inactive') AND enrollments.type NOT IN ('StudentViewEnrollment', 'ObserverEnrollment', 'DesignerEnrollment')").preload(:user) }, class_name: 'Enrollment'
has_many :prior_enrollments, -> { preload(:user, :course).where(workflow_state: 'completed') }, class_name: 'Enrollment'
has_many :prior_users, :through => :prior_enrollments, :source => :user
has_many :students, :through => :student_enrollments, :source => :user
has_many :admin_visible_students, :through => :admin_visible_student_enrollments, :source => :user
has_many :self_enrolled_students, -> { where("self_enrolled") }, through: :student_enrollments, source: :user
has_many :all_students, :through => :all_student_enrollments, :source => :user
has_many :participating_students, -> { where(enrollments: { type: ['StudentEnrollment', 'StudentViewEnrollment'], workflow_state: 'active' }) }, through: :enrollments, source: :user
has_many :student_enrollments, -> { where("enrollments.workflow_state NOT IN ('rejected', 'completed', 'deleted', 'inactive') AND enrollments.type IN ('StudentEnrollment', 'StudentViewEnrollment')").preload(:user) }, class_name: 'Enrollment'
has_many :admin_visible_student_enrollments, -> { where("enrollments.workflow_state NOT IN ('rejected', 'completed', 'deleted') AND enrollments.type IN ('StudentEnrollment', 'StudentViewEnrollment')").preload(:user) }, class_name: 'Enrollment'
has_many :all_student_enrollments, -> { where("enrollments.workflow_state<>'deleted' AND enrollments.type IN ('StudentEnrollment', 'StudentViewEnrollment')").preload(:user) }, class_name: 'Enrollment'
has_many :all_real_users, :through => :all_real_enrollments, :source => :user
has_many :all_real_enrollments, -> { where("enrollments.workflow_state<>'deleted' AND enrollments.type<>'StudentViewEnrollment'").preload(:user) }, class_name: 'Enrollment'
has_many :all_real_students, :through => :all_real_student_enrollments, :source => :user
has_many :all_real_student_enrollments, -> { where("enrollments.type = 'StudentEnrollment' AND enrollments.workflow_state <> 'deleted'").preload(:user) }, class_name: 'StudentEnrollment'
2011-02-01 09:57:29 +08:00
has_many :teachers, :through => :teacher_enrollments, :source => :user
has_many :teacher_enrollments, -> { where("enrollments.workflow_state <> 'deleted' AND enrollments.type = 'TeacherEnrollment'").preload(:user) }, class_name: 'TeacherEnrollment'
2011-02-01 09:57:29 +08:00
has_many :tas, :through => :ta_enrollments, :source => :user
has_many :ta_enrollments, -> { where("enrollments.workflow_state<>'deleted'").preload(:user) }, class_name: 'TaEnrollment'
2011-02-01 09:57:29 +08:00
has_many :observers, :through => :observer_enrollments, :source => :user
has_many :participating_observers, -> { where(enrollments: { workflow_state: 'active' }) }, through: :observer_enrollments, source: :user
has_many :observer_enrollments, -> { where("enrollments.workflow_state<>'deleted'").preload(:user) }, class_name: 'ObserverEnrollment'
has_many :instructors, -> { where(enrollments: { type: ['TaEnrollment', 'TeacherEnrollment'] }) }, through: :enrollments, source: :user
has_many :instructor_enrollments, -> { where(type: ['TaEnrollment', 'TeacherEnrollment']) }, class_name: 'Enrollment'
has_many :participating_instructors, -> { where(enrollments: { type: ['TaEnrollment', 'TeacherEnrollment'], workflow_state: 'active' }) }, through: :enrollments, source: :user
has_many :admins, -> { where(enrollments: { type: ['TaEnrollment', 'TeacherEnrollment', 'DesignerEnrollment'] }) }, through: :enrollments, source: :user
has_many :admin_enrollments, -> { where(type: ['TaEnrollment', 'TeacherEnrollment', 'DesignerEnrollment']) }, class_name: 'Enrollment'
has_many :participating_admins, -> { where(enrollments: { type: ['TaEnrollment', 'TeacherEnrollment', 'DesignerEnrollment'], workflow_state: 'active' }) }, through: :enrollments, source: :user
student view; closes #6995 allows course admins to view the course from a student perspective. this is accessible from a button on the course/settings page. They should be able to interact with the course as a student would, including submitting homework and quizzes. Right now there is one student view student per course, so if the course has multiple administrators, they will all share the same student view student. There are a few things that won't work in student view the way the would for a normal student, most notably access to conversations is disabled. Additionally, any publicly visible action that the teacher takes while in student view will still be publicly visible -- for example if the teacher posts a discussion topic/reply as the student view student, it will be visible to the whole class. test-plan: - (the following should be tried both as a full teacher and as a section-limited course admin) - set up a few assignments, quizzes, discussions, and module progressions in a course. - enter student view from the coures settings page. - work through the things you set up above. - leave student view from the upper right corner of the page. - as a teacher you should be able to grade the fake student so that they can continue to progress. - the student should not show up in the course users list - the student should not show up at the account level at all: * total user list * statistics Change-Id: I886a4663777f3ef2bdae594349ff6da6981e14ed Reviewed-on: https://gerrit.instructure.com/9484 Tested-by: Hudson <hudson@instructure.com> Reviewed-by: Cody Cutrer <cody@instructure.com>
2012-03-14 04:08:19 +08:00
has_many :student_view_students, :through => :student_view_enrollments, :source => :user
has_many :student_view_enrollments, -> { where("enrollments.workflow_state<>'deleted'").preload(:user) }, class_name: 'StudentViewEnrollment'
has_many :participating_typical_users, :through => :typical_current_enrollments, :source => :user
has_many :custom_gradebook_columns, -> { order('custom_gradebook_columns.position, custom_gradebook_columns.title') }, dependent: :destroy
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
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
has_many :non_unique_associated_accounts, -> { order('course_account_associations.depth') }, source: :account, through: :course_account_associations
has_many :users, -> { uniq }, through: :enrollments, source: :user
has_many :current_users, -> { uniq }, through: :current_enrollments, source: :user
has_many :all_current_users, -> { uniq }, through: :all_current_enrollments, source: :user
has_many :group_categories, -> {where(deleted_at: nil) }, as: :context
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, -> { where("groups.workflow_state<>'deleted'") }, as: :context, class_name: 'Group'
has_many :assignment_groups, -> { order('assignment_groups.position, assignment_groups.name') }, as: :context, dependent: :destroy
has_many :assignments, -> { order('assignments.created_at') }, as: :context, dependent: :destroy
has_many :calendar_events, -> { where("calendar_events.workflow_state<>'cancelled'") }, as: :context, dependent: :destroy
has_many :submissions, -> { order('submissions.updated_at DESC') }, through: :assignments, dependent: :destroy
has_many :submission_comments, as: :context
has_many :discussion_topics, -> { where("discussion_topics.workflow_state<>'deleted'").preload(:user).order('discussion_topics.position DESC, discussion_topics.created_at DESC') }, as: :context, dependent: :destroy
has_many :active_discussion_topics, -> { where("discussion_topics.workflow_state<>'deleted'").preload(:user) }, as: :context, class_name: 'DiscussionTopic'
has_many :all_discussion_topics, -> { preload(:user) }, as: :context, class_name: "DiscussionTopic", dependent: :destroy
has_many :discussion_entries, -> { preload(:discussion_topic, :user) }, through: :discussion_topics, dependent: :destroy
2011-02-01 09:57:29 +08:00
has_many :announcements, :as => :context, :class_name => 'Announcement', :dependent => :destroy
has_many :active_announcements, -> { where("discussion_topics.workflow_state<>'deleted'") }, as: :context, class_name: 'Announcement'
has_many :attachments, :as => :context, :dependent => :destroy, :extend => Attachment::FindInContextAssociation
has_many :active_images, -> { where("attachments.file_state<>? AND attachments.content_type LIKE 'image%'", 'deleted').order('attachments.display_name').preload(:thumbnail) }, as: :context, class_name: 'Attachment'
has_many :active_assignments, -> { where("assignments.workflow_state<>'deleted'").order('assignments.title, assignments.position') }, as: :context, class_name: 'Assignment'
has_many :folders, -> { order('folders.name') }, as: :context, dependent: :destroy
has_many :active_folders, -> { where("folders.workflow_state<>'deleted'").order('folders.name') }, class_name: 'Folder', as: :context
2011-02-01 09:57:29 +08:00
has_many :messages, :as => :context, :dependent => :destroy
has_many :context_external_tools, -> { order('name') }, as: :context, dependent: :destroy
2011-02-01 09:57:29 +08:00
belongs_to :wiki
has_many :wiki_pages, foreign_key: 'wiki_id', primary_key: 'wiki_id'
has_many :quizzes, -> { order('lock_at, title, id') }, class_name: 'Quizzes::Quiz', as: :context, dependent: :destroy
has_many :quiz_questions, :class_name => 'Quizzes::QuizQuestion', :through => :quizzes
has_many :active_quizzes, -> { preload(:assignment).where("quizzes.workflow_state<>'deleted'").order(:created_at) }, class_name: 'Quizzes::Quiz', as: :context
has_many :assessment_questions, :through => :assessment_question_banks
has_many :assessment_question_banks, -> { preload(:assessment_questions, :assessment_question_bank_users) }, as: :context
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'
has_many :grading_standards, -> { where("workflow_state<>'deleted'") }, as: :context
has_many :web_conferences, -> { order('created_at DESC') }, as: :context, dependent: :destroy
has_many :collaborations, -> { order('title, created_at') }, as: :context, dependent: :destroy
has_many :context_modules, -> { order(:position) }, as: :context, dependent: :destroy
has_many :context_module_progressions, through: :context_modules
has_many :active_context_modules, -> { where(workflow_state: 'active') }, as: :context, class_name: 'ContextModule'
has_many :context_module_tags, -> { order(:position).where(tag_type: 'context_module') }, class_name: 'ContentTag', as: 'context', dependent: :destroy
2011-02-01 09:57:29 +08:00
has_many :media_objects, :as => :context
has_many :page_views, :as => :context
has_many :asset_user_accesses, :as => :context
2011-02-01 09:57:29 +08:00
has_many :role_overrides, :as => :context
has_many :content_migrations, :as => :context
has_many :content_exports, :as => :context
has_many :epub_exports, -> { order("created_at DESC") }
attr_accessor :latest_epub_export
has_many :alerts, -> { preload(:criteria) }, as: :context
has_many :appointment_group_contexts, :as => :context
has_many :appointment_groups, :through => :appointment_group_contexts
has_many :appointment_participants, -> { where("workflow_state = 'locked' AND parent_calendar_event_id IS NOT NULL") }, class_name: 'CalendarEvent', foreign_key: :effective_context_code, primary_key: :asset_string
2011-02-01 09:57:29 +08:00
attr_accessor :import_source
has_many :zip_file_imports, :as => :context
has_many :content_participation_counts, :as => :context, :dependent => :destroy
has_many :poll_sessions, class_name: 'Polling::PollSession', dependent: :destroy
add grading period group model add GradingPeriodGroup, and change associations between GradingPeriods, GradingPeriodGroups, Courses, and Accounts. also adjust the grading periods controller to account for addition of grading period groups closes CNVS-16538 test plan: -run bundle exec rake db:migrate, and bundle exec rake db:migrate RAILS_ENV=test -verify the migrations successfully run -open the rails console in sandbox: bundle exec rails c -s -create a course, a few grading periods, and a grading period group. Add the grading periods to the group. Assign the grading period group to the course. $ course = Course.create $ grading_period1 = GradingPeriod.create(weight: 25.0, start_date: Time.zone.now, end_date: 2.days.from_now) $ grading_period2 = GradingPeriod.create(weight: 30.0, start_date: Time.zone.now, end_date: 2.days.from_now) $ grading_period_group = GradingPeriodGroup.create() $ grading_period_group.grading_periods << grading_period1 $ grading_period_group.grading_periods << grading_period2 $ grading_period_group.course = course -verify the associations are working as expected, i.e. a GradingPeriodGroup has GradingPeriods, a GradingPeriod belongs to a GradingPeriodGroup, and a GradingPeriodGroup belongs to a course or account. $ grading_period_group.grading_periods #should return an array containing grading_period1 and grading_period2 $ grading_period1.grading_period_group #should return grading_period_group $ grading_period2.grading_period_group #should return grading_period_group $ grading_period_group.course #should return course $ grading_period_group.account #should return nil (should not throw error) Change-Id: I9d7465431dabd2afa18e7a8a33706b9a78a94cd1 Reviewed-on: https://gerrit.instructure.com/43512 Tested-by: Jenkins <jenkins@instructure.com> Reviewed-by: Josh Simpson <jsimpson@instructure.com> QA-Review: Amber Taniuchi <amber@instructure.com> Reviewed-by: Jacob Fugal <jacob@instructure.com> Product-Review: Spencer Olson <solson@instructure.com>
2014-10-30 02:42:41 +08:00
has_many :grading_period_groups, dependent: :destroy
has_many :grading_periods, through: :grading_period_groups
has_many :usage_rights, as: :context, class_name: 'UsageRights', dependent: :destroy
has_many :sis_post_grades_statuses
has_many :progresses, as: :context
has_many :gradebook_csvs, inverse_of: :course
prepend Profile::Association
2011-02-01 09:57:29 +08:00
before_save :assign_uuid
before_validation :assert_defaults
2011-02-01 09:57:29 +08:00
before_save :update_enrollments_later
allow displaing total grade as points for students fixes CNVS-9874 when teacher choses to show total grade as points in GB2, a setting is saved student grade summary page shows the total grade in same format if assignment groups are weighted, grade is displayed as a percentage again test plan: - new addition: - go to a course where GB2 is displaying totals as points BUT has no DB setting about show_point_totals (ask mike if you need help getting to this state) - as a student look at the grade summary page, total should be a percent - as a teacher in that class, go to GB2 and wait for 5 seconds - as that same student, go back to grade summary, total should be points now - as a teacher, change total grade to show as points in GB2 - when you return to the GB, even from a new browser, this should be the same - in GB, tooltip should show points if cell shows percent, and visa vera - as a student in that class, you should see your total grade as points - grade tooltip should show points if cell shows percent, and visa vera - switch to weighted assignment groups - total grade as a teacher and student should switch back to percent - switch back to non-weighted - total grade should stay a percent until explicitly changed back to points - GB2 weighting and points/percent switching should have no unintended effects on the GB - student grade summary page should display everything in a consistent manner Change-Id: Id0c4f496576c226eb7000d6684a37faf0b439359 Reviewed-on: https://gerrit.instructure.com/28780 Tested-by: Jenkins <jenkins@instructure.com> QA-Review: Caleb Guanzon <cguanzon@instructure.com> Reviewed-by: Simon Williams <simon@instructure.com> Product-Review: Mike Nomitch <mnomitch@instructure.com>
2014-01-15 01:06:03 +08:00
before_save :update_show_total_grade_as_on_weighting_scheme_change
after_save :update_final_scores_on_weighting_scheme_change
2011-02-01 09:57:29 +08:00
after_save :update_account_associations_if_changed
after_save :set_self_enrollment_code
before_save :touch_root_folder_if_necessary
before_validation :verify_unique_ids
validate :validate_course_dates
validates_presence_of :account_id, :root_account_id, :enrollment_term_id, :workflow_state
2011-02-01 09:57:29 +08:00
validates_length_of :syllabus_body, :maximum => maximum_long_text_length, :allow_nil => true, :allow_blank => true
validates_length_of :name, :maximum => maximum_string_length, :allow_nil => true, :allow_blank => true
validates_length_of :sis_source_id, :maximum => maximum_string_length, :allow_nil => true, :allow_blank => false
validates_length_of :course_code, :maximum => maximum_string_length, :allow_nil => true, :allow_blank => true
validates_locale :allow_nil => true
sanitize_field :syllabus_body, CanvasSanitize::SANITIZE
include StickySisFields
are_sis_sticky :name, :course_code, :start_at, :conclude_at, :restrict_enrollments_to_course_dates, :enrollment_term_id, :workflow_state
feature flags infrastructure and API test plan: - install the test_features plugin (since no real features exist yet) - render and consult the feature flags documentation - have a test environment with a root account, sub-account, course in sub-account, and user - Use the "list features" endpoint as a root account admin (with no site admin privileges), on the root account context, and confirm that hidden features do not show up - Use the "list features" endpoint as a site admin user, on the root account context, and confirm that hidden features show up - Use the "list features" endpoint on the site admin account and confirm the hidden features show up - Use the "set feature flag" endpoint on a hidden feature on site admin and ensure the feature becomes visible in all root accounts - Use the "set feature flag endpoint" on a hidden feature on a single root account, and ensure the feature becomes visible to that root account and not others - Confirm that root_opt_in features appear "Off" by default in root accounts, after being "Allowed" in code or site admin - Confirm a feature flag that is set to "on" or "off" (vs. "allowed") cannot be overridden in a lower context (and the API returns locked=true for them) - Confirm that setting locking_account_id requires admin rights in the locking account - Confirm that a feature flag with locking_account_id cannot be changed without admin rights in the locking account (e.g., set a feature flag on a course, locked with the root account's id, and make sure a teacher who is not an account admin can't change it) - Confirm feature flags can be deleted with the "remove feature flag" endpoint (and they are only deleted where they are defined, not when called on an object that inherits a flag) Change-Id: I3e12e23b4454889b6e8b263f1315e82d8f2ada52 Reviewed-on: https://gerrit.instructure.com/25502 Tested-by: Jenkins <jenkins@instructure.com> QA-Review: Matt Fairbourn <mfairbourn@instructure.com> Product-Review: Matt Goodwin <mattg@instructure.com> Reviewed-by: Zach Pendleton <zachp@instructure.com>
2013-10-22 23:28:26 +08:00
include FeatureFlags
include ContentNotices
define_content_notice :import_in_progress,
icon_class: 'icon-import-content',
alert_class: 'alert-info import-in-progress-notice',
template: 'courses/import_in_progress_notice',
should_show: ->(course, user) do
course.grants_right?(user, :manage_content)
end
2011-02-01 09:57:29 +08:00
has_a_broadcast_policy
def [](attr)
attr.to_s == 'asset_string' ? self.asset_string : super
end
def events_for(user)
if user
CalendarEvent.
active.
for_user_and_context_codes(user, [asset_string]).
preload(:child_events).
reject(&:hidden?) +
AppointmentGroup.manageable_by(user, [asset_string]) +
user.assignments_visible_in_course(self)
else
calendar_events.active.preload(:child_events).reject(&:hidden?) +
assignments.active
end
end
def self.skip_updating_account_associations(&block)
if @skip_updating_account_associations
block.call
else
begin
@skip_updating_account_associations = true
block.call
ensure
@skip_updating_account_associations = false
end
end
end
def self.skip_updating_account_associations?
!!@skip_updating_account_associations
end
2011-02-01 09:57:29 +08:00
def update_account_associations_if_changed
if (self.root_account_id_changed? || self.account_id_changed?) && !self.class.skip_updating_account_associations?
send_now_or_later_if_production(new_record? ? :now : :later, :update_account_associations)
end
2011-02-01 09:57:29 +08:00
end
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
def modules_visible_to(user)
if self.grants_right?(user, :view_unpublished_items)
self.context_modules.not_deleted
else
self.context_modules.active
end
end
def module_items_visible_to(user)
if user_is_teacher = self.grants_right?(user, :view_unpublished_items)
tags = self.context_module_tags.not_deleted.joins(:context_module).where("context_modules.workflow_state <> 'deleted'")
else
tags = self.context_module_tags.active.joins(:context_module).where(:context_modules => {:workflow_state => 'active'})
end
if self.feature_enabled?(:differentiated_assignments)
tags = DifferentiableAssignment.scope_filter(tags, user, self, is_teacher: user_is_teacher)
end
tags
end
def sequential_module_item_ids
Rails.cache.fetch(['ordered_module_item_ids', self].cache_key) do
self.context_module_tags.not_deleted.joins(:context_module).
where("context_modules.workflow_state <> 'deleted'").
where("content_tags.content_type <> 'ContextModuleSubHeader'").
reorder("COALESCE(context_modules.position, 0), context_modules.id, content_tags.position NULLS LAST").
pluck(:id)
end
end
def verify_unique_ids
infer_root_account unless self.root_account_id
is_unique = true
if self.sis_source_id && (root_account_id_changed? || sis_source_id_changed?)
scope = root_account.all_courses.where(sis_source_id: self.sis_source_id)
scope = scope.where("id<>?", self) unless self.new_record?
if scope.exists?
is_unique = false
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))
end
end
if self.integration_id && (root_account_id_changed? || integration_id_changed?)
scope = root_account.all_courses.where(integration_id: self.integration_id)
scope = scope.where("id<>?", self) unless self.new_record?
if scope.exists?
is_unique = false
self.errors.add(:integration_id, t("Integration ID \"%{int_id}\" is already in use",
:int_id => self.integration_id))
end
end
is_unique
end
def validate_course_dates
if start_at.present? && conclude_at.present? && conclude_at < start_at
self.errors.add(:conclude_at, t("End date cannot be before start date"))
false
else
true
end
end
2011-02-01 09:57:29 +08:00
def public_license?
license && self.class.public_license?(license)
2011-02-01 09:57:29 +08:00
end
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-02-01 09:57:29 +08:00
def readable_license
license_data[:readable_license]
end
def unpublishable?
ids = self.all_real_students.pluck :id
!self.submissions.with_assignment.with_point_data.where(:user_id => ids).exists?
end
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
ActiveRecord::Associations::Preloader.new.preload(courses, :course_sections => :nonxlist_course)
course_ids = courses.map(&:id)
else
course_ids = courses_or_course_ids
courses = Course.where(:id => course_ids).
preload(:course_sections => [:course, :nonxlist_course]).
select([:id, :account_id]).to_a
end
course_ids_to_update_user_account_associations = []
CourseAccountAssociation.transaction do
current_associations = {}
to_delete = []
CourseAccountAssociation.where(:course_id => course_ids).each do |aa|
key = [aa.course_section_id, aa.account_id]
current_course_associations = current_associations[aa.course_id] ||= {}
# duplicates. the unique index prevents these now, but this code
# needs to hang around for the migration itself
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
starting_account_ids = [course.account_id, section.try(:course).try(:account_id), section.try(:nonxlist_course).try(:account_id)].compact.uniq
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
begin
course.transaction(requires_new: true) do
course.course_account_associations.create! do |aa|
aa.course_section_id = section.try(:id)
aa.account_id = account_id
aa.depth = depth
end
end
rescue ActiveRecord::RecordNotUnique
course.course_account_associations.where(course_section_id: section,
account_id: account_id).update_all(:depth => depth)
end
did_an_update = true
else
if association[1] != depth
CourseAccountAssociation.where(:id => association[0]).update_all(:depth => depth)
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?
CourseAccountAssociation.where(:id => to_delete).delete_all
end
end
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
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
def update_account_associations
self.shard.activate do
Course.update_account_associations([self])
end
2011-02-01 09:57:29 +08:00
end
def associated_accounts
accounts = self.non_unique_associated_accounts.to_a.uniq
accounts << self.account if account_id && !accounts.find { |a| a.id == account_id }
accounts << self.root_account if root_account_id && !accounts.find { |a| a.id == root_account_id }
accounts
end
scope :recently_started, -> { where(:start_at => 1.month.ago..Time.zone.now).order("start_at DESC").limit(10) }
scope :recently_ended, -> { where(:conclude_at => 1.month.ago..Time.zone.now).order("start_at DESC").limit(10) }
scope :recently_created, -> { where("created_at>?", 1.month.ago).order("created_at DESC").limit(50).preload(:teachers) }
scope :for_term, lambda {|term| term ? where(:enrollment_term_id => term) : all }
scope :active_first, -> { order("CASE WHEN courses.workflow_state='available' THEN 0 ELSE 1 END, #{best_unicode_collation_key('name')}") }
scope :name_like, lambda {|name| where(coalesced_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|
# 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(', ')
uniq.joins("INNER JOIN (
SELECT caa.course_id, au.user_id FROM #{CourseAccountAssociation.quoted_table_name} AS caa
INNER JOIN #{Account.quoted_table_name} AS a ON a.id = caa.account_id AND a.workflow_state = 'active'
INNER JOIN #{AccountUser.quoted_table_name} 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 #{Course.quoted_table_name}
INNER JOIN #{Enrollment.quoted_table_name} AS e ON e.course_id = courses.id AND e.user_id = #{user_id.to_i}
AND e.workflow_state IN(#{workflow_states}) AND e.type IN ('TeacherEnrollment', 'TaEnrollment', 'DesignerEnrollment')
WHERE courses.workflow_state <> 'deleted') as course_users
ON course_users.course_id = courses.id")
2011-02-01 09:57:29 +08:00
}
scope :not_deleted, -> { where("workflow_state<>'deleted'") }
2011-02-01 09:57:29 +08:00
scope :with_enrollments, -> {
where("EXISTS (?)", Enrollment.active.where("enrollments.course_id=courses.id"))
}
scope :with_enrollment_types, -> (types) {
types = types.map { |type| "#{type.capitalize}Enrollment" }
where("EXISTS (?)", Enrollment.active.where("enrollments.course_id=courses.id").where(type: types))
}
scope :without_enrollments, -> {
where("NOT EXISTS (?)", Enrollment.active.where("enrollments.course_id=courses.id"))
}
scope :completed, -> {
joins(:enrollment_term).
where("courses.workflow_state='completed' OR courses.conclude_at<? OR enrollment_terms.end_at<?", Time.now.utc, Time.now.utc)
}
scope :not_completed, -> {
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)
}
scope :by_teachers, lambda { |teacher_ids|
teacher_ids.empty? ?
none :
where("EXISTS (?)", Enrollment.active.where("enrollments.course_id=courses.id AND enrollments.type='TeacherEnrollment' AND enrollments.user_id IN (?)", teacher_ids))
}
scope :by_associated_accounts, lambda { |account_ids|
account_ids.empty? ?
none :
where("EXISTS (?)", CourseAccountAssociation.where("course_account_associations.course_id=courses.id AND course_account_associations.account_id IN (?)", account_ids))
}
scope :published, -> { where(workflow_state: %w(available completed)) }
scope :unpublished, -> { where(workflow_state: %w(created claimed)) }
scope :deleted, -> { where(:workflow_state => 'deleted') }
2011-02-01 09:57:29 +08:00
set_broadcast_policy do |p|
p.dispatch :grade_weight_changed
p.to { participating_students }
p.whenever { |record|
(record.available? && @grade_weight_changed) ||
(
record.prior_version.present? &&
record.changed_in_state(:available, :fields => :group_weighting_scheme)
)
2011-02-01 09:57:29 +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 &&
((record.just_created && record.name != Course.default_name) ||
(record.prior_version.present? &&
record.prior_version.name == Course.default_name &&
record.name != Course.default_name)
)
2011-02-01 09:57:29 +08:00
}
end
def self.default_name
# TODO i18n
t('default_name', "My Course")
end
def users_not_in_groups(groups, opts={})
scope = User.joins(:not_ended_enrollments).
where(enrollments: {course_id: self, type: 'StudentEnrollment'}).
where(Group.not_in_group_sql_fragment(groups.map(&:id))).
select("users.id, users.name, users.updated_at").uniq
scope = scope.select(opts[:order]).order(opts[:order]) if opts[:order]
scope
2011-02-01 09:57:29 +08:00
end
def instructors_in_charge_of(user_id)
scope = current_enrollments.
where(:course_id => self, :user_id => user_id).
where("course_section_id IS NOT NULL")
section_ids = scope.uniq.pluck(:course_section_id)
participating_instructors.restrict_to_sections(section_ids)
2011-02-01 09:57:29 +08:00
end
def user_is_instructor?(user)
2011-02-01 09:57:29 +08:00
return unless user
RequestCache.cache('user_is_instructor', self, user) do
Rails.cache.fetch([self, user, "course_user_is_instructor"].cache_key) do
user.cached_current_enrollments(preload_dates: true).any? { |e| e.course_id == self.id && e.participating_instructor? }
end
2011-02-01 09:57:29 +08:00
end
end
self enrollment refactor to facilitate CN integration fixes #CNVS-1119, potentially supersedes https://gerrit.instructure.com/14501 with a little work. simpler flow that is more consistent with FFT signup. whether you click the "join course" button (popup) or go to the join url, the workflow is the same: 1. if you are authenticated, you just click the enroll button. 2. if you are not authenticated, you can either: 1. enter your (canvas/ldap) credentials and submit to join the course. 2. register and join the course (single form). you will then be dropped on the course dashboard in the pre_registered state just like a /register signup (you have to follow the link in your email to set a password). note that if open registration is turned off, option 2.2 is not available. other items of interest: * fix CSRF vulnerabilities where you can enroll authenticated users in open courses, or un-enroll them if you know their enrollment's UUID * move to shorter course-id-less route (w/ join code) * reuse UserController#create * handy openAsDialog behavior and embedded view mode * better json support in PseudonymSessionsController#create * extract markdown helper from mt * show "you need to confirm your email" popup when you land on the course page the first time (already showed on dashboard) test plan: 1. test the authenticated/unauthenticated scenarios above, for both the popup and join pages 2. regression test of /registration forms Change-Id: I0d8351695356d437bdbba72cb66c23ed268b0d1a Reviewed-on: https://gerrit.instructure.com/15902 Tested-by: Jenkins <jenkins@instructure.com> Reviewed-by: Joe Tanner <joe@instructure.com> QA-Review: Jon Jensen <jon@instructure.com>
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
RequestCache.cache('user_is_student', self, user, opts) do
Rails.cache.fetch([self, user, "course_user_is_student", opts[:include_future]].cache_key) do
add scope_assignments_to_student parameter scope_assignments_to_student can now be passed as an argument to assignment_groups_controller# index. if this argument is passed in as true, assignments will only be returned if they apply to the requesting user in the given grading period. in addition, when requesting multiple grading periods data for these endpoints: GET /api/v1/courses GET /api/v1/courses/:course_id GET /api/v1/users/:user_id/courses GET /api/v1/users/self/favorites/courses we now include the current_grading_period_id in the response. closes CNVS-26847 test plan 1: test scope_assignments_to_student - create a course, and enroll two students ( i will refer to these as Student A and Student B). - enable Multiple Grading Periods for the course. - create a grading period that starts Feb 1 and ends Feb 29. - create a grading period that starts March 1 and ends March 31. - create an assignment. assign it to Student A on March 15. Assign it to Student B on Feb 15. i'll refer to this as Assignment 1. - create another assignment. assign it to Student A on April 15. Assign it to Student B on March 15. i'll refer to this as Assigment 2. - as Student A, make a GET request to /api/v1/courses/:course_id/assignment_groups (replace :course_id with the id of the course created in the first step). include the following params with the request: format: 'json' include[]: 'assignments' include[]: 'assignment_visibility' include[]: 'overrides' grading_period_id: 5 #don't actually put 5 here, put the id of the March grading period - verify you get two assignments back (they will be nested in the response, under a key named "assignments"). the assignment IDs should match the ids of Assignment 1 and Assignment 2. - now make another GET request with Student A with the same params, but this time also add the following param: scope_assignments_to_student: true - verify you get only one assignment back. the assignment id should match the id of Assignment 1. test plan 2: verify current_grading_period_id in responses - hit the api/v1/courses, api/v1/courses/:id, api/v1/users/:user_id/courses, and api/v1/users/self/favorites/courses endpoints and pass in 'current_grading_period_scores' as an include[] argument. verify you get a `current_grading_period_id` in the response. - ping me with any questions :D Change-Id: I5f906a8cddbc63002cadf533c46c69de0d29830f Reviewed-on: https://gerrit.instructure.com/71169 Tested-by: Jenkins Reviewed-by: Keith T. Garner <kgarner@instructure.com> QA-Review: KC Naegle <knaegle@instructure.com> Product-Review: Spencer Olson <solson@instructure.com>
2016-01-29 03:18:18 +08:00
current_enrollments = user.cached_current_enrollments(
preload_dates: true, include_future: opts[:include_future])
current_enrollments.any? do |enrollment|
enrollment.course_id == self.id &&
enrollment.student_with_conditions?(
include_future: opts[:include_future],
include_fake_student: opts[:include_fake_student]
)
end
end
2011-02-01 09:57:29 +08:00
end
end
def user_has_been_instructor?(user)
return unless user
# enrollments should be on the course's shard
RequestCache.cache('user_has_been_instructor', self, user) do
self.shard.activate do
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.where(user_id: user).exists?
end
end
end
end
def user_has_been_admin?(user)
return unless user
RequestCache.cache('user_has_been_admin', self, user) do
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.where(user_id: user).exists?
end
end
end
def user_has_been_observer?(user)
return unless user
RequestCache.cache('user_has_been_observer', self, user) do
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.shard(self).active.where(user_id: user).exists?
end
end
end
def user_has_been_student?(user)
return unless user
RequestCache.cache('user_has_been_student', self, user) do
Rails.cache.fetch([self, user, "course_user_has_been_student"].cache_key) do
self.all_student_enrollments.where(user_id: user).exists?
end
end
end
def user_has_no_enrollments?(user)
return unless user
RequestCache.cache('user_has_no_enrollments', self, user) do
Rails.cache.fetch([self, user, "course_user_has_no_enrollments"].cache_key) do
!enrollments.where(user_id: user).exists?
end
end
end
# Public: Determine if a group weighting scheme should be applied.
#
# Returns boolean.
def apply_group_weights?
group_weighting_scheme == 'percent'
end
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
2011-02-01 09:57:29 +08:00
def membership_for_user(user)
self.enrollments.where(user_id: user).first if user
2011-02-01 09:57:29 +08:00
end
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 = a if a.root_account?
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?
self.name ||= t('missing_name', "Unnamed Course")
self.course_code = nil if 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?
if self.account_id && self.account_id_changed?
infer_root_account
2011-02-01 09:57:29 +08:00
end
if self.root_account_id && self.root_account_id_changed?
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
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')
if self.course_format && !['on_campus', 'online', 'blended'].include?(self.course_format)
self.course_format = nil
end
2011-02-01 09:57:29 +08:00
true
end
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
fields_to_possibly_rename = [:name]
2011-02-01 09:57:29 +08:00
sections.each do |section|
something_changed = false
fields_to_possibly_rename.each do |field|
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
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) }
CourseSection.where(:id => section).update_all(attr_hash)
2011-02-01 09:57:29 +08:00
end
end
end
2011-02-01 09:57:29 +08:00
def update_enrollments_later
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
2011-02-01 09:57:29 +08:00
def update_enrolled_users
self.shard.activate do
if self.workflow_state_changed?
if self.completed?
Enrollment.where(:course_id => self, :workflow_state => ['active', 'invited']).update_all(:workflow_state => 'completed', :completed_at => Time.now.utc)
appointment_participants.active.current.update_all(:workflow_state => 'deleted')
appointment_groups.each(&:clear_cached_available_slots!)
elsif self.deleted?
enroll_scope = Enrollment.where("course_id=? AND workflow_state<>'deleted'", self)
user_ids = enroll_scope.group(:user_id).pluck(:user_id).uniq
if user_ids.any?
enroll_scope.update_all(:workflow_state => 'deleted')
User.send_later_if_production(:update_account_associations, user_ids)
end
end
end
if self.root_account_id_changed?
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)
end
Enrollment.where(:course_id => self).update_all(:updated_at => Time.now.utc)
User.where(id: Enrollment.where(course_id: self).select(:user_id)).
update_all(updated_at: Time.now.utc)
end
2011-02-01 09:57:29 +08:00
end
2011-02-01 09:57:29 +08:00
def self_enrollment_allowed?
!!(self.account && self.account.self_enrollment_allowed?(self))
2011-02-01 09:57:29 +08:00
end
def self_enrollment_enabled?
self.self_enrollment? && self.self_enrollment_allowed?
end
2011-02-01 09:57:29 +08:00
def self_enrollment_code
read_attribute(:self_enrollment_code) || set_self_enrollment_code
end
def set_self_enrollment_code
return if !self_enrollment_enabled? || 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
def self_enrollment_limit_met?
self_enrollment_limit && self_enrolled_students.size >= self_enrollment_limit
end
def long_self_enrollment_code
@long_self_enrollment_code ||= Digest::MD5.hexdigest("#{uuid}_for_#{id}")
2011-02-01 09:57:29 +08:00
end
# still include the old longer format, since links may be out there
def self_enrollment_codes
[self_enrollment_code, long_self_enrollment_code]
end
allow displaing total grade as points for students fixes CNVS-9874 when teacher choses to show total grade as points in GB2, a setting is saved student grade summary page shows the total grade in same format if assignment groups are weighted, grade is displayed as a percentage again test plan: - new addition: - go to a course where GB2 is displaying totals as points BUT has no DB setting about show_point_totals (ask mike if you need help getting to this state) - as a student look at the grade summary page, total should be a percent - as a teacher in that class, go to GB2 and wait for 5 seconds - as that same student, go back to grade summary, total should be points now - as a teacher, change total grade to show as points in GB2 - when you return to the GB, even from a new browser, this should be the same - in GB, tooltip should show points if cell shows percent, and visa vera - as a student in that class, you should see your total grade as points - grade tooltip should show points if cell shows percent, and visa vera - switch to weighted assignment groups - total grade as a teacher and student should switch back to percent - switch back to non-weighted - total grade should stay a percent until explicitly changed back to points - GB2 weighting and points/percent switching should have no unintended effects on the GB - student grade summary page should display everything in a consistent manner Change-Id: Id0c4f496576c226eb7000d6684a37faf0b439359 Reviewed-on: https://gerrit.instructure.com/28780 Tested-by: Jenkins <jenkins@instructure.com> QA-Review: Caleb Guanzon <cguanzon@instructure.com> Reviewed-by: Simon Williams <simon@instructure.com> Product-Review: Mike Nomitch <mnomitch@instructure.com>
2014-01-15 01:06:03 +08:00
def update_show_total_grade_as_on_weighting_scheme_change
if group_weighting_scheme_changed? and self.group_weighting_scheme == 'percent'
self.show_total_grade_as_points = false
end
true
end
# to ensure permissions on the root folder are updated after hiding or showing the files tab
def touch_root_folder_if_necessary
if tab_configuration_changed?
files_tab_was_hidden = tab_configuration_was && tab_configuration_was.any? { |h| !h.blank? && h['id'] == TAB_FILES && h['hidden'] }
Folder.root_folders(self).each { |f| f.touch } if files_tab_was_hidden != tab_hidden?(TAB_FILES)
end
true
end
def update_final_scores_on_weighting_scheme_change
2011-02-01 09:57:29 +08:00
if @group_weighting_scheme_changed
self.class.connection.after_transaction_commit { self.recompute_student_scores }
2011-02-01 09:57:29 +08:00
end
end
def recompute_student_scores(student_ids = nil)
student_ids ||= self.student_ids
Rails.logger.info "GRADES: recomputing scores in course=#{global_id} students=#{student_ids.inspect}"
Enrollment.recompute_final_score(student_ids, self.id)
2011-02-01 09:57:29 +08:00
end
handle_asynchronously_if_production :recompute_student_scores,
:singleton => proc { |c| "recompute_student_scores:#{ c.global_id }" }
2011-02-01 09:57:29 +08:00
def home_page
self.wiki.front_page
2011-02-01 09:57:29 +08:00
end
2011-02-01 09:57:29 +08:00
def context_code
raise "DONT USE THIS, use .short_name instead" unless Rails.env.production?
2011-02-01 09:57:29 +08:00
end
2011-02-01 09:57:29 +08:00
def allow_media_comments?
true || [].include?(self.id)
end
2011-02-01 09:57:29 +08:00
def short_name
course_code
end
2011-02-01 09:57:29 +08:00
def short_name=(val)
write_attribute(:course_code, val)
end
def short_name_slug
CanvasTextHelper.truncate_text(short_name, :ellipsis => '')
end
2011-02-01 09:57:29 +08:00
# Allows the account to be set directly
belongs_to :account
def wiki_with_create
Wiki.wiki_for_context(self)
2011-02-01 09:57:29 +08:00
end
alias_method_chain :wiki, :create
2011-02-01 09:57:29 +08:00
# A universal lookup for all messages.
def messages
Message.for(self)
end
2011-02-01 09:57:29 +08:00
def do_complete
self.conclude_at ||= Time.now
end
def do_unconclude
self.conclude_at = nil
end
2011-02-01 09:57:29 +08:00
def do_offer
self.start_at ||= Time.now
send_later_if_production(:invite_uninvited_students)
end
def do_claim
self.workflow_state = 'claimed'
end
2011-02-01 09:57:29 +08:00
def invite_uninvited_students
self.enrollments.where(workflow_state: "creation_pending").each do |e|
2011-02-01 09:57:29 +08:00
e.invite!
end
end
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
2011-02-01 09:57:29 +08:00
state :claimed do
event :offer, :transitions_to => :available
event :complete, :transitions_to => :completed
end
2011-02-01 09:57:29 +08:00
state :available do
event :complete, :transitions_to => :completed
event :claim, :transitions_to => :claimed
2011-02-01 09:57:29 +08:00
end
state :completed do
event :unconclude, :transitions_to => :available
end
2011-02-01 09:57:29 +08:00
state :deleted
end
def api_state
return 'unpublished' if workflow_state == 'created' || workflow_state == 'claimed'
workflow_state
end
alias_method :destroy_permanently!, :destroy
2011-02-01 09:57:29 +08:00
def destroy
self.workflow_state = 'deleted'
save!
end
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
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
2011-02-01 09:57:29 +08:00
def self.require_assignment_groups(contexts)
courses = contexts.select{|c| c.is_a?(Course) }
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
2011-02-01 09:57:29 +08:00
def require_assignment_group
shard.activate do
return if Rails.cache.read(['has_assignment_group', self].cache_key)
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
2011-02-01 09:57:29 +08:00
def self.create_unique(uuid=nil, account_id=nil, root_account_id=nil)
uuid ||= CanvasSlug.generate_securish_uuid
course = where(uuid: uuid).first_or_initialize
2011-02-01 09:57:29 +08:00
course = Course.new if course.deleted?
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
2011-02-01 09:57:29 +08:00
def <=>(other)
self.id <=> other.id
end
2011-02-01 09:57:29 +08:00
def quota
Rails.cache.fetch(['default_quota', self].cache_key) do
storage_quota
2011-02-01 09:57:29 +08:00
end
end
def storage_quota_mb
storage_quota / 1.megabyte
end
def storage_quota_mb=(val)
self.storage_quota = val.try(:to_i).try(:megabytes)
end
def storage_quota_used_mb
Attachment.get_quota(self)[:quota_used].to_f / 1.megabyte
end
def storage_quota
return read_attribute(:storage_quota) ||
(self.account.default_storage_quota rescue nil) ||
Setting.get('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
2011-02-01 09:57:29 +08:00
def assign_uuid
self.uuid ||= CanvasSlug.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
entry.links << Atom::Link.new(:rel => 'alternate',
2011-02-01 09:57:29 +08:00
:href => "/#{context_url_prefix}/courses/#{self.id}")
end
end
2011-02-01 09:57:29 +08:00
set_policy do
given { |user, session| self.available? && (self.is_public || (self.is_public_to_auth_users && session.present? && session.has_key?(:user_id))) }
can :read and can :read_outcomes and can :read_syllabus
given { |user| self.available? && self.public_syllabus }
can :read_syllabus
RoleOverride.permissions.each do |permission, details|
given {|user| (self.active_enrollment_allows(user, permission, !details[:restrict_future_enrollments]) || self.account_membership_allows(user, permission)) &&
(!details[:if] || send(details[:if])) }
can permission
2011-02-01 09:57:29 +08:00
end
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]) }
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
given { |user| (self.available? || self.completed?) && user && user.cached_current_enrollments(preload_dates: true).any?{|e| e.course_id == self.id && [:active, :invited, :accepted, :completed].include?(e.state_based_on_date) } }
can :read and can :read_outcomes
student view; closes #6995 allows course admins to view the course from a student perspective. this is accessible from a button on the course/settings page. They should be able to interact with the course as a student would, including submitting homework and quizzes. Right now there is one student view student per course, so if the course has multiple administrators, they will all share the same student view student. There are a few things that won't work in student view the way the would for a normal student, most notably access to conversations is disabled. Additionally, any publicly visible action that the teacher takes while in student view will still be publicly visible -- for example if the teacher posts a discussion topic/reply as the student view student, it will be visible to the whole class. test-plan: - (the following should be tried both as a full teacher and as a section-limited course admin) - set up a few assignments, quizzes, discussions, and module progressions in a course. - enter student view from the coures settings page. - work through the things you set up above. - leave student view from the upper right corner of the page. - as a teacher you should be able to grade the fake student so that they can continue to progress. - the student should not show up in the course users list - the student should not show up at the account level at all: * total user list * statistics Change-Id: I886a4663777f3ef2bdae594349ff6da6981e14ed Reviewed-on: https://gerrit.instructure.com/9484 Tested-by: Hudson <hudson@instructure.com> Reviewed-by: Cody Cutrer <cody@instructure.com>
2012-03-14 04:08:19 +08:00
# Active students
given { |user|
available? && user &&
user.cached_current_enrollments(preload_dates: true).any? { |e|
e.course_id == id && e.participating_student?
}
}
can :read and can :participate_as_student and can :read_grades and can :read_outcomes
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} }
can :read_grades
given { |user| self.available? && self.teacherless? && user && user.cached_not_ended_enrollments.any?{|e| e.course_id == self.id && e.participating_student? } }
can :update and can :delete and RoleOverride.teacherless_permissions.each{|p| can p }
# Active admins (Teacher/TA/Designer)
given { |user| (self.available? || self.created? || self.claimed?) && user && user.cached_not_ended_enrollments.any?{|e| e.course_id == self.id && e.participating_admin? } }
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_unpublished_items and can :manage_feature_flags
# Teachers and Designers can delete/reset, but not TAs
given { |user| !self.deleted? && !self.sis_source_id && user && user.cached_not_ended_enrollments.any?{|e| e.course_id == self.id && e.participating_content_admin? } }
can :delete
given { |user| !self.deleted? && user && user.cached_not_ended_enrollments.any?{|e| e.course_id == self.id && e.participating_content_admin? } }
can :reset_content
# Student view student
given { |user| user && user.fake_student? && user.cached_not_ended_enrollments.any?{ |e| e.course_id == self.id } }
can :read and can :participate_as_student and can :read_grades and can :read_outcomes
# Prior users
given do |user|
(available? || completed?) && user &&
prior_enrollments.for_user(user).any?{|e| !e.inactive?}
end
can :read, :read_outcomes
# Admin (Teacher/TA/Designer) of a concluded course
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, :use_student_view, :read_outcomes, :view_unpublished_items]
# overrideable permissions for concluded users
RoleOverride.concluded_permission_types.each do |permission|
given do |user|
!self.deleted? && user &&
(prior_enrollments.for_user(user).any?{|e| !e.inactive? && e.has_permission_to?(permission)} ||
user.cached_not_ended_enrollments.any? do |e|
e.course_id == self.id && e.completed? && e.has_permission_to?(permission)
end
)
end
can permission
end
# Teacher or Designer of a concluded course
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
can :delete
# Student of a concluded course
given do |user|
(self.available? || self.completed?) && user &&
(prior_enrollments.for_user(user).any?{|e| !e.inactive? && (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_outcomes
# Admin
given { |user| self.account_membership_allows(user) }
can :read_as_admin and can :view_unpublished_items
given { |user| self.account_membership_allows(user, :manage_courses) }
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_unpublished_items and can :manage_feature_flags
given { |user| self.account_membership_allows(user, :read_course_content) }
can :read and can :read_outcomes
given { |user| !self.deleted? && self.sis_source_id && self.account_membership_allows(user, :manage_sis) }
can :delete
# Admins with read_roster can see prior enrollments (can't just check read_roster directly,
# because students can't see prior enrollments)
given { |user| self.account_membership_allows(user, :read_roster) }
can :read_prior_roster
2011-02-01 09:57:29 +08:00
end
def allows_gradebook_uploads?
!large_roster?
end
# Public: Determine if SpeedGrader is enabled for the Course.
#
# Returns a boolean.
def allows_speed_grader?
!large_roster?
end
def active_enrollment_allows(user, permission, allow_future=true)
2011-02-01 09:57:29 +08:00
return false unless user && permission
2011-02-01 09:57:29 +08:00
@enrollment_lookup ||= {}
@enrollment_lookup[user.id] ||= shard.activate do
self.enrollments.active_or_pending.for_user(user).reject { |e| [:inactive, :completed].include?(e.state_based_on_date)}
end
@enrollment_lookup[user.id].any? {|e| (allow_future || e.state_based_on_date == :active) && e.has_permission_to?(permission) }
2011-02-01 09:57:29 +08:00
end
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
Course.where(:id => ids).preload(:current_enrollments).to_a
2011-02-01 09:57:29 +08:00
end
def end_at
conclude_at
end
def end_at_changed?
conclude_at_changed?
end
def recently_ended?
conclude_at && conclude_at < Time.now.utc && conclude_at > 1.month.ago
end
# Public: Return true if the end date for a course (or its term, if the course doesn't have one) has passed.
#
# Returns boolean or nil.
def soft_concluded?
now = Time.now
return end_at < now if end_at && restrict_enrollments_to_course_dates
enrollment_term.end_at && enrollment_term.end_at < now
end
def soft_conclude!
self.conclude_at = Time.now
self.restrict_enrollments_to_course_dates = true
end
def concluded?
completed? || soft_concluded?
end
def account_chain(include_site_admin: false)
@account_chain ||= Account.account_chain(account_id)
result = @account_chain.dup
Account.add_site_admin_to_chain!(result) if include_site_admin
result
end
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
def account_users_for(user)
return [] unless user
@associated_account_ids ||= (self.associated_accounts + root_account.account_chain(include_site_admin: true)).
uniq.map { |a| a.active? ? a.id : nil }.compact
@account_users ||= {}
@account_users[user.global_id] ||= 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
AccountUser.where(:account_id => account_chain_ids, :user_id => user).to_a
end
end
@account_users[user.global_id] ||= []
@account_users[user.global_id]
end
def account_membership_allows(user, permission = nil)
return false unless user
2011-02-01 09:57:29 +08:00
@membership_allows ||= {}
add support for applying role overrides to just self or just descendants * wrap RoleOverride#permission_for with enabled_for? that also takes a context of where the permission is being applied, and recalculates its enabled-ness relative to that context; use that for checking account admin and enrollment permissions * refactor User#can_masquerade to properly check for descendant permissions test plan: * create a custom role in site admin. give it permission to manage permissions * in script/console, find that override and set apply_to_self=false * add a user to that role, and login as that user * the user should not be able to change permissions in site admin * the user should be able to change permissions in the default account * add another role in site admin. give it permission to manage permissions * in script/console, find the override and set apply_to_self=true, apply_to_descendants=false * add another user to that role, and login as that user * the user should be able to change permissions in site admin * the user should not be able to change permissions in the default account * the first user should not be able to masquerade as the second user and vice versa * an Account Admin should be able to masquerade as either user * create a custom role in the default account, give it permission to manage permissions, and add a user to that role * the first user should be able to masquerade as the new user; the second user should not be able to masquerade as the new user * general regression tests on permissions and masquerading Change-Id: I20a1183b7dfec419634a92cda498f245187060ef Reviewed-on: https://gerrit.instructure.com/15896 Reviewed-by: Cody Cutrer <cody@instructure.com> QA-Review: Cody Cutrer <cody@instructure.com> Tested-by: Cody Cutrer <cody@instructure.com>
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
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
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)
else
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)
end
end
message
end
def grade_publishing_statuses
found_statuses = [].to_set
student view; closes #6995 allows course admins to view the course from a student perspective. this is accessible from a button on the course/settings page. They should be able to interact with the course as a student would, including submitting homework and quizzes. Right now there is one student view student per course, so if the course has multiple administrators, they will all share the same student view student. There are a few things that won't work in student view the way the would for a normal student, most notably access to conversations is disabled. Additionally, any publicly visible action that the teacher takes while in student view will still be publicly visible -- for example if the teacher posts a discussion topic/reply as the student view student, it will be visible to the whole class. test-plan: - (the following should be tried both as a full teacher and as a section-limited course admin) - set up a few assignments, quizzes, discussions, and module progressions in a course. - enter student view from the coures settings page. - work through the things you set up above. - leave student view from the upper right corner of the page. - as a teacher you should be able to grade the fake student so that they can continue to progress. - the student should not show up in the course users list - the student should not show up at the account level at all: * total user list * statistics Change-Id: I886a4663777f3ef2bdae594349ff6da6981e14ed Reviewed-on: https://gerrit.instructure.com/9484 Tested-by: Hudson <hudson@instructure.com> Reviewed-by: Cody Cutrer <cody@instructure.com>
2012-03-14 04:08:19 +08:00
enrollments = student_enrollments.not_fake.group_by do |e|
found_statuses.add e.grade_publishing_status
grade_publishing_status_translation(e.grade_publishing_status, e.grade_publishing_message)
end
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 SisPseudonym.for(user, self).nil? && format_settings[:requires_publishing_pseudonym]
return true
end
def publish_final_grades(publishing_user, user_ids_to_publish = nil)
# we want to set all the publishing statuses to 'pending' immediately,
# and then as a delayed job, actually go publish them.
raise "final grade publishing disabled" unless Canvas::Plugin.find!('grade_export').enabled?
settings = Canvas::Plugin.find!('grade_export').settings
last_publish_attempt_at = Time.now.utc
scope = self.student_enrollments.not_fake
scope = scope.where(user_id: user_ids_to_publish) if user_ids_to_publish
scope.update_all(:grade_publishing_status => "pending",
:grade_publishing_message => nil,
:last_publish_attempt_at => last_publish_attempt_at)
send_later_if_production(:send_final_grades_to_endpoint, publishing_user, user_ids_to_publish)
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?
end
def send_final_grades_to_endpoint(publishing_user, user_ids_to_publish = nil)
# actual grade publishing logic is here, but you probably want
# 'publish_final_grades'
self.recompute_student_scores_without_send_later(user_ids_to_publish)
enrollments = self.student_enrollments.not_fake.eager_load(:user).preload(:course_section).order_by_sortable_name
enrollments = enrollments.where(user_id: user_ids_to_publish) if user_ids_to_publish
errors = []
posts_to_make = []
posted_enrollment_ids = []
all_enrollment_ids = enrollments.map(&:id)
begin
raise "final grade publishing disabled" unless Canvas::Plugin.find!('grade_export').enabled?
settings = Canvas::Plugin.find!('grade_export').settings
raise "endpoint undefined" if settings[:publish_endpoint].blank?
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]
publishing_pseudonym = SisPseudonym.for(publishing_user, self)
raise "publishing disallowed for this publishing user" if publishing_pseudonym.nil? and format_settings[:requires_publishing_pseudonym]
callback = Course.valid_grade_export_types[settings[:format_type]][:callback]
posts_to_make = callback.call(self, enrollments, publishing_user, publishing_pseudonym)
rescue => e
Enrollment.where(:id => all_enrollment_ids).update_all(:grade_publishing_status => "error", :grade_publishing_message => e.to_s)
raise e
end
posts_to_make.each do |enrollment_ids, res, mime_type, headers={}|
begin
posted_enrollment_ids += enrollment_ids
if res
SSLCommon.post_data(settings[:publish_endpoint], res, mime_type, headers )
end
Enrollment.where(:id => enrollment_ids).update_all(:grade_publishing_status => (should_kick_off_grade_publishing_timeout? ? "publishing" : "published"), :grade_publishing_message => nil)
rescue => e
errors << e
Enrollment.where(:id => enrollment_ids).update_all(:grade_publishing_status => "error", :grade_publishing_message => e.to_s)
end
end
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)
raise errors[0] if errors.size > 0
end
def generate_grade_publishing_csv_output(enrollments, publishing_user, publishing_pseudonym)
enrollment_ids = []
res = CSV.generate do |csv|
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"]
row << "grade" if self.grading_standard_enabled?
csv << row
enrollments.each do |enrollment|
next unless enrollment.computed_final_score
enrollment_ids << enrollment.id
pseudonym_sis_ids = enrollment.user.pseudonyms.active.where(account_id: self.root_account_id).pluck(:sis_user_id)
pseudonym_sis_ids = [nil] if pseudonym_sis_ids.empty?
pseudonym_sis_ids.each do |pseudonym_sis_id|
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]
row << enrollment.computed_final_grade if self.grading_standard_enabled?
csv << row
end
end
end
return [[enrollment_ids, res, "text/csv"]]
end
def expire_pending_grade_publishing_statuses(last_publish_attempt_at)
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.")
end
def gradebook_to_csv_in_background(filename, user, options = {})
progress = progresses.build(tag: 'gradebook_to_csv')
progress.save!
exported_gradebook = gradebook_csvs.where(user_id: user).first_or_initialize
attachment = user.attachments.build
attachment.filename = filename
attachment.content_type = 'text/csv'
attachment.file_state = 'hidden'
attachment.save!
exported_gradebook.attachment = attachment
exported_gradebook.progress = progress
exported_gradebook.save!
progress.process_job(
self,
:generate_csv,
{ preserve_method_args: true },
user,
options,
attachment
)
{attachment_id: attachment.id, progress_id: progress.id}
end
def generate_csv(user, options, attachment)
csv = GradebookExporter.new(self, user, options).to_csv
create_attachment(attachment, csv)
end
def create_attachment(attachment, csv)
attachment.uploaded_data = StringIO.new(csv)
attachment.content_type = 'text/csv'
attachment.save!
end
# 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
def grading_standard_title
if self.grading_standard_enabled?
self.grading_standard.try(:title) || t('default_grading_scheme_name', "Default Grading Scheme")
else
nil
end
end
def score_to_grade(score)
return nil unless self.grading_standard_enabled? && score
gpa scale grading standard fixes CNVS-8931 makes a new grading standard type called "gpa scale" only allows for grades on the GPA scale modifies GB2 dom elements if gpa scaled modifies rubric_assessment response to properly change grade adds dialog when selecting gpa scale grading type refactors grading_standard.rb to use instance methods (not class) added related tests test plan: - As a Teacher, create an assignment with GPA Scaled grading type - Enter a grading scheme like the one in grading_standard.rb/default_gpa_scheme - Go to GB2 and grade this assignment - grades not in the schema should be "-" - letters that aren't in the scheme should be a "-" - if "3.0" is in the grading standard an input of 3 should switch to 3.0 automatically - letters in the scheme should work upper or lower case - setting default grade should work with the same rules - dom elements of this assignment should have a special class - Other assignments should work as usual in GB2 - Go to Assignment Edit Page - when selecting Display Grade as "GPA Scale" a ? icon should pop up - clicking this icon should open a modal with sane text - Go to GB1 - Grading an assignment should work like GB2 - GB1 should work as expected for non GPA Scale Assignments - Go to the SpeedGrader - grading assignments that are GPA Scaled should work similarly to GB2 - SpeedGrader should work as expected for non GPA Scale Assignments - Enable Rubric based grading on an assignment - once the rubric is filled out in SpeedGrader, the correctly rounded GPA should be inserted on save - once the rubric is filled out in Submission Edit page, the correctly rounded GPA should be inserted on save - rubrics should work as expected for non GPA Scale Assignments - Other areas in which GradingStandards are used should work as expected Change-Id: Ide1ea5ca13a70116ae3535b2c8e105ece79a34c8 Reviewed-on: https://gerrit.instructure.com/29742 Reviewed-by: Simon Williams <simon@instructure.com> QA-Review: Amber Taniuchi <amber@instructure.com> Tested-by: Jenkins <jenkins@instructure.com> Product-Review: Hilary Scharton <hilary@instructure.com> Product-Review: Mike Nomitch <mnomitch@instructure.com>
2014-02-05 01:57:32 +08:00
if grading_standard
grading_standard.score_to_grade(score)
else
GradingStandard.default_instance.score_to_grade(score)
end
end
2011-02-01 09:57:29 +08:00
def active_course_level_observers
participating_observers.observing_full_course(self.id)
end
def participants(include_observers=false, opts={})
participants = []
participants += participating_admins
applicable_students = if opts[:excluded_user_ids]
participating_students.reject{|p| opts[:excluded_user_ids].include?(p.id)}
else
participating_students
end
participants += applicable_students
if include_observers
participants += User.observing_students_in_course(applicable_students.map(&:id), self.id)
participants += User.observing_full_course(self.id)
end
participants.uniq
2011-02-01 09:57:29 +08:00
end
def enroll_user(user, type='StudentEnrollment', opts={})
2011-02-01 09:57:29 +08:00
enrollment_state = opts[:enrollment_state]
enrollment_state ||= 'active' if type == 'ObserverEnrollment'
2011-02-01 09:57:29 +08:00
section = opts[:section]
limit_privileges_to_course_section = opts[:limit_privileges_to_course_section]
associated_user_id = opts[:associated_user_id]
role = opts[:role] || Enrollment.get_built_in_role_for_type(type)
start_at = opts[:start_at]
end_at = opts[:end_at]
self_enrolled = opts[:self_enrolled]
2011-02-01 09:57:29 +08:00
section ||= self.default_section
enrollment_state ||= self.available? ? "invited" : "creation_pending"
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
Course.unique_constraint_retry do
if opts[:allow_multiple_enrollments]
e = self.all_enrollments.where(user_id: user, type: type, role_id: role.id, associated_user_id: associated_user_id, course_section_id: section.id).first
else
# order by course_section_id<>section.id so that if there *is* an existing enrollment for this section, we get it (false orders before true)
e = self.all_enrollments.
where(user_id: user, type: type, role_id: role.id, associated_user_id: associated_user_id).
order("course_section_id<>#{section.id}").
first
end
if e && (!e.active? || opts[:force_update])
e.already_enrolled = true
if e.workflow_state == 'deleted'
e.sis_batch_id = nil
e.sis_source_id = nil
end
e.attributes = {
:course_section => section,
:workflow_state => e.is_a?(StudentViewEnrollment) ? 'active' : enrollment_state
} if e.completed? || e.rejected? || e.deleted? || e.workflow_state != enrollment_state
end
# if we're reusing an enrollment and +limit_privileges_to_course_section+ was supplied, apply it
e.limit_privileges_to_course_section = limit_privileges_to_course_section if e unless limit_privileges_to_course_section.nil?
# 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(
:user => user,
:course => self,
:course_section => section,
:workflow_state => enrollment_state,
:limit_privileges_to_course_section => limit_privileges_to_course_section)
end
e.associated_user_id = associated_user_id
e.role = role
e.self_enrolled = self_enrolled
e.start_at = start_at
e.end_at = end_at
if e.changed?
transaction do
# without this, inserting/updating on enrollments will share lock the course, but then
# it tries to touch the course, which will deadlock with another transaction doing the
# same thing.
self.lock!(:no_key_update)
if opts[:no_notify]
e.save_without_broadcasting
else
e.save
end
end
end
e.user = user
self.claim if self.created? && e && e.admin?
unless opts[:skip_touch_user]
e.associated_user.try(:touch)
user.touch
end
user.reload
e
end
end
def enroll_student(user, opts={})
enroll_user(user, 'StudentEnrollment', opts)
2011-02-01 09:57:29 +08:00
end
def self_enroll_student(user, opts = {})
enrollment = enroll_student(user, opts.merge(:self_enrolled => true))
self enrollment refactor to facilitate CN integration fixes #CNVS-1119, potentially supersedes https://gerrit.instructure.com/14501 with a little work. simpler flow that is more consistent with FFT signup. whether you click the "join course" button (popup) or go to the join url, the workflow is the same: 1. if you are authenticated, you just click the enroll button. 2. if you are not authenticated, you can either: 1. enter your (canvas/ldap) credentials and submit to join the course. 2. register and join the course (single form). you will then be dropped on the course dashboard in the pre_registered state just like a /register signup (you have to follow the link in your email to set a password). note that if open registration is turned off, option 2.2 is not available. other items of interest: * fix CSRF vulnerabilities where you can enroll authenticated users in open courses, or un-enroll them if you know their enrollment's UUID * move to shorter course-id-less route (w/ join code) * reuse UserController#create * handy openAsDialog behavior and embedded view mode * better json support in PseudonymSessionsController#create * extract markdown helper from mt * show "you need to confirm your email" popup when you land on the course page the first time (already showed on dashboard) test plan: 1. test the authenticated/unauthenticated scenarios above, for both the popup and join pages 2. regression test of /registration forms Change-Id: I0d8351695356d437bdbba72cb66c23ed268b0d1a Reviewed-on: https://gerrit.instructure.com/15902 Tested-by: Jenkins <jenkins@instructure.com> Reviewed-by: Joe Tanner <joe@instructure.com> QA-Review: Jon Jensen <jon@instructure.com>
2012-12-07 14:28:37 +08:00
enrollment.accept(:force)
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
def enroll_ta(user, opts={})
enroll_user(user, 'TaEnrollment', opts)
2011-02-01 09:57:29 +08:00
end
def enroll_designer(user, opts={})
enroll_user(user, 'DesignerEnrollment', opts)
end
def enroll_teacher(user, opts={})
enroll_user(user, 'TeacherEnrollment', opts)
2011-02-01 09:57:29 +08:00
end
def resubmission_for(asset)
asset.ignores.where(:purpose => 'grading', :permanent => false).delete_all
instructors.order(:id).each(&:touch)
2011-02-01 09:57:29 +08:00
end
def grading_standard_enabled
!!self.grading_standard_id
end
alias_method :grading_standard_enabled?, :grading_standard_enabled
def grading_standard_enabled=(val)
if Canvas::Plugin.value_to_boolean(val)
self.grading_standard_id ||= 0
else
self.grading_standard = self.grading_standard_id = nil
end
end
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'
t('wiki_permissions.only_teachers', 'Only Teachers')
2011-02-01 09:57:29 +08:00
when 'teachers,students'
t('wiki_permissions.teachers_students', 'Teacher and Students')
2011-02-01 09:57:29 +08:00
when 'teachers,students,public'
t('wiki_permissions.all', 'Anyone')
2011-02-01 09:57:29 +08:00
else
t('wiki_permissions.only_teachers', 'Only Teachers')
2011-02-01 09:57:29 +08:00
end
end
def default_section(opts = {})
section = course_sections.active.where(default_section: true).first
if !section && opts[:include_xlists]
section = CourseSection.active.where(:nonxlist_course_id => self).order(:id).first
end
if !section && !opts[:no_create]
section = course_sections.build
section.default_section = true
section.course = self
section.root_account_id = self.root_account_id
Shackles.activate(:master) do
section.save unless new_record?
end
end
section
2011-02-01 09:57:29 +08:00
end
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
def file_structure_for(user)
User.file_structure_for(self, user)
2011-02-01 09:57:29 +08:00
end
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
next if context.respond_to?(:context) && to_context == context.context
next if to_context.respond_to?(:context) && context == to_context.context
if context.grants_right?(user, :manage_content)
2011-02-01 09:57:29 +08:00
html = self.migrate_content_links(html, context, to_context, content_types_to_copy)
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
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
account.turnitin_settings
2011-02-01 09:57:29 +08:00
end
2011-02-01 09:57:29 +08:00
def turnitin_pledge
self.account.closest_turnitin_pledge
end
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
2011-02-01 09:57:29 +08:00
def turnitin_enabled?
!!self.turnitin_settings
end
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)
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 ||= {}
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
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
next(new_url) if supported_types && !supported_types.include?(match.type)
if match.obj_id
new_id = @merge_mappings["#{match.obj_class.name.underscore}_#{match.obj_id}"]
next(new_url) unless rewriter.user_can_view_content? { match.obj_class.where(id: match.obj_id).first }
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}")
end
2011-02-01 09:57:29 +08:00
end
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
html = rewriter.translate_content(html)
2011-02-01 09:57:29 +08:00
if !limit_migrations_to_listed_types
# 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
# 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-02-01 09:57:29 +08:00
html
end
2011-02-01 09:57:29 +08:00
def migrate_content_links(html, from_course)
Course.migrate_content_links(html, from_course, self)
end
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
2011-02-01 09:57:29 +08:00
def warn_merge_result(text)
log_merge_result(text)
end
2011-02-01 09:57:29 +08:00
def bool_res(val)
Canvas::Plugin.value_to_boolean(val)
2011-02-01 09:57:29 +08:00
end
attr_accessor :full_migration_hash, :external_url_hash,
:folder_name_lookups, :assignment_group_no_drop_assignments, :migration_results
2011-02-01 09:57:29 +08:00
def backup_to_json
backup.to_json
end
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
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
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
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
def copy_attachments_from_course(course, options={})
root_folder = Folder.root_folders(self).first
root_folder_name = root_folder.name + '/'
ce = options[:content_export]
cm = options[:content_migration]
attachments = course.attachments.where("file_state <> 'deleted'").to_a
total = attachments.count + 1
Attachment.skip_media_object_creation do
attachments.each_with_index do |file, i|
cm.update_import_progress((i.to_f/total) * 18.0) if cm && (i % 10 == 0)
if !ce || ce.export_object?(file)
begin
new_file = file.clone_for(self, nil, :overwrite => true)
cm.add_attachment_path(file.full_display_path.gsub(/\A#{root_folder_name}/, ''), new_file.migration_id)
new_folder_id = merge_mapped_id(file.folder)
if file.folder && file.folder.parent_folder_id.nil?
new_folder_id = root_folder.id
end
# 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
old_folders << old_folders.last.parent_folder
new_folders << old_folders.last.clone_for(self, nil, options.merge({:include_subcontent => false}))
end
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.where(name: folder.name).first
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
new_file.save_without_broadcasting!
cm.add_imported_item(new_file)
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), $!)
end
end
end
end
end
2011-02-01 09:57:29 +08:00
def self.clonable_attributes
[ :group_weighting_scheme, :grading_standard_id, :is_public, :public_syllabus,
:allow_student_wiki_edits, :show_public_context_messages,
:syllabus_body, :allow_student_forum_attachments, :lock_all_announcements,
:default_wiki_editing_roles, :allow_student_organized_groups,
:default_view, :show_total_grade_as_points,
:show_all_discussion_entries, :open_enrollment,
:storage_quota, :tab_configuration, :allow_wiki_comments,
:turnitin_comments, :self_enrollment, :license, :indexed, :locale,
:hide_final_grade, :hide_distribution_graphs,
:allow_student_discussion_topics, :allow_student_discussion_editing, :lock_all_announcements,
:organize_epub_by_content_type ]
2011-02-01 09:57:29 +08:00
end
def set_course_dates_if_blank(shift_options)
unless Canvas::Plugin.value_to_boolean(shift_options[:remove_dates])
self.start_at ||= shift_options[:default_start_at]
self.conclude_at ||= shift_options[:default_conclude_at]
end
end
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
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
2011-02-01 09:57:29 +08:00
def self.serialization_excludes; [:uuid]; end
def section_visibilities_for(user, opts={})
RequestCache.cache('section_visibilities_for', user, self) do
shard.activate do
Rails.cache.fetch(['section_visibilities_for', user, self].cache_key) do
workflow_not = opts[:excluded_workflows] || 'deleted'
enrollments = Enrollment.select([
:course_section_id,
:limit_privileges_to_course_section,
:type,
:associated_user_id])
.where("user_id=? AND course_id=?", user, self)
.where.not(workflow_state: workflow_not)
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
end
end
def visibility_limited_to_course_sections?(user, visibilities = section_visibilities_for(user))
visibilities.all?{|s| s[:limit_privileges_to_course_section] }
2011-02-01 09:57:29 +08:00
end
# returns a scope, not an array of users/enrollments
def students_visible_to(user, include: nil)
scope = case include
when :priors
self.all_students
when :inactive
self.admin_visible_students
else
self.students
end
self.apply_enrollment_visibility(scope, user, nil, include: include)
end
# can apply to user scopes as well if through enrollments (e.g. students, teachers)
def apply_enrollment_visibility(scope, user, section_ids=nil, include: nil)
if section_ids
scope = scope.where('enrollments.course_section_id' => section_ids.to_a)
end
visibilities = section_visibilities_for(user)
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
scope = scope.where("enrollments.type<>'StudentViewEnrollment'")
student view; closes #6995 allows course admins to view the course from a student perspective. this is accessible from a button on the course/settings page. They should be able to interact with the course as a student would, including submitting homework and quizzes. Right now there is one student view student per course, so if the course has multiple administrators, they will all share the same student view student. There are a few things that won't work in student view the way the would for a normal student, most notably access to conversations is disabled. Additionally, any publicly visible action that the teacher takes while in student view will still be publicly visible -- for example if the teacher posts a discussion topic/reply as the student view student, it will be visible to the whole class. test-plan: - (the following should be tried both as a full teacher and as a section-limited course admin) - set up a few assignments, quizzes, discussions, and module progressions in a course. - enter student view from the coures settings page. - work through the things you set up above. - leave student view from the upper right corner of the page. - as a teacher you should be able to grade the fake student so that they can continue to progress. - the student should not show up in the course users list - the student should not show up at the account level at all: * total user list * statistics Change-Id: I886a4663777f3ef2bdae594349ff6da6981e14ed Reviewed-on: https://gerrit.instructure.com/9484 Tested-by: Hudson <hudson@instructure.com> Reviewed-by: Cody Cutrer <cody@instructure.com>
2012-03-14 04:08:19 +08:00
end
if include == :inactive && ![:full, :sections].include?(visibility_level)
scope = scope.where("enrollments.workflow_state <> 'inactive'") # don't really include inactive unless user is able to view them
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)
case visibility_level
when :full, :limited then scope
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.none
end
end
def users_visible_to(user, include_priors=false, opts={})
visibilities = section_visibilities_for(user)
visibility = enrollment_visibility_level_for(user, visibilities)
scope = if include_priors
users
elsif opts[:include_inactive] && [:full, :sections].include?(visibility)
all_current_users
else
current_users
end
scope = scope.where(:enrollments => {:workflow_state => opts[:enrollment_state]}) if opts[:enrollment_state]
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)
case visibility
when :full then scope
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]) })
when :limited then scope.where("enrollments.type IN ('StudentEnrollment', 'TeacherEnrollment', 'TaEnrollment', 'StudentViewEnrollment')")
else scope.none
end
end
# returns :all, :none, or an array of section ids
def course_section_visibility(user, opts={})
visibilities = section_visibilities_for(user, opts)
visibility = enrollment_visibility_level_for(user, visibilities)
if [:full, :limited, :restricted, :sections].include?(visibility)
if visibility == :sections || visibilities.all?{ |v| ['StudentEnrollment', 'StudentViewEnrollment', 'ObserverEnrollment'].include? v[:type] }
visibilities.map{ |s| s[:course_section_id] }
else
:all
end
else
:none
end
end
def sections_visible_to(user, sections = active_course_sections, opts={})
is_scope = sections.respond_to?(:where)
section_ids = course_section_visibility(user, opts)
case section_ids
when :all
sections
when :none
# return an empty set, but keep it as a scope for downstream consistency
is_scope ? sections.none : []
when Array
is_scope ? sections.where(:id => section_ids) : sections.select{|section| section_ids.include?(section.id)}
end
end
# derived from policy for Group#grants_right?(user, :read)
def groups_visible_to(user, groups = active_groups)
if grants_any_right?(user, :manage_groups, :view_group_pages)
# course-wide permissions; all groups are visible
groups
else
# no course-wide permissions; only groups the user is a member of are
# visible
groups.joins(:participating_group_memberships).
where('group_memberships.user_id' => user)
end
end
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, :read_as_admin]
granted_permissions = self.granted_rights(user, *permissions)
if granted_permissions.empty?
:restricted # e.g. observer, can only see admins in the course
elsif visibilities.present? && visibility_limited_to_course_sections?(user, visibilities)
:sections
elsif granted_permissions.eql? [:read_roster]
:limited
2011-02-01 09:57:29 +08:00
else
:full
2011-02-01 09:57:29 +08:00
end
end
def invited_count_visible_to(user)
scope = users_visible_to(user).
where("enrollments.workflow_state in ('invited', 'creation_pending') AND enrollments.type != 'StudentViewEnrollment'")
scope.select('users.id').uniq.count
end
def published?
self.available? || self.completed?
end
2011-02-01 09:57:29 +08:00
def unpublished?
self.created? || self.claimed?
end
2011-02-01 09:57:29 +08:00
def tab_configuration
super.map {|h| h.with_indifferent_access } rescue []
end
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_MODULES = 10
TAB_FILES = 11
TAB_CONFERENCES = 12
TAB_SETTINGS = 13
TAB_ANNOUNCEMENTS = 14
TAB_OUTCOMES = 15
TAB_COLLABORATIONS = 16
2011-02-01 09:57:29 +08:00
def self.default_tabs
makes section tabs accessible outside of render logic fixes CNVS-20120 - Updates UsersController#user_dashboard to add course favorite information to js_env.Add icon info to Course.default_tabs.Update - I18nUtilities helper methods to use `I18n.t` instead of just `t`, so that the module can be included outside of a decendent of ActionView.Add - SectionTabHelper. Includes method for rendering `section_tabs` to html, a separate method (`available_section_tab`) so section tabs can be accessed without rendering anything to the page, and a new class, - SectionTabTag, which is responsible for constructing html to render a section tab.Add SectionTabPresenter, which takes a tab object (just a hash; accessed via a context class’s `.default_tabs` method) and translates it into an object for the view. - Add `CourseForMenuPresenter`, which translates a course into a hash including only information necessary for construction of the section tab menu, or the new dashboard card. - Add `AvailableSectionTabs` to encapsulate available_section_tabs logic.  test plan: - Validate that existing section menu navigation with a course context works. - Validate that new dashboard cards show correct course information, as well as correct links. Change-Id: Ief2cfc350991758e019a8a56ce23d29634470dd0 Reviewed-on: https://gerrit.instructure.com/54578 Reviewed-by: Simon Williams <simon@instructure.com> QA-Review: Adam Stone <astone@instructure.com> Tested-by: Jenkins Product-Review: Simon Williams <simon@instructure.com>
2015-05-20 01:13:32 +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,
:screenreader => t("Course Announcements"),
makes section tabs accessible outside of render logic fixes CNVS-20120 - Updates UsersController#user_dashboard to add course favorite information to js_env.Add icon info to Course.default_tabs.Update - I18nUtilities helper methods to use `I18n.t` instead of just `t`, so that the module can be included outside of a decendent of ActionView.Add - SectionTabHelper. Includes method for rendering `section_tabs` to html, a separate method (`available_section_tab`) so section tabs can be accessed without rendering anything to the page, and a new class, - SectionTabTag, which is responsible for constructing html to render a section tab.Add SectionTabPresenter, which takes a tab object (just a hash; accessed via a context class’s `.default_tabs` method) and translates it into an object for the view. - Add `CourseForMenuPresenter`, which translates a course into a hash including only information necessary for construction of the section tab menu, or the new dashboard card. - Add `AvailableSectionTabs` to encapsulate available_section_tabs logic.  test plan: - Validate that existing section menu navigation with a course context works. - Validate that new dashboard cards show correct course information, as well as correct links. Change-Id: Ief2cfc350991758e019a8a56ce23d29634470dd0 Reviewed-on: https://gerrit.instructure.com/54578 Reviewed-by: Simon Williams <simon@instructure.com> QA-Review: Adam Stone <astone@instructure.com> Tested-by: Jenkins Product-Review: Simon Williams <simon@instructure.com>
2015-05-20 01:13:32 +08:00
:icon => 'icon-announcement'
}, {
:id => TAB_ASSIGNMENTS,
:label => t('#tabs.assignments', "Assignments"),
:css_class => 'assignments',
:href => :course_assignments_path,
:screenreader => t('#tabs.course_assignments', "Course Assignments"),
:icon => 'icon-assignment'
}, {
:id => TAB_DISCUSSIONS,
:label => t('#tabs.discussions', "Discussions"),
:css_class => 'discussions',
:href => :course_discussion_topics_path,
:screenreader => t("Course Discussions"),
makes section tabs accessible outside of render logic fixes CNVS-20120 - Updates UsersController#user_dashboard to add course favorite information to js_env.Add icon info to Course.default_tabs.Update - I18nUtilities helper methods to use `I18n.t` instead of just `t`, so that the module can be included outside of a decendent of ActionView.Add - SectionTabHelper. Includes method for rendering `section_tabs` to html, a separate method (`available_section_tab`) so section tabs can be accessed without rendering anything to the page, and a new class, - SectionTabTag, which is responsible for constructing html to render a section tab.Add SectionTabPresenter, which takes a tab object (just a hash; accessed via a context class’s `.default_tabs` method) and translates it into an object for the view. - Add `CourseForMenuPresenter`, which translates a course into a hash including only information necessary for construction of the section tab menu, or the new dashboard card. - Add `AvailableSectionTabs` to encapsulate available_section_tabs logic.  test plan: - Validate that existing section menu navigation with a course context works. - Validate that new dashboard cards show correct course information, as well as correct links. Change-Id: Ief2cfc350991758e019a8a56ce23d29634470dd0 Reviewed-on: https://gerrit.instructure.com/54578 Reviewed-by: Simon Williams <simon@instructure.com> QA-Review: Adam Stone <astone@instructure.com> Tested-by: Jenkins Product-Review: Simon Williams <simon@instructure.com>
2015-05-20 01:13:32 +08:00
:icon => 'icon-discussion'
}, {
:id => TAB_GRADES,
:label => t('#tabs.grades', "Grades"),
makes section tabs accessible outside of render logic fixes CNVS-20120 - Updates UsersController#user_dashboard to add course favorite information to js_env.Add icon info to Course.default_tabs.Update - I18nUtilities helper methods to use `I18n.t` instead of just `t`, so that the module can be included outside of a decendent of ActionView.Add - SectionTabHelper. Includes method for rendering `section_tabs` to html, a separate method (`available_section_tab`) so section tabs can be accessed without rendering anything to the page, and a new class, - SectionTabTag, which is responsible for constructing html to render a section tab.Add SectionTabPresenter, which takes a tab object (just a hash; accessed via a context class’s `.default_tabs` method) and translates it into an object for the view. - Add `CourseForMenuPresenter`, which translates a course into a hash including only information necessary for construction of the section tab menu, or the new dashboard card. - Add `AvailableSectionTabs` to encapsulate available_section_tabs logic.  test plan: - Validate that existing section menu navigation with a course context works. - Validate that new dashboard cards show correct course information, as well as correct links. Change-Id: Ief2cfc350991758e019a8a56ce23d29634470dd0 Reviewed-on: https://gerrit.instructure.com/54578 Reviewed-by: Simon Williams <simon@instructure.com> QA-Review: Adam Stone <astone@instructure.com> Tested-by: Jenkins Product-Review: Simon Williams <simon@instructure.com>
2015-05-20 01:13:32 +08:00
:css_class => 'grades',
:href => :course_grades_path,
:screenreader => t('#tabs.course_grades', "Course Grades")
makes section tabs accessible outside of render logic fixes CNVS-20120 - Updates UsersController#user_dashboard to add course favorite information to js_env.Add icon info to Course.default_tabs.Update - I18nUtilities helper methods to use `I18n.t` instead of just `t`, so that the module can be included outside of a decendent of ActionView.Add - SectionTabHelper. Includes method for rendering `section_tabs` to html, a separate method (`available_section_tab`) so section tabs can be accessed without rendering anything to the page, and a new class, - SectionTabTag, which is responsible for constructing html to render a section tab.Add SectionTabPresenter, which takes a tab object (just a hash; accessed via a context class’s `.default_tabs` method) and translates it into an object for the view. - Add `CourseForMenuPresenter`, which translates a course into a hash including only information necessary for construction of the section tab menu, or the new dashboard card. - Add `AvailableSectionTabs` to encapsulate available_section_tabs logic.  test plan: - Validate that existing section menu navigation with a course context works. - Validate that new dashboard cards show correct course information, as well as correct links. Change-Id: Ief2cfc350991758e019a8a56ce23d29634470dd0 Reviewed-on: https://gerrit.instructure.com/54578 Reviewed-by: Simon Williams <simon@instructure.com> QA-Review: Adam Stone <astone@instructure.com> Tested-by: Jenkins Product-Review: Simon Williams <simon@instructure.com>
2015-05-20 01:13:32 +08:00
}, {
:id => TAB_PEOPLE,
:label => t('#tabs.people', "People"),
:css_class => 'people',
:href => :course_users_path
}, {
:id => TAB_PAGES,
:label => t('#tabs.pages', "Pages"),
:css_class => 'pages',
:href => :course_wiki_path
}, {
:id => TAB_FILES,
:label => t('#tabs.files', "Files"),
:css_class => 'files',
:href => :course_files_path,
:screenreader => t("Course Files"),
:icon => 'icon-folder'
makes section tabs accessible outside of render logic fixes CNVS-20120 - Updates UsersController#user_dashboard to add course favorite information to js_env.Add icon info to Course.default_tabs.Update - I18nUtilities helper methods to use `I18n.t` instead of just `t`, so that the module can be included outside of a decendent of ActionView.Add - SectionTabHelper. Includes method for rendering `section_tabs` to html, a separate method (`available_section_tab`) so section tabs can be accessed without rendering anything to the page, and a new class, - SectionTabTag, which is responsible for constructing html to render a section tab.Add SectionTabPresenter, which takes a tab object (just a hash; accessed via a context class’s `.default_tabs` method) and translates it into an object for the view. - Add `CourseForMenuPresenter`, which translates a course into a hash including only information necessary for construction of the section tab menu, or the new dashboard card. - Add `AvailableSectionTabs` to encapsulate available_section_tabs logic.  test plan: - Validate that existing section menu navigation with a course context works. - Validate that new dashboard cards show correct course information, as well as correct links. Change-Id: Ief2cfc350991758e019a8a56ce23d29634470dd0 Reviewed-on: https://gerrit.instructure.com/54578 Reviewed-by: Simon Williams <simon@instructure.com> QA-Review: Adam Stone <astone@instructure.com> Tested-by: Jenkins Product-Review: Simon Williams <simon@instructure.com>
2015-05-20 01:13:32 +08:00
}, {
: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
}, {
:id => TAB_SETTINGS,
:label => t('#tabs.settings', "Settings"),
:css_class => 'settings',
:href => :course_settings_path,
:screenreader => t('#tabs.course_settings', "Course Settings")
}
2011-02-01 09:57:29 +08:00
]
end
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)
tools = self.context_external_tools.active.having_setting('course_navigation')
tools += ContextExternalTool.active.having_setting('course_navigation').where(context_type: 'Account', context_id: account_chain).to_a
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] || I18n.locale),
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
:css_class => tool.asset_string,
:href => :course_external_tool_path,
: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,
: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
2011-02-01 09:57:29 +08:00
def tabs_available(user=nil, opts={})
opts.reverse_merge!(:include_external => true)
cache_key = [user, opts].cache_key
@tabs_available ||= {}
@tabs_available[cache_key] ||= uncached_tabs_available(user, opts)
end
def uncached_tabs_available(user, opts)
# 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
Shackles.activate(:slave) do
# 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]
external_tabs = if opts[:include_external]
external_tool_tabs(opts) + Lti::MessageHandler.lti_apps_tabs(self, [Lti::ResourcePlacement::COURSE_NAVIGATION], opts)
else
[]
end
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]
tab[:icon] = default_tab[:icon]
tab[:screenreader] = default_tab[:screenreader]
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
end
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, :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]
tab[:hidden_unused] = true if tab[:id] == TAB_DISCUSSIONS && !active_record_types[:discussions] && !allow_student_discussion_topics
end
# remove tabs that the user doesn't have access to
unless opts[:for_reordering]
unless self.grants_any_right?(user, opts[:session], :read, :manage_content)
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_any_right?(user, opts[:session], :participate_as_student, :read_as_admin)
tabs.delete_if{ |t| t[:visibility] == 'members' }
end
unless self.grants_any_right?(user, opts[:session], :read, :manage_content, :manage_assignments)
tabs.delete_if { |t| t[:id] == TAB_ASSIGNMENTS }
tabs.delete_if { |t| t[:id] == TAB_QUIZZES }
end
unless self.grants_any_right?(user, opts[:session], :read, :read_syllabus, :manage_content, :manage_assignments)
tabs.delete_if { |t| t[:id] == TAB_SYLLABUS }
end
tabs.delete_if{ |t| t[:visibility] == 'admins' } unless self.grants_right?(user, opts[:session], :read_as_admin)
if self.grants_any_right?(user, opts[:session], :manage_content, :manage_assignments)
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] } unless opts[:api] && self.grants_right?(user, :read_as_admin)
tabs.delete_if { |t| t[:id] == TAB_GRADES } unless self.grants_any_right?(user, opts[:session], :read_grades, :view_all_grades, :manage_grades)
tabs.detect { |t| t[:id] == TAB_GRADES }[:manageable] = true if self.grants_any_right?(user, opts[:session], :view_all_grades, :manage_grades)
tabs.delete_if { |t| t[:id] == TAB_PEOPLE } unless self.grants_any_right?(user, opts[:session], :read_roster, :manage_students, :manage_admin_users)
tabs.detect { |t| t[:id] == TAB_PEOPLE }[:manageable] = true if self.grants_any_right?(user, opts[:session], :manage_students, :manage_admin_users)
tabs.delete_if { |t| t[:id] == TAB_FILES } unless self.grants_any_right?(user, opts[:session], :read, :manage_files)
tabs.detect { |t| t[:id] == TAB_FILES }[:manageable] = true if self.grants_right?(user, opts[:session], :manage_files)
tabs.delete_if { |t| t[:id] == TAB_DISCUSSIONS } unless self.grants_any_right?(user, opts[:session], :read_forum, :moderate_forum, :post_to_forum)
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, :manage_content)
# remove some tabs for logged-out users or non-students
unless grants_any_right?(user, :read_as_admin, :participate_as_student)
tabs.delete_if {|t| [TAB_PEOPLE, TAB_OUTCOMES].include?(t[:id]) }
end
unless announcements.temp_record.grants_right?(user, :read)
tabs.delete_if { |t| t[:id] == TAB_ANNOUNCEMENTS }
end
# remove hidden tabs from students
unless self.grants_right?(user, opts[:session], :read_as_admin)
tabs.delete_if {|t| (t[:hidden] || (t[:hidden_unused] && !opts[:include_hidden_unused])) && !t[:manageable] }
end
end
end
# 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
2011-02-01 09:57:29 +08:00
def allow_wiki_comments
read_attribute(:allow_wiki_comments)
end
2011-02-01 09:57:29 +08:00
def account_name
self.account.name rescue nil
end
2011-02-01 09:57:29 +08:00
def term_name
self.enrollment_term.name rescue nil
end
2011-02-01 09:57:29 +08:00
def enable_user_notes
root_account.enable_user_notes rescue false
2011-02-01 09:57:29 +08:00
end
def equella_settings
account = self.account
while account
settings = account.equella_settings
return settings if settings
account = account.parent_account
end
end
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.
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 = []
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
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
2011-02-01 09:57:29 +08:00
self.save
User.update_account_associations(user_ids)
end
cattr_accessor :settings_options
self.settings_options = {}
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
class_eval <<-CODE
def #{setting}
if Course.settings_options[#{setting.inspect}][:inherited]
inherited = RequestCache.cache('inherited_course_setting', #{setting.inspect}, self.global_account_id) do
self.account.send(#{setting.inspect})
end
if inherited[:locked] || settings_frd[#{setting.inspect}].nil?
inherited[:value]
else
settings_frd[#{setting.inspect}]
end
elsif settings_frd[#{setting.inspect}].nil? && !@disable_setting_defaults
default = Course.settings_options[#{setting.inspect}][:default]
default.respond_to?(:call) ? default.call(self) : default
else
settings_frd[#{setting.inspect}]
end
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}?"
end
end
# 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
add_setting :allow_student_discussion_editing, :boolean => true, :default => true
allow displaing total grade as points for students fixes CNVS-9874 when teacher choses to show total grade as points in GB2, a setting is saved student grade summary page shows the total grade in same format if assignment groups are weighted, grade is displayed as a percentage again test plan: - new addition: - go to a course where GB2 is displaying totals as points BUT has no DB setting about show_point_totals (ask mike if you need help getting to this state) - as a student look at the grade summary page, total should be a percent - as a teacher in that class, go to GB2 and wait for 5 seconds - as that same student, go back to grade summary, total should be points now - as a teacher, change total grade to show as points in GB2 - when you return to the GB, even from a new browser, this should be the same - in GB, tooltip should show points if cell shows percent, and visa vera - as a student in that class, you should see your total grade as points - grade tooltip should show points if cell shows percent, and visa vera - switch to weighted assignment groups - total grade as a teacher and student should switch back to percent - switch back to non-weighted - total grade should stay a percent until explicitly changed back to points - GB2 weighting and points/percent switching should have no unintended effects on the GB - student grade summary page should display everything in a consistent manner Change-Id: Id0c4f496576c226eb7000d6684a37faf0b439359 Reviewed-on: https://gerrit.instructure.com/28780 Tested-by: Jenkins <jenkins@instructure.com> QA-Review: Caleb Guanzon <cguanzon@instructure.com> Reviewed-by: Simon Williams <simon@instructure.com> Product-Review: Mike Nomitch <mnomitch@instructure.com>
2014-01-15 01:06:03 +08:00
add_setting :show_total_grade_as_points, :boolean => true, :default => false
add_setting :lock_all_announcements, :boolean => true, :default => false
add_setting :large_roster, :boolean => true, :default => lambda { |c| c.root_account.large_course_rosters? }
add_setting :public_syllabus, :boolean => true, :default => false
add_setting :course_format
add_setting :organize_epub_by_content_type, :boolean => true, :default => false
add_setting :is_public_to_auth_users, :boolean => true, :default => false
add_setting :restrict_student_future_view, :boolean => true, :inherited => true
add_setting :restrict_student_past_view, :boolean => true, :inherited => true
def user_can_manage_own_discussion_posts?(user)
return true if allow_student_discussion_editing?
return true if user_is_instructor?(user)
false
end
def filter_attributes_for_user(hash, user, session)
hash.delete('hide_final_grades') if hash.key?('hide_final_grades') && !grants_right?(user, :update)
hash
end
# DEPRECATED, use setting accessors instead
def settings=(hash)
write_attribute(:settings, hash)
end
# frozen, because you should use setters
def settings
settings_frd.dup.freeze
end
def settings_frd
read_or_initialize_attribute(:settings, {})
end
def disable_setting_defaults
@disable_setting_defaults = true
yield
ensure
@disable_setting_defaults = nil
end
def reset_content
Course.transaction do
new_course = Course.new
self.attributes.delete_if{|k,v| [:id, :created_at, :updated_at, :syllabus_body, :wiki_id, :default_view, :tab_configuration, :lti_context_id, :workflow_state].include?(k.to_sym) }.each do |key, val|
new_course.write_attribute(key, val)
end
new_course.workflow_state = 'created'
# there's a unique constraint on this, so we need to clear it out
self.self_enrollment_code = nil
self.self_enrollment = false
# 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
self.uuid = self.sis_source_id = self.sis_batch_id = self.integration_id = nil;
self.save!
Course.process_as_sis { new_course.save! }
self.course_sections.update_all(:course_id => new_course)
# we also want to bring along prior enrollments, so don't use the enrollments
# association
Enrollment.where(:course_id => self).update_all(:course_id => new_course, :updated_at => Time.now.utc)
User.where(id: new_course.all_enrollments.select(:user_id)).
update_all(updated_at: Time.now.utc)
self.replacement_course_id = new_course.id
self.workflow_state = 'deleted'
self.save!
# Assign original course profile to the new course (automatically saves it)
new_course.profile = self.profile unless self.profile.new_record?
Course.find(new_course.id)
end
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
def participating_users(user_ids)
enrollments = self.enrollments.eager_load(:user).
where(:enrollments => {:workflow_state => 'active'}, :users => {:id => user_ids})
Canvas::Builders::EnrollmentDateBuilder.preload(enrollments)
enrollments.select { |e| e.active? }.map(&:user).uniq
end
student view; closes #6995 allows course admins to view the course from a student perspective. this is accessible from a button on the course/settings page. They should be able to interact with the course as a student would, including submitting homework and quizzes. Right now there is one student view student per course, so if the course has multiple administrators, they will all share the same student view student. There are a few things that won't work in student view the way the would for a normal student, most notably access to conversations is disabled. Additionally, any publicly visible action that the teacher takes while in student view will still be publicly visible -- for example if the teacher posts a discussion topic/reply as the student view student, it will be visible to the whole class. test-plan: - (the following should be tried both as a full teacher and as a section-limited course admin) - set up a few assignments, quizzes, discussions, and module progressions in a course. - enter student view from the coures settings page. - work through the things you set up above. - leave student view from the upper right corner of the page. - as a teacher you should be able to grade the fake student so that they can continue to progress. - the student should not show up in the course users list - the student should not show up at the account level at all: * total user list * statistics Change-Id: I886a4663777f3ef2bdae594349ff6da6981e14ed Reviewed-on: https://gerrit.instructure.com/9484 Tested-by: Hudson <hudson@instructure.com> Reviewed-by: Cody Cutrer <cody@instructure.com>
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
# 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}"))
student view; closes #6995 allows course admins to view the course from a student perspective. this is accessible from a button on the course/settings page. They should be able to interact with the course as a student would, including submitting homework and quizzes. Right now there is one student view student per course, so if the course has multiple administrators, they will all share the same student view student. There are a few things that won't work in student view the way the would for a normal student, most notably access to conversations is disabled. Additionally, any publicly visible action that the teacher takes while in student view will still be publicly visible -- for example if the teacher posts a discussion topic/reply as the student view student, it will be visible to the whole class. test-plan: - (the following should be tried both as a full teacher and as a section-limited course admin) - set up a few assignments, quizzes, discussions, and module progressions in a course. - enter student view from the coures settings page. - work through the things you set up above. - leave student view from the upper right corner of the page. - as a teacher you should be able to grade the fake student so that they can continue to progress. - the student should not show up in the course users list - the student should not show up at the account level at all: * total user list * statistics Change-Id: I886a4663777f3ef2bdae594349ff6da6981e14ed Reviewed-on: https://gerrit.instructure.com/9484 Tested-by: Hudson <hudson@instructure.com> Reviewed-by: Cody Cutrer <cody@instructure.com>
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
student view; closes #6995 allows course admins to view the course from a student perspective. this is accessible from a button on the course/settings page. They should be able to interact with the course as a student would, including submitting homework and quizzes. Right now there is one student view student per course, so if the course has multiple administrators, they will all share the same student view student. There are a few things that won't work in student view the way the would for a normal student, most notably access to conversations is disabled. Additionally, any publicly visible action that the teacher takes while in student view will still be publicly visible -- for example if the teacher posts a discussion topic/reply as the student view student, it will be visible to the whole class. test-plan: - (the following should be tried both as a full teacher and as a section-limited course admin) - set up a few assignments, quizzes, discussions, and module progressions in a course. - enter student view from the coures settings page. - work through the things you set up above. - leave student view from the upper right corner of the page. - as a teacher you should be able to grade the fake student so that they can continue to progress. - the student should not show up in the course users list - the student should not show up at the account level at all: * total user list * statistics Change-Id: I886a4663777f3ef2bdae594349ff6da6981e14ed Reviewed-on: https://gerrit.instructure.com/9484 Tested-by: Hudson <hudson@instructure.com> Reviewed-by: Cody Cutrer <cody@instructure.com>
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)
self.default_section unless course_sections.active.any?
Enrollment.suspend_callbacks(:update_cached_due_dates) do
self.course_sections.active.each do |section|
# enroll fake_student will only create the enrollment if it doesn't already exist
self.enroll_user(fake_student, 'StudentViewEnrollment',
:allow_multiple_enrollments => true,
:section => section,
:enrollment_state => 'active',
:no_notify => true,
:skip_touch_user => true)
end
student view; closes #6995 allows course admins to view the course from a student perspective. this is accessible from a button on the course/settings page. They should be able to interact with the course as a student would, including submitting homework and quizzes. Right now there is one student view student per course, so if the course has multiple administrators, they will all share the same student view student. There are a few things that won't work in student view the way the would for a normal student, most notably access to conversations is disabled. Additionally, any publicly visible action that the teacher takes while in student view will still be publicly visible -- for example if the teacher posts a discussion topic/reply as the student view student, it will be visible to the whole class. test-plan: - (the following should be tried both as a full teacher and as a section-limited course admin) - set up a few assignments, quizzes, discussions, and module progressions in a course. - enter student view from the coures settings page. - work through the things you set up above. - leave student view from the upper right corner of the page. - as a teacher you should be able to grade the fake student so that they can continue to progress. - the student should not show up in the course users list - the student should not show up at the account level at all: * total user list * statistics Change-Id: I886a4663777f3ef2bdae594349ff6da6981e14ed Reviewed-on: https://gerrit.instructure.com/9484 Tested-by: Hudson <hudson@instructure.com> Reviewed-by: Cody Cutrer <cody@instructure.com>
2012-03-14 04:08:19 +08:00
end
DueDateCacher.recompute_course(self)
student view; closes #6995 allows course admins to view the course from a student perspective. this is accessible from a button on the course/settings page. They should be able to interact with the course as a student would, including submitting homework and quizzes. Right now there is one student view student per course, so if the course has multiple administrators, they will all share the same student view student. There are a few things that won't work in student view the way the would for a normal student, most notably access to conversations is disabled. Additionally, any publicly visible action that the teacher takes while in student view will still be publicly visible -- for example if the teacher posts a discussion topic/reply as the student view student, it will be visible to the whole class. test-plan: - (the following should be tried both as a full teacher and as a section-limited course admin) - set up a few assignments, quizzes, discussions, and module progressions in a course. - enter student view from the coures settings page. - work through the things you set up above. - leave student view from the upper right corner of the page. - as a teacher you should be able to grade the fake student so that they can continue to progress. - the student should not show up in the course users list - the student should not show up at the account level at all: * total user list * statistics Change-Id: I886a4663777f3ef2bdae594349ff6da6981e14ed Reviewed-on: https://gerrit.instructure.com/9484 Tested-by: Hudson <hudson@instructure.com> Reviewed-by: Cody Cutrer <cody@instructure.com>
2012-03-14 04:08:19 +08:00
fake_student
end
private :sync_enrollments
def associated_shards
[Shard.default]
end
def includes_student?(user)
includes_user?(user, student_enrollments)
end
def includes_user?(user, enrollment_scope=enrollments)
return false if user.nil? || user.new_record?
enrollment_scope.where(user_id: user).exists?
end
def update_one(update_params, user, update_source = :manual)
options = { source: update_source }
case update_params[:event]
when 'offer'
if self.completed?
self.unconclude!
Auditors::Course.record_unconcluded(self, user, options)
else
unless self.available?
self.offer!
Auditors::Course.record_published(self, user, options)
end
end
when 'conclude'
unless self.completed?
self.complete!
Auditors::Course.record_concluded(self, user, options)
end
when 'delete'
self.sis_source_id = nil
self.workflow_state = 'deleted'
self.save!
Auditors::Course.record_deleted(self, user, options)
when 'undelete'
self.workflow_state = 'claimed'
self.save!
Auditors::Course.record_restored(self, user, options)
end
end
def self.do_batch_update(progress, user, course_ids, update_params, update_source = :manual)
account = progress.context
progress_runner = ProgressRunner.new(progress)
progress_runner.completed_message do |completed_count|
t('batch_update_message', {
:one => "1 course processed",
:other => "%{count} courses processed"
},
:count => completed_count)
end
progress_runner.do_batch_update(course_ids) do |course_id|
course = account.associated_courses.where(id: course_id).first
raise t('course_not_found', "The course was not found") unless course &&
(course.workflow_state != 'deleted' || update_params[:event] == 'undelete')
raise t('access_denied', "Access was denied") unless course.grants_right? user, :update
course.update_one(update_params, user, update_source)
end
end
def self.batch_update(account, user, course_ids, update_params, update_source = :manual)
progress = account.progresses.create! :tag => "course_batch_update", :completion => 0.0
job = Course.send_later_enqueue_args(:do_batch_update,
{ no_delay: true },
progress, user, course_ids, update_params, update_source)
progress.user_id = user.id
progress.delayed_job_id = job.id
progress.save!
progress
end
def re_send_invitations!(from_user)
self.apply_enrollment_visibility(self.student_enrollments, from_user).invited.except(:preload).preload(user: :communication_channels).find_each do |e|
e.re_send_confirmation! if e.invited?
end
end
Add a permission option in the api to return if the user can create topics. closes CNVS-6824 This adds a permissions attribute to the returned json for discussion topic contexts (Course, Group). The permissions attribute contains an optional permission of "create_discission_topic" which returns true or false depending on whether the current user can create discussion topics for the course or group. For performance reasons this is only added to a single course/group json and not in lists so the only call that will return it is /api/v1/<context>/<context_id> where context is a course or group. Since we did not want to include this on every response its a custom permissions attribute for course and groups in the course_json or group_json serialization methods. Using the includes parameter for the API supplying a value of "permissions" will include the permissions with "create_discussion_topic" for a group and course. When the object is serialized to json it checked to see if the model implements a serialize_permissions method and calls that to render or override permissions generated from the policies. - Create a test Course. Make sure the course allows members to post topics. - Add a student to the course. - Make a call to /api/v1/courses/<id> where "<id>" is the id of the created course. - The response should include a permissions attribute with a boolean value for "create_discission_topic" see the example below. - Make a call to /api/v1/courses to return a list of course objects. - The permissions attribute should not be included in the response. - Create a test Group tied to the course created in the first step. - Add a mamber to the group. - Make a call to /api/v1/groups/<id> where "<id>" is the id of the created group. - The response should include a permissions attribute with a boolean value for "create_discission_topic" see the example below. - Make a call to /api/v1/groups to return a list of group objects. - The permissions attribute should not be included in the response. Example Response: { id: 42, ... permissions: { create_discission_topic: true } } Change-Id: Ia02d5aa67e345740a93dd0f63e357e7cb5e1efd6 Reviewed-on: https://gerrit.instructure.com/24478 Reviewed-by: Jacob Fugal <jacob@instructure.com> Tested-by: Jenkins <jenkins@instructure.com> QA-Review: August Thornton <august@instructure.com> Product-Review: Nick Cloward <ncloward@instructure.com>
2013-09-18 06:24:57 +08:00
def serialize_permissions(permissions_hash, user, session)
permissions_hash.merge(
create_discussion_topic: DiscussionTopic.context_allows_user_to_create?(self, user, session),
create_announcement: Announcement.context_allows_user_to_create?(self, user, session)
Add a permission option in the api to return if the user can create topics. closes CNVS-6824 This adds a permissions attribute to the returned json for discussion topic contexts (Course, Group). The permissions attribute contains an optional permission of "create_discission_topic" which returns true or false depending on whether the current user can create discussion topics for the course or group. For performance reasons this is only added to a single course/group json and not in lists so the only call that will return it is /api/v1/<context>/<context_id> where context is a course or group. Since we did not want to include this on every response its a custom permissions attribute for course and groups in the course_json or group_json serialization methods. Using the includes parameter for the API supplying a value of "permissions" will include the permissions with "create_discussion_topic" for a group and course. When the object is serialized to json it checked to see if the model implements a serialize_permissions method and calls that to render or override permissions generated from the policies. - Create a test Course. Make sure the course allows members to post topics. - Add a student to the course. - Make a call to /api/v1/courses/<id> where "<id>" is the id of the created course. - The response should include a permissions attribute with a boolean value for "create_discission_topic" see the example below. - Make a call to /api/v1/courses to return a list of course objects. - The permissions attribute should not be included in the response. - Create a test Group tied to the course created in the first step. - Add a mamber to the group. - Make a call to /api/v1/groups/<id> where "<id>" is the id of the created group. - The response should include a permissions attribute with a boolean value for "create_discission_topic" see the example below. - Make a call to /api/v1/groups to return a list of group objects. - The permissions attribute should not be included in the response. Example Response: { id: 42, ... permissions: { create_discission_topic: true } } Change-Id: Ia02d5aa67e345740a93dd0f63e357e7cb5e1efd6 Reviewed-on: https://gerrit.instructure.com/24478 Reviewed-by: Jacob Fugal <jacob@instructure.com> Tested-by: Jenkins <jenkins@instructure.com> QA-Review: August Thornton <august@instructure.com> Product-Review: Nick Cloward <ncloward@instructure.com>
2013-09-18 06:24:57 +08:00
)
end
def active_section_count
@section_count ||= self.active_course_sections.count
end
def multiple_sections?
active_section_count > 1
end
zip content exports for course, group, user test plan: 1. use the content exports api with export_type=zip to export files from courses, groups, and users a. confirm only users who have permission to download files from these contexts can perform the export b. confirm that deleted files and folders do not show up in the downloaded archive c. confirm that students cannot download locked files or folders from courses this way d. check the progress endpoint and make sure it increments sanely 2. perform selective content exports by passing an array of ids in select[folders] and/or select[attachments]. for example, ?select[folders][]=123&select[folders][]=456 ?select[attachments][]=345 etc. a. any selected files, plus the full contents of any selected folders (that the caller has permission to see) should be included - that means locked files and subfolders should be excluded from the archive b. if all selected files and folders are descendants of the same subfolder X, the export should be named "X_export.zip" and all paths inside the zip should be relative to it. for example, if you are exporting A/B/1 and A/C/2, you should get "A_export.zip" containing files "B/1" and "C/2". 3. use the index and show endpoints to list and view content exports in courses, groups, and users a. confirm students cannot view non-zip course exports (such as common cartridge exports) b. confirm students cannot view other users' file (zip) exports, in course, group, and user context c. confirm teachers cannot view other users' file (zip) exports, in course, group, and user context (but can still view course [cc] exports initiated by other teachers) 4. look at /courses/X/content_exports (web, not API) a. confirm teachers see file exports they performed b. confirm teachers do not see file exports performed by other teachers c. confirm teachers see all non-zip course exports (cc/qti) including those initiated by other teachers 5. as a site admin user, perform a zip export of another user's files. then, as that other user, go to /dashboard/data_exports and confirm that the export performed by the site admin user is not shown. fixes CNVS-12706 Change-Id: Ie9b58e44ac8006a9c9171b3ed23454bf135385b0 Reviewed-on: https://gerrit.instructure.com/34341 Reviewed-by: James Williams <jamesw@instructure.com> QA-Review: Trevor deHaan <tdehaan@instructure.com> Tested-by: Jenkins <jenkins@instructure.com> Product-Review: Jon Willesen <jonw@instructure.com>
2014-07-18 04:00:32 +08:00
def content_exports_visible_to(user)
if self.grants_right?(user, :read_as_admin)
self.content_exports.admin(user)
else
self.content_exports.non_admin(user)
end
end
%w{student_count primary_enrollment_type primary_enrollment_role_id primary_enrollment_rank primary_enrollment_state invitation}.each do |method|
class_eval <<-RUBY
def #{method}
read_attribute(:#{method}) || @#{method}
end
RUBY
end
def touch_content_if_public_visibility_changed(changes)
if changes[:is_public] || changes[:is_public_to_auth_users]
self.assignments.touch_all
self.attachments.touch_all
self.calendar_events.touch_all
self.context_modules.touch_all
self.discussion_topics.touch_all
self.quizzes.touch_all
self.wiki.touch
self.wiki.wiki_pages.touch_all
end
end
def touch_admins_later
send_later_enqueue_args(:touch_admins, { :run_at => 15.seconds.from_now, :singleton => "course_touch_admins_#{global_id}" })
end
def touch_admins
User.where(id: self.admins).touch_all
end
def list_students_by_sortable_name?
feature_enabled?(:gradebook_list_students_by_sortable_name)
end
##
# Returns a boolean describing if the user passed in has marked this course
# as a favorite.
def favorite_for_user?(user)
user.favorites.where(:context_type => 'Course', :context_id => self).exists?
end
def nickname_for(user, fallback = :name)
nickname = user && user.course_nickname(self)
nickname ||= self.send(fallback) if fallback
nickname
end
def refresh_content_participation_counts(_progress)
content_participation_counts.each(&:refresh_unread_count)
end
def name
return @nickname if @nickname
read_attribute(:name)
end
def apply_nickname_for!(user)
@nickname = nickname_for(user, nil)
end
2011-02-01 09:57:29 +08:00
end