mumuki-domain 7.6.0 → 7.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/app/models/assignment.rb +2 -0
  3. data/app/models/book.rb +4 -2
  4. data/app/models/concerns/contextualization.rb +1 -1
  5. data/app/models/concerns/navigation/siblings_navigation.rb +2 -2
  6. data/app/models/concerns/submittable/solvable.rb +9 -3
  7. data/app/models/concerns/submittable/submittable.rb +1 -1
  8. data/app/models/concerns/with_assignments.rb +1 -1
  9. data/app/models/concerns/with_discussions.rb +9 -6
  10. data/app/models/concerns/with_layout.rb +5 -1
  11. data/app/models/concerns/with_progress.rb +1 -1
  12. data/app/models/concerns/with_scoped_queries.rb +9 -9
  13. data/app/models/concerns/with_scoped_queries/page.rb +1 -1
  14. data/app/models/concerns/with_scoped_queries/sort.rb +6 -1
  15. data/app/models/course.rb +13 -7
  16. data/app/models/discussion.rb +51 -13
  17. data/app/models/exam.rb +53 -23
  18. data/app/models/exam/passing_criterion.rb +53 -0
  19. data/app/models/exercise/challenge.rb +1 -1
  20. data/app/models/exercise/problem.rb +6 -0
  21. data/app/models/exercise/reading.rb +4 -0
  22. data/app/models/guide.rb +1 -1
  23. data/app/models/invitation.rb +7 -1
  24. data/app/models/message.rb +28 -4
  25. data/app/models/organization.rb +3 -11
  26. data/app/models/user.rb +65 -4
  27. data/db/migrate/20200601203033_add_course_to_exam.rb +5 -0
  28. data/db/migrate/20200605161350_add_passing_criterions_to_exam.rb +6 -0
  29. data/db/migrate/20200702165503_add_messages_count_to_discussion.rb +6 -0
  30. data/db/migrate/20200728162727_add_not_actually_a_question_field_to_messages.rb +5 -0
  31. data/db/migrate/20200728163038_add_requires_moderator_response_to_discussions.rb +5 -0
  32. data/db/migrate/20200730221001_add_trusted_for_forum_to_user.rb +5 -0
  33. data/db/migrate/20200731081757_add_last_moderator_access_fields_to_discussion.rb +6 -0
  34. data/db/migrate/20200804191643_add_incognito_mode_enabled_to_organization.rb +5 -0
  35. data/lib/mumuki/domain.rb +1 -0
  36. data/lib/mumuki/domain/factories/course_factory.rb +2 -0
  37. data/lib/mumuki/domain/factories/discussion_factory.rb +2 -2
  38. data/lib/mumuki/domain/factories/exam_factory.rb +1 -0
  39. data/lib/mumuki/domain/factories/message_factory.rb +1 -6
  40. data/lib/mumuki/domain/incognito.rb +112 -0
  41. data/lib/mumuki/domain/organization/profile.rb +2 -1
  42. data/lib/mumuki/domain/organization/settings.rb +12 -9
  43. data/lib/mumuki/domain/status/discussion/discussion.rb +0 -8
  44. data/lib/mumuki/domain/submission/base.rb +11 -1
  45. data/lib/mumuki/domain/submission/solution.rb +3 -1
  46. data/lib/mumuki/domain/version.rb +1 -1
  47. metadata +15 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40391bc2dcc0ab54965e1d82a289c8960dac3f68cf4c8fb2a3d097e774b899b4
4
- data.tar.gz: 205ce356bcc3365491551226eaa2b076ae58d7ac1255fb51294424b419ea4ffb
3
+ metadata.gz: 14a6d0b035451e69ddc77479e3f32854ecae51ca0a3c6bc3031f8d68a4b7fcdd
4
+ data.tar.gz: a1dbea618e7a152e55417174cecf35a0338a464cd199b02114d524c65c7c23c5
5
5
  SHA512:
6
- metadata.gz: 3741ef7ad7daf3f6cfc2d829d8fbf336512e4ec719257734d2e3bcc0b960081a6c50bdc3f31e2c82dc59abbc1d2d1719ab68ace80ec8c7ff1a908613b1123409
7
- data.tar.gz: cf4e192e33fcdd94f68398f074715b22088169d50b88acc9d1aa0457bb15850a8288f2280ecbcf5aec874dd8c85f01c952a430762113fe5a383c19816bcbb5c2
6
+ metadata.gz: d3e2039abf83cd21c0ef3d6b33bcfcef54db1dc7df1eb91fb771ab218076b484b34a4a7c034a1e945d5ab3f84e739fdffbdba05999e2bb1878430af4698e4678
7
+ data.tar.gz: 1cc3cb4565b4999bfac4f351fffb0d937c28db74c93e26a94267332b9c15ca8812f0bce4c19e2298169a957d008546bde95442a2ca7d798f9912b2bd3c9c39e8
@@ -20,6 +20,8 @@ class Assignment < Progress
20
20
  delegate :language, :name, :navigable_parent, :settings,
21
21
  :limited?, :input_kids?, :choice?, :results_hidden?, to: :exercise
22
22
 
23
+ delegate :completed?, :solved?, to: :submission_status
24
+
23
25
  alias_attribute :status, :submission_status
24
26
  alias_attribute :attempts_count, :attemps_count
25
27
 
@@ -8,8 +8,6 @@ class Book < Content
8
8
  has_many :complements, dependent: :destroy
9
9
 
10
10
  has_many :exercises, through: :chapters
11
- has_many :discussions, through: :exercises
12
- organic_on :discussions
13
11
 
14
12
  delegate :first_lesson, to: :first_chapter
15
13
 
@@ -19,6 +17,10 @@ class Book < Content
19
17
  slug
20
18
  end
21
19
 
20
+ def discussions_in_organization(organization = Organization.current)
21
+ Discussion.where(organization: organization).includes(exercise: [:language, :guide])
22
+ end
23
+
22
24
  def first_chapter
23
25
  chapters.first
24
26
  end
@@ -25,7 +25,7 @@ module Contextualization
25
25
 
26
26
  delegate :visible_success_output?, to: :exercise
27
27
  delegate :output_content_type, to: :language
28
- delegate :should_retry?, :to_submission_status, :completed?, :solved?, *Mumuki::Domain::Status::Submission.test_selectors, to: :submission_status
28
+ delegate :should_retry?, :to_submission_status, *Mumuki::Domain::Status::Submission.test_selectors, to: :submission_status
29
29
  delegate :inspection_keywords, to: :exercise
30
30
  end
31
31
 
@@ -1,11 +1,11 @@
1
1
  module SiblingsNavigation
2
2
 
3
3
  def next_for(user)
4
- pending_siblings_for(user).select { |it| it.number > number }.sort_by(&:number).first
4
+ user.pending_siblings_at(self).select { |it| it.number > number }.sort_by(&:number).first
5
5
  end
6
6
 
7
7
  def restart(user)
8
- pending_siblings_for(user).sort_by(&:number).first
8
+ user.pending_siblings_at(self).sort_by(&:number).first
9
9
  end
10
10
 
11
11
  def siblings
@@ -1,13 +1,19 @@
1
1
  module Solvable
2
- def submit_solution!(user, attributes={})
3
- assignment, _ = find_assignment_and_submit! user, attributes[:content].to_mumuki_solution(language)
4
- try_solve_discussions(user) if assignment.solved?
2
+ def submit_solution!(user, submission_attributes={})
3
+ assignment, _ = find_assignment_and_submit! user, solution_for(submission_attributes)
4
+ try_solve_discussions!(user) if assignment.solved?
5
5
  assignment
6
6
  end
7
7
 
8
8
  def run_tests!(params)
9
9
  language.run_tests!(params.merge(locale: locale, expectations: expectations, custom_expectations: custom_expectations))
10
10
  end
11
+
12
+ def solution_for(submission_attributes)
13
+ submission_attributes[:content]
14
+ .to_mumuki_solution(language)
15
+ .with_client_result(submission_attributes[:client_result])
16
+ end
11
17
  end
12
18
 
13
19
  class NilClass
@@ -5,7 +5,7 @@ module Submittable
5
5
 
6
6
  def find_assignment_and_submit!(user, submission)
7
7
  assignment = assignment_for user
8
- results = submission.run! assignment, evaluation_class.new
8
+ results = user.run_submission! submission, assignment, evaluation_class.new
9
9
  [assignment, results]
10
10
  end
11
11
  end
@@ -28,6 +28,6 @@ module WithAssignments
28
28
  end
29
29
 
30
30
  def assignment_for(user, organization=Organization.current)
31
- find_assignment_for(user, organization) || user.assignments.build(exercise: self, organization: organization)
31
+ find_assignment_for(user, organization) || user.build_assignment(self, organization)
32
32
  end
33
33
  end
@@ -7,18 +7,21 @@ module WithDiscussions
7
7
  end
8
8
 
9
9
  def discuss!(user, discussion, organization = Organization.current)
10
- discussion.merge!(initiator_id: user.id, organization: organization)
11
- discussion.merge!(submission: submission_for(user)) if submission_for(user).present?
12
- created_discussion = discussions.create discussion
13
- user.subscribe_to! created_discussion
14
- created_discussion
10
+ new_discussion_for(user, discussion, organization).tap &:save!
15
11
  end
16
12
 
17
13
  def submission_for(_)
18
14
  nil
19
15
  end
20
16
 
21
- def try_solve_discussions(user)
17
+ def try_solve_discussions!(user)
22
18
  discussions.where(initiator: user).map(&:try_solve!)
23
19
  end
20
+
21
+ def new_discussion_for(user, discussion_h = {}, organization = Organization.current)
22
+ discussion_h.merge!(initiator_id: user.id, organization: organization)
23
+ discussion_h.merge!(submission: submission_for(user)) if submission_for(user).present?
24
+ discussions.new discussion_h
25
+ end
26
+
24
27
  end
@@ -2,6 +2,10 @@ module WithLayout
2
2
  extend ActiveSupport::Concern
3
3
 
4
4
  included do
5
- enum layout: [:input_right, :input_bottom, :input_kids]
5
+ enum layout: [:input_right, :input_bottom, :input_primary, :input_kindergarten]
6
+ end
7
+
8
+ def input_kids?
9
+ input_primary? || input_kindergarten?
6
10
  end
7
11
  end
@@ -1,6 +1,6 @@
1
1
  module WithProgress
2
2
  def progress_for(user, organization)
3
- Indicator.find_or_initialize_by(user: user, organization: organization, content: self)
3
+ user.progress_at(self, organization)
4
4
  end
5
5
 
6
6
  def completion_percentage_for(user, organization=Organization.current)
@@ -16,8 +16,8 @@ module WithScopedQueries
16
16
  end
17
17
 
18
18
  class_methods do
19
- def query_methods
20
- queriable_attributes.keys
19
+ def query_methods(excluded_methods)
20
+ queriable_attributes.keys - excluded_methods.to_a
21
21
  end
22
22
 
23
23
  def scoped_query_module(method)
@@ -28,19 +28,19 @@ module WithScopedQueries
28
28
  queriable_attributes.values.flatten
29
29
  end
30
30
 
31
- def actual_params(params, excluded_param)
32
- params.reject { |it| it == excluded_param.to_s }
31
+ def actual_params(params, excluded_params)
32
+ params.except(*excluded_params)
33
33
  end
34
34
 
35
- def scoped_query_by(params, excluded_param=nil)
36
- query_methods.inject(all) do |scope, method|
37
- valid_params = valid_params_for(method, params, excluded_param)
35
+ def scoped_query_by(params, **options)
36
+ query_methods(options[:excluded_methods]).inject(all) do |scope, method|
37
+ valid_params = valid_params_for(method, params, options[:excluded_params])
38
38
  scoped_query_module(method).query_by valid_params, scope, self
39
39
  end
40
40
  end
41
41
 
42
- def valid_params_for(method, params, excluded_param)
43
- actual_params = actual_params(params, excluded_param)
42
+ def valid_params_for(method, params, excluded_params)
43
+ actual_params = actual_params(params, excluded_params)
44
44
  actual_params.permit queriable_attributes[method]
45
45
  end
46
46
  end
@@ -1,7 +1,7 @@
1
1
  module WithScopedQueries::Page
2
2
  def self.query_by(params, current_scope, _)
3
3
  page_param = params[:page] || 1
4
- current_scope.page(page_param)
4
+ current_scope.page(page_param).per(10)
5
5
  end
6
6
 
7
7
  def self.add_queriable_attributes_to(klass, _)
@@ -34,13 +34,18 @@ module WithScopedQueries::Sort
34
34
  end
35
35
 
36
36
  class_methods do
37
+ def opposite(direction)
38
+ dir = direction.to_s.downcase.to_sym
39
+ [:asc, :desc].find { |it| it != dir }
40
+ end
41
+
37
42
  def sorting_filters
38
43
  sorting_fields.product([:asc, :desc]).map do |it|
39
44
  "#{it.first}_#{it.second}"
40
45
  end
41
46
  end
42
47
 
43
- def sorting_params_allowed?(sort_param, direction_param=nil)
48
+ def sorting_params_allowed?(sort_param, direction_param = nil)
44
49
  sorting_fields.include?(sort_param.to_sym) && [:asc, :desc].include?(direction_param&.to_sym)
45
50
  end
46
51
  end
@@ -14,7 +14,7 @@ class Course < ApplicationRecord
14
14
  resource_fields :slug, :shifts, :code, :days, :period, :description
15
15
 
16
16
  def current_invitation
17
- invitations.where('expiration_date > ?', Time.now).take
17
+ invitations.where('expiration_date > ?', Time.now).first
18
18
  end
19
19
 
20
20
  def import_from_resource_h!(resource_h)
@@ -22,10 +22,8 @@ class Course < ApplicationRecord
22
22
  end
23
23
 
24
24
  def slug=(slug)
25
- s = Mumukit::Auth::Slug.parse(slug)
26
-
27
- self[:slug] = slug
28
- self[:code] = s.course
25
+ s = slug.to_mumukit_slug
26
+ self[:slug] = slug.to_s
29
27
  self[:organization_id] = Organization.locate!(s.organization).id
30
28
  end
31
29
 
@@ -42,8 +40,8 @@ class Course < ApplicationRecord
42
40
  end
43
41
 
44
42
  def generate_invitation!(expiration_date)
45
- invitation = invitations.build expiration_date: expiration_date, course: self
46
- invitation.save_and_notify!
43
+ invitations.create expiration_date: expiration_date, course: self
44
+ current_invitation
47
45
  end
48
46
 
49
47
  def self.sync_key_id_field
@@ -53,4 +51,12 @@ class Course < ApplicationRecord
53
51
  def to_organization
54
52
  organization
55
53
  end
54
+
55
+ def to_s
56
+ slug.to_s
57
+ end
58
+
59
+ def self.allowed_for(user, organization = Organization.current)
60
+ where(organization: organization).select { |course| user.teacher_of? course.slug }
61
+ end
56
62
  end
@@ -4,25 +4,29 @@ class Discussion < ApplicationRecord
4
4
  belongs_to :item, polymorphic: true
5
5
  has_many :messages, -> { order(:created_at) }, dependent: :destroy
6
6
  belongs_to :initiator, class_name: 'User'
7
+ belongs_to :last_moderator_access_by, class_name: 'User', optional: true
7
8
  belongs_to :exercise, foreign_type: :exercise, foreign_key: 'item_id'
8
9
  belongs_to :organization
9
10
  has_many :subscriptions
10
11
  has_many :upvotes
11
12
 
12
13
  scope :by_language, -> (language) { includes(:exercise).joins(exercise: :language).where(languages: {name: language}) }
14
+ scope :order_by_responses_count, -> (direction) { reorder(validated_messages_count: direction, messages_count: opposite(direction)) }
15
+ scope :by_requires_moderator_response, -> (boolean) { where(requires_moderator_response: boolean.to_boolean) }
13
16
 
14
- before_save :capitalize_title
15
- validates_presence_of :title
17
+ after_create :subscribe_initiator!
16
18
 
17
19
  markdown_on :description
18
20
 
19
- sortable :created_at, :upvotes_count, default: :created_at_desc
20
- filterable :status, :language
21
+ sortable :responses_count, :upvotes_count, :created_at, default: :created_at_desc
22
+ filterable :status, :language, :requires_moderator_response
21
23
  pageable
22
24
 
23
25
  delegate :language, to: :item
24
26
  delegate :to_discussion_status, to: :status
25
27
 
28
+ MODERATOR_REVIEW_AVERAGE_TIME = 10.minutes
29
+
26
30
  scope :for_user, -> (user) do
27
31
  if user.try(:moderator_here?)
28
32
  all
@@ -37,10 +41,6 @@ class Discussion < ApplicationRecord
37
41
  end
38
42
  end
39
43
 
40
- def capitalize_title
41
- title.capitalize!
42
- end
43
-
44
44
  def used_in?(organization)
45
45
  organization == self.organization
46
46
  end
@@ -66,7 +66,7 @@ class Discussion < ApplicationRecord
66
66
  end
67
67
 
68
68
  def friendly
69
- title
69
+ initiator.name
70
70
  end
71
71
 
72
72
  def subscription_for(user)
@@ -105,10 +105,6 @@ class Discussion < ApplicationRecord
105
105
  reachable_statuses_for(user).include? status
106
106
  end
107
107
 
108
- def allowed_statuses_for(user)
109
- status.allowed_statuses_for(user, self)
110
- end
111
-
112
108
  def update_status!(status, user)
113
109
  update!(status: status) if reachable_status_for?(user, status)
114
110
  end
@@ -125,14 +121,56 @@ class Discussion < ApplicationRecord
125
121
  responses_count > 0
126
122
  end
127
123
 
124
+ def has_validated_responses?
125
+ validated_messages_count > 0
126
+ end
127
+
128
+ def subscribe_initiator!
129
+ initiator.subscribe_to! self
130
+ end
131
+
128
132
  def extra_preview_html
129
133
  # FIXME this is buggy, because the extra
130
134
  # may have changed since the submission of this discussion
131
135
  exercise.assignment_for(initiator).extra_preview_html
132
136
  end
133
137
 
138
+ def update_counters!
139
+ messages_query = messages_by_updated_at
140
+ validated_messages = messages_query.select &:validated?
141
+ has_moderator_response = messages_query.find { |it| it.validated? || it.question? }&.validated?
142
+ update! messages_count: messages_query.count,
143
+ validated_messages_count: validated_messages.count,
144
+ requires_moderator_response: !has_moderator_response
145
+ end
146
+
147
+ def update_last_moderator_access!(user)
148
+ if user&.moderator_here? && !last_moderator_access_visible_for?(user)
149
+ update! last_moderator_access_at: Time.now,
150
+ last_moderator_access_by: user
151
+ end
152
+ end
153
+
154
+ def being_accessed_by_moderator?
155
+ last_moderator_access_at.present? && last_moderator_access_at > Time.now - MODERATOR_REVIEW_AVERAGE_TIME
156
+ end
157
+
158
+ def last_moderator_access_visible_for?(user)
159
+ show_last_moderator_access_for?(user) && being_accessed_by_moderator?
160
+ end
161
+
162
+ def show_last_moderator_access_for?(user)
163
+ user&.moderator_here? && last_moderator_access_by != user
164
+ end
165
+
134
166
  def self.debatable_for(klazz, params)
135
167
  debatable_id = params[:"#{klazz.underscore}_id"]
136
168
  klazz.constantize.find(debatable_id)
137
169
  end
170
+
171
+ private
172
+
173
+ def messages_by_updated_at(direction = :desc)
174
+ messages.reorder(updated_at: direction)
175
+ end
138
176
  end
@@ -1,19 +1,28 @@
1
1
  class Exam < ApplicationRecord
2
+
2
3
  include GuideContainer
3
4
  include FriendlyName
4
-
5
- validates_presence_of :start_time, :end_time
5
+ include TerminalNavigation
6
6
 
7
7
  belongs_to :organization
8
+ belongs_to :course, optional: true
8
9
 
9
10
  has_many :authorizations, class_name: 'ExamAuthorization', dependent: :destroy
10
11
  has_many :users, through: :authorizations
11
12
 
13
+ enum passing_criterion_type: [:none, :percentage, :passed_exercises], _prefix: :passing_criterion
14
+
15
+ validates_presence_of :start_time, :end_time
16
+ validates_numericality_of :max_problem_submissions, :max_choice_submissions, greater_than_or_equal_to: 1, allow_nil: true
17
+
18
+ before_save :set_default_criterion_type!
19
+ before_save :ensure_valid_passing_criterion!
20
+
21
+ before_create :set_classroom_id!
22
+
12
23
  after_destroy { |record| Usage.destroy_usages_for record }
13
24
  after_create :reindex_usages!
14
25
 
15
- include TerminalNavigation
16
-
17
26
  def used_in?(organization)
18
27
  organization == self.organization
19
28
  end
@@ -116,10 +125,41 @@ class Exam < ApplicationRecord
116
125
  index_usage! organization
117
126
  end
118
127
 
128
+ def attempts_left_for(assignment)
129
+ max_attempts_for(assignment.exercise) - (assignment.attempts_count || 0)
130
+ end
131
+
132
+ def limited_for?(exercise)
133
+ max_attempts_for(exercise).present?
134
+ end
135
+
136
+ def results_hidden_for?(exercise)
137
+ exercise.choice? && results_hidden_for_choices?
138
+ end
139
+
140
+ def resettable?
141
+ false
142
+ end
143
+
144
+ def set_classroom_id!
145
+ self.classroom_id ||= SecureRandom.hex(8)
146
+ end
147
+
148
+ def passing_criterion
149
+ @passing_criterion ||= Exam::PassingCriterion.parse(passing_criterion_type, passing_criterion_value)
150
+ end
151
+
152
+ def ensure_valid_passing_criterion!
153
+ passing_criterion.ensure_valid!
154
+ end
155
+
156
+ def set_default_criterion_type!
157
+ self.passing_criterion_type ||= :none
158
+ end
159
+
119
160
  def self.import_from_resource_h!(json)
120
161
  exam_data = json.with_indifferent_access
121
- organization = Organization.locate! exam_data[:organization]
122
- organization.switch!
162
+ Organization.locate!(exam_data[:organization].to_s).switch!
123
163
  adapt_json_values exam_data
124
164
  remove_previous_version exam_data[:eid], exam_data[:guide_id]
125
165
  exam = where(classroom_id: exam_data[:eid]).update_or_create!(whitelist_attributes(exam_data))
@@ -141,8 +181,13 @@ class Exam < ApplicationRecord
141
181
  def self.adapt_json_values(exam)
142
182
  exam[:guide_id] = Guide.locate!(exam[:slug]).id
143
183
  exam[:organization_id] = Organization.current.id
184
+ exam[:course_id] = Course.locate!(exam[:course].to_s).id
144
185
  exam[:users] = User.where(uid: exam[:uids])
145
- [:start_time, :end_time].each { |param| exam[param] = exam[param].to_time }
186
+ exam[:start_time] = exam[:start_time].to_time
187
+ exam[:end_time] = exam[:end_time].to_time
188
+ exam[:classroom_id] = exam[:eid] if exam[:eid].present?
189
+ exam[:passing_criterion_type] = exam.dig(:passing_criterion, :type)
190
+ exam[:passing_criterion_value] = exam.dig(:passing_criterion, :value)
146
191
  end
147
192
 
148
193
  def self.remove_previous_version(eid, guide_id)
@@ -153,25 +198,10 @@ class Exam < ApplicationRecord
153
198
  end
154
199
  end
155
200
 
156
- def attempts_left_for(assignment)
157
- max_attempts_for(assignment.exercise) - (assignment.attempts_count || 0)
158
- end
159
-
160
- def limited_for?(exercise)
161
- max_attempts_for(exercise).present?
162
- end
163
-
164
- def results_hidden_for?(exercise)
165
- exercise.choice? && results_hidden_for_choices?
166
- end
167
-
168
- def resettable?
169
- false
170
- end
171
-
172
201
  private
173
202
 
174
203
  def max_attempts_for(exercise)
175
204
  exercise.choice? ? max_choice_submissions : max_problem_submissions
176
205
  end
206
+
177
207
  end
@@ -0,0 +1,53 @@
1
+ class Exam::PassingCriterion
2
+
3
+ attr_reader :value
4
+
5
+ def initialize(value)
6
+ @value = value
7
+ end
8
+
9
+ def type
10
+ self.class.name.demodulize.underscore
11
+ end
12
+
13
+ def as_json
14
+ {type: type, value: value}
15
+ end
16
+
17
+ def ensure_valid!
18
+ raise "Invalid criterion value #{value} for #{type}" unless valid_passing_grade?
19
+ end
20
+
21
+ def self.parse(type, value)
22
+ parse_criterion_type(type, value)
23
+ end
24
+
25
+ def self.parse_criterion_type(type, value)
26
+ "Exam::PassingCriterion::#{type.camelize}".constantize.new(value)
27
+ rescue
28
+ raise "Invalid criterion type #{type}"
29
+ end
30
+
31
+ end
32
+
33
+ class Exam::PassingCriterion::None < Exam::PassingCriterion
34
+ def initialize(_)
35
+ @value = nil
36
+ end
37
+
38
+ def valid_passing_grade?
39
+ !value
40
+ end
41
+ end
42
+
43
+ class Exam::PassingCriterion::Percentage < Exam::PassingCriterion
44
+ def valid_passing_grade?
45
+ value.between? 0, 100
46
+ end
47
+ end
48
+
49
+ class Exam::PassingCriterion::PassedExercises < Exam::PassingCriterion
50
+ def valid_passing_grade?
51
+ value >= 0
52
+ end
53
+ end
@@ -20,6 +20,6 @@ class Challenge < Exercise
20
20
 
21
21
  def defaults
22
22
  super
23
- self.layout = self.class.default_layout
23
+ self.layout ||= self.class.default_layout
24
24
  end
25
25
  end
@@ -45,6 +45,12 @@ class Problem < QueriableChallenge
45
45
  own_expectations.present? || own_custom_expectations.present?
46
46
  end
47
47
 
48
+ # Sets the layout. This method accepts input_kids as a synonym of input_primary
49
+ # for historical reasons
50
+ def layout=(layout)
51
+ self[:layout] = layout.like?(:input_kids) ? :input_primary : layout
52
+ end
53
+
48
54
  private
49
55
 
50
56
  def ensure_evaluation_criteria
@@ -11,6 +11,10 @@ class Reading < Exercise
11
11
  false
12
12
  end
13
13
 
14
+ def layout=(layout)
15
+ raise 'can not set a layout different to input_bottom on readings' unless layout.like? :input_bottom
16
+ end
17
+
14
18
  def queriable?
15
19
  false
16
20
  end
@@ -42,7 +42,7 @@ class Guide < Content
42
42
  end
43
43
 
44
44
  def next_exercise(user)
45
- pending_exercises(user).order('public.exercises.number asc').first
45
+ user.next_exercise_at(self)
46
46
  end
47
47
 
48
48
  # TODO: Make use of pending_siblings logic
@@ -2,12 +2,18 @@ class Invitation < ApplicationRecord
2
2
  include Mumuki::Domain::Syncable
3
3
 
4
4
  belongs_to :course
5
+
6
+ validate :ensure_not_expired, on: :create
5
7
  validates_uniqueness_of :code
6
8
 
7
9
  defaults do
8
10
  self.code ||= self.class.generate_code
9
11
  end
10
12
 
13
+ def ensure_not_expired
14
+ errors.add(:base, :invitation_expired) if expired?
15
+ end
16
+
11
17
  def import_from_resource_h!(json)
12
18
  update! json.merge(course: Course.locate!(json[:course]))
13
19
  end
@@ -25,7 +31,7 @@ class Invitation < ApplicationRecord
25
31
  end
26
32
 
27
33
  def to_resource_h
28
- { code: code, course: course_slug, expiration_date: expiration_date }
34
+ {code: code, course: course_slug, expiration_date: expiration_date}
29
35
  end
30
36
 
31
37
  def navigation_end?
@@ -6,6 +6,10 @@ class Message < ApplicationRecord
6
6
 
7
7
  validates_presence_of :content, :sender
8
8
  validates_presence_of :submission_id, :unless => :discussion_id?
9
+
10
+ after_save :update_counters_cache!
11
+ after_destroy :update_counters_cache!
12
+
9
13
  markdown_on :content
10
14
 
11
15
  def notify!
@@ -16,6 +20,10 @@ class Message < ApplicationRecord
16
20
  sender_user == discussion&.initiator
17
21
  end
18
22
 
23
+ def from_moderator?
24
+ sender_user.moderator_here?
25
+ end
26
+
19
27
  def from_user?(user)
20
28
  sender_user == user
21
29
  end
@@ -33,9 +41,9 @@ class Message < ApplicationRecord
33
41
  end
34
42
 
35
43
  def to_resource_h
36
- as_json(except: [:id, :type, :discussion_id, :approved],
44
+ as_json(except: [:id, :type, :discussion_id, :approved, :not_actually_a_question],
37
45
  include: {exercise: {only: [:bibliotheca_id]}})
38
- .merge(organization: Organization.current.name)
46
+ .merge(organization: Organization.current.name)
39
47
  end
40
48
 
41
49
  def read!
@@ -46,11 +54,27 @@ class Message < ApplicationRecord
46
54
  toggle! :approved
47
55
  end
48
56
 
57
+ def toggle_not_actually_a_question!
58
+ toggle! :not_actually_a_question
59
+ end
60
+
61
+ def validated?
62
+ approved? || from_moderator?
63
+ end
64
+
65
+ def update_counters_cache!
66
+ discussion&.update_counters!
67
+ end
68
+
69
+ def question?
70
+ from_initiator? && !not_actually_a_question?
71
+ end
72
+
49
73
  def self.parse_json(json)
50
74
  message = json.delete 'message'
51
75
  json
52
- .except('uid', 'exercise_id')
53
- .merge(message)
76
+ .except('uid', 'exercise_id')
77
+ .merge(message)
54
78
  end
55
79
 
56
80
  def self.read_all!
@@ -18,6 +18,7 @@ class Organization < ApplicationRecord
18
18
  has_many :usages
19
19
 
20
20
  validates_presence_of :contact_email, :locale
21
+ validates_presence_of :welcome_email_template, if: :greet_new_users?
21
22
  validates :name, uniqueness: true,
22
23
  presence: true,
23
24
  format: { with: Mumukit::Platform::Organization.anchored_valid_name_regex }
@@ -105,17 +106,8 @@ class Organization < ApplicationRecord
105
106
  # ask for help in this organization
106
107
  #
107
108
  # Warning: this method does not strictly check user's permission
108
- def ask_for_help_enabled?(user = nil)
109
- report_issue_enabled? || community_link.present? || can_create_discussions?(user)
110
- end
111
-
112
- # Tells if the given user can
113
- # create discussion in this organization
114
- #
115
- # This is true only when this organization has a forum and the user
116
- # has the discusser pseudo-permission
117
- def can_create_discussions?(user = nil)
118
- forum_enabled? && (!user || user.discusser_of?(self))
109
+ def ask_for_help_enabled?(user)
110
+ report_issue_enabled? || community_link.present? || user.can_discuss_in?(self)
119
111
  end
120
112
 
121
113
  def import_from_resource_h!(resource_h)
@@ -39,6 +39,8 @@ class User < ApplicationRecord
39
39
  before_validation :set_uid!
40
40
  validates :uid, presence: true
41
41
 
42
+ after_save :welcome_to_new_organizations!, if: :gained_access_to_new_orga?
43
+
42
44
  resource_fields :uid, :social_id, :email, :permissions, :verified_first_name, :verified_last_name, *profile_fields
43
45
 
44
46
  def last_lesson
@@ -169,17 +171,76 @@ class User < ApplicationRecord
169
171
  sequence[0..count + lookahead - 1]
170
172
  end
171
173
 
174
+ # Tells if the given user can discuss in an organization
175
+ #
176
+ # This is true only when this organization has the forum enabled and the user
177
+ # has the discusser pseudo-permission and the discusser is trusted
178
+ def can_discuss_in?(organization)
179
+ organization.forum_enabled? && discusser_of?(organization) && trusted_as_discusser_in?(organization)
180
+ end
181
+
182
+ def trusted_as_discusser_in?(organization)
183
+ trusted_for_forum? || !organization.forum_only_for_trusted?
184
+ end
185
+
186
+ def can_discuss_here?
187
+ can_discuss_in? Organization.current
188
+ end
189
+
190
+ def name_initials
191
+ name.split.map(&:first).map(&:capitalize).join(' ')
192
+ end
193
+
194
+ def progress_at(content, organization)
195
+ Indicator.find_or_initialize_by(user: self, organization: organization, content: content)
196
+ end
197
+
198
+ def build_assignment(exercise, organization)
199
+ assignments.build(exercise: exercise, organization: organization)
200
+ end
201
+
202
+ def pending_siblings_at(content)
203
+ content.pending_siblings_for(self)
204
+ end
205
+
206
+ def next_exercise_at(guide)
207
+ guide.pending_exercises(self).order('public.exercises.number asc').first
208
+ end
209
+
210
+ def run_submission!(submission, assignment, evaluation)
211
+ submission.run! assignment, evaluation
212
+ end
213
+
214
+ def incognito?
215
+ false
216
+ end
217
+
172
218
  private
173
219
 
220
+ def welcome_to_new_organizations!
221
+ new_accessible_organizations.each do |organization|
222
+ UserMailer.welcome_email(self, organization).deliver_later if organization.greet_new_users?
223
+ end
224
+ end
225
+
226
+ def gained_access_to_new_orga?
227
+ new_accessible_organizations.present?
228
+ end
229
+
230
+ def new_accessible_organizations
231
+ return [] unless saved_change_to_permissions?
232
+
233
+ old, new = saved_change_to_permissions
234
+ new_organizations = (new.any_granted_organizations - old.any_granted_organizations).to_a
235
+ Organization.where(name: new_organizations)
236
+ end
237
+
174
238
  def set_uid!
175
239
  self.uid ||= email
176
240
  end
177
241
 
178
242
  def init
179
- # Temporarily keep using image_url until avatars are created
180
- # self.avatar = Avatar.sample unless profile_picture.present?
181
-
182
- self.image_url ||= "user_shape.png"
243
+ self.avatar = Avatar.sample unless profile_picture.present?
183
244
  end
184
245
 
185
246
  def self.sync_key_id_field
@@ -0,0 +1,5 @@
1
+ class AddCourseToExam < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_reference :exams, :course
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ class AddPassingCriterionsToExam < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_column :exams, :passing_criterion_type, :integer, default: 0
4
+ add_column :exams, :passing_criterion_value, :integer
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ class AddMessagesCountToDiscussion < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_column :discussions, :messages_count, :integer, default: 0
4
+ add_column :discussions, :validated_messages_count, :integer, default: 0
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ class AddNotActuallyAQuestionFieldToMessages < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_column :messages, :not_actually_a_question, :boolean, default: false
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddRequiresModeratorResponseToDiscussions < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_column :discussions, :requires_moderator_response, :boolean, default: true
4
+ end
5
+ end
@@ -0,0 +1,5 @@
1
+ class AddTrustedForForumToUser < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_column :users, :trusted_for_forum, :boolean
4
+ end
5
+ end
@@ -0,0 +1,6 @@
1
+ class AddLastModeratorAccessFieldsToDiscussion < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_column :discussions, :last_moderator_access_by_id, :string
4
+ add_column :discussions, :last_moderator_access_at, :datetime
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ class AddIncognitoModeEnabledToOrganization < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_column :organizations, :incognito_mode_enabled, :boolean
4
+ end
5
+ end
@@ -26,6 +26,7 @@ Mumukit::Platform.configure do |config|
26
26
  end
27
27
 
28
28
  require_relative './domain/area'
29
+ require_relative './domain/incognito'
29
30
  require_relative './domain/evaluation'
30
31
  require_relative './domain/submission'
31
32
  require_relative './domain/status'
@@ -2,8 +2,10 @@ FactoryBot.define do
2
2
  factory :course do
3
3
  period { '2016' }
4
4
  shifts { %w(morning) }
5
+ code { "k1234-#{SecureRandom.uuid}" }
5
6
  days { %w(monday wednesday) }
6
7
  description { 'test' }
7
8
  organization_id { 1 }
9
+ slug { "#{Organization.current.name}/#{period}-#{code}" }
8
10
  end
9
11
  end
@@ -1,7 +1,7 @@
1
1
  FactoryBot.define do
2
2
  factory :discussion do
3
- title { 'A discussion' }
4
- description { 'A discussion description' }
3
+ title { Faker::Lorem.sentence(word_count: 2) }
4
+ description { Faker::Lorem.sentence(word_count: 5) }
5
5
  initiator { create(:user) }
6
6
  item { create(:exercise) }
7
7
  organization { Organization.current rescue nil }
@@ -3,6 +3,7 @@ FactoryBot.define do
3
3
  factory :exam, traits: [:guide_container] do
4
4
  duration { Faker::Number.between(from: 10, to:60).minutes }
5
5
  organization { Organization.current }
6
+ course { create(:course) }
6
7
  start_time { 5.minutes.ago }
7
8
  end_time { 10.minutes.since }
8
9
  end
@@ -1,11 +1,6 @@
1
1
  FactoryBot.define do
2
2
 
3
3
  factory :message do
4
- exercise_id { Faker::Internet.number(2) }
5
- assignment
6
- submission_id { assignment.id }
7
- sender { Faker::Internet.email }
8
- type { 'success' }
9
- content { Faker::Lorem.sentence(3) }
4
+ content { Faker::Lorem.sentence(word_count: 3) }
10
5
  end
11
6
  end
@@ -0,0 +1,112 @@
1
+ module Mumuki::Domain
2
+ class IncognitoClass
3
+
4
+ def incognito?
5
+ true
6
+ end
7
+
8
+ # ============
9
+ # Permissions
10
+ # ============
11
+
12
+ def ensure_enabled!
13
+ end
14
+
15
+ def has_student_granted_organizations?
16
+ false
17
+ end
18
+
19
+ def teacher_here?
20
+ false
21
+ end
22
+
23
+ def teacher_of?(*)
24
+ false
25
+ end
26
+
27
+ def profile_completed?
28
+ true
29
+ end
30
+
31
+ def writer?
32
+ false
33
+ end
34
+
35
+ def moderator_here?
36
+ false
37
+ end
38
+
39
+ def can_discuss_here?
40
+ false
41
+ end
42
+
43
+ # ========
44
+ # Visiting
45
+ # ========
46
+
47
+ def visit!(*)
48
+ end
49
+
50
+ # ========
51
+ # Progress
52
+ # ========
53
+
54
+ def next_exercise_at(guide)
55
+ guide.exercises.first
56
+ end
57
+
58
+ # def completed_containers_with_lookahead(*)
59
+ # raise 'Unsupported operation. Userless mode and progressive display modes are incompatible'
60
+ # end
61
+
62
+ def progress_at(content, organization)
63
+ Indicator.new content: content, organization: organization
64
+ end
65
+
66
+ def build_assignment(exercise, organization)
67
+ Assignment.new exercise: exercise, organization: organization, submitter: self
68
+ end
69
+
70
+ def pending_siblings_at(content)
71
+ []
72
+ end
73
+
74
+ # ============
75
+ # ActiveRecord
76
+ # ============
77
+
78
+ def id
79
+ '<incognito>'
80
+ end
81
+
82
+ def is_a?(other)
83
+ other.is_a?(Class) && other.name == 'User' || super
84
+ end
85
+
86
+ def _read_attribute(key)
87
+ return id if key == 'id'
88
+ raise "unknown attribute #{key}"
89
+ end
90
+
91
+ def self.primary_key
92
+ 'id'
93
+ end
94
+
95
+ # ==========
96
+ # Evaluation
97
+ # ==========
98
+
99
+ def interpolations
100
+ []
101
+ end
102
+
103
+ def run_submission!(submission, assignment, evaluation)
104
+ results = submission.dry_run! assignment, evaluation
105
+ assignment.assign_attributes results
106
+ results
107
+ end
108
+
109
+ end
110
+
111
+ Incognito = IncognitoClass.new
112
+ end
@@ -11,7 +11,8 @@ class Mumuki::Domain::Organization::Profile < Mumukit::Platform::Model
11
11
  :contact_email,
12
12
  :terms_of_service,
13
13
  :community_link,
14
- :errors_explanations
14
+ :errors_explanations,
15
+ :welcome_email_template
15
16
 
16
17
  def locale_json
17
18
  locale_h.to_json
@@ -1,19 +1,22 @@
1
1
  class Mumuki::Domain::Organization::Settings < Mumukit::Platform::Model
2
2
  include Mumukit::Login::LoginSettingsHelpers
3
3
 
4
- model_attr_accessor :login_methods,
4
+ model_attr_accessor :disabled_from,
5
+ :embeddable?,
6
+ :feedback_suggestions_enabled?,
7
+ :forum_discussions_minimal_role,
8
+ :forum_enabled?,
9
+ :forum_only_for_trusted?,
10
+ :gamification_enabled?,
11
+ :immersive?,
12
+ :in_preparation_until,
13
+ :login_methods,
5
14
  :login_provider,
6
15
  :login_provider_settings,
7
- :forum_discussions_minimal_role,
8
- :raise_hand_enabled?,
9
- :feedback_suggestions_enabled?,
10
16
  :public?,
11
- :embeddable?,
12
- :immersive?,
13
- :forum_enabled?,
17
+ :raise_hand_enabled?,
14
18
  :report_issue_enabled?,
15
- :disabled_from,
16
- :in_preparation_until
19
+ :greet_new_users?
17
20
 
18
21
  def private?
19
22
  !public?
@@ -14,10 +14,6 @@ module Mumuki::Domain::Status::Discussion
14
14
  define_method(selector) { false }
15
15
  end
16
16
 
17
- def allowed_for?(*)
18
- true
19
- end
20
-
21
17
  def reachable_statuses_for_moderator(*)
22
18
  []
23
19
  end
@@ -38,10 +34,6 @@ module Mumuki::Domain::Status::Discussion
38
34
  end
39
35
  end
40
36
 
41
- def allowed_statuses_for(user, discussion)
42
- STATUSES.select { |it| it.allowed_for?(user, discussion) }
43
- end
44
-
45
37
  def as_json(_options={})
46
38
  to_s
47
39
  end
@@ -9,6 +9,7 @@ class Mumuki::Domain::Submission::Base
9
9
  :submission_id, :queries, :query_results, :manual_evaluation_comment]
10
10
 
11
11
  attr_accessor *ATTRIBUTES
12
+ attr_accessor :client_result
12
13
 
13
14
  def self.from_attributes(*args)
14
15
  new ATTRIBUTES.zip(args).to_h
@@ -20,12 +21,21 @@ class Mumuki::Domain::Submission::Base
20
21
 
21
22
  def run!(assignment, evaluation)
22
23
  save_submission! assignment
23
- results = evaluation.evaluate! assignment, self
24
+ results = dry_run! assignment, evaluation
24
25
  save_results! results, assignment
25
26
  notify_results! results, assignment
26
27
  results
27
28
  end
28
29
 
30
+ def dry_run!(assignment, evaluation)
31
+ evaluation.evaluate! assignment, self
32
+ end
33
+
34
+ def with_client_result(result)
35
+ self.client_result = result if result.present?
36
+ self
37
+ end
38
+
29
39
  def evaluate!(assignment)
30
40
  try_evaluate! assignment
31
41
  rescue => e
@@ -2,6 +2,8 @@ class Mumuki::Domain::Submission::Solution < Mumuki::Domain::Submission::Persist
2
2
  attr_accessor :content
3
3
 
4
4
  def try_evaluate!(assignment)
5
- assignment.run_tests!(content: content).except(:response_type)
5
+ assignment
6
+ .run_tests!({client_result: client_result}.compact.merge(content: content))
7
+ .except(:response_type)
6
8
  end
7
9
  end
@@ -1,5 +1,5 @@
1
1
  module Mumuki
2
2
  module Domain
3
- VERSION = '7.6.0'
3
+ VERSION = '7.8.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mumuki-domain
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.6.0
4
+ version: 7.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Franco Leonardo Bulgarelli
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-15 00:00:00.000000000 Z
11
+ date: 2020-08-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '7.6'
33
+ version: '7.8'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '7.6'
40
+ version: '7.8'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: mumukit-assistant
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -299,6 +299,7 @@ files:
299
299
  - app/models/discussion.rb
300
300
  - app/models/event.rb
301
301
  - app/models/exam.rb
302
+ - app/models/exam/passing_criterion.rb
302
303
  - app/models/exam_authorization.rb
303
304
  - app/models/exercise.rb
304
305
  - app/models/exercise/challenge.rb
@@ -604,7 +605,15 @@ files:
604
605
  - db/migrate/20200508191543_create_avatars.rb
605
606
  - db/migrate/20200518135658_add_avatar_to_users.rb
606
607
  - db/migrate/20200527180729_add_disabled_at_to_users.rb
608
+ - db/migrate/20200601203033_add_course_to_exam.rb
609
+ - db/migrate/20200605161350_add_passing_criterions_to_exam.rb
607
610
  - db/migrate/20200608132959_add_progressive_display_lookahead_to_organizations.rb
611
+ - db/migrate/20200702165503_add_messages_count_to_discussion.rb
612
+ - db/migrate/20200728162727_add_not_actually_a_question_field_to_messages.rb
613
+ - db/migrate/20200728163038_add_requires_moderator_response_to_discussions.rb
614
+ - db/migrate/20200730221001_add_trusted_for_forum_to_user.rb
615
+ - db/migrate/20200731081757_add_last_moderator_access_fields_to_discussion.rb
616
+ - db/migrate/20200804191643_add_incognito_mode_enabled_to_organization.rb
608
617
  - lib/mumuki/domain.rb
609
618
  - lib/mumuki/domain/area.rb
610
619
  - lib/mumuki/domain/engine.rb
@@ -649,6 +658,7 @@ files:
649
658
  - lib/mumuki/domain/helpers/course.rb
650
659
  - lib/mumuki/domain/helpers/organization.rb
651
660
  - lib/mumuki/domain/helpers/user.rb
661
+ - lib/mumuki/domain/incognito.rb
652
662
  - lib/mumuki/domain/locales/activerecord/en.yml
653
663
  - lib/mumuki/domain/locales/activerecord/es.yml
654
664
  - lib/mumuki/domain/locales/activerecord/pt.yml
@@ -714,8 +724,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
714
724
  - !ruby/object:Gem::Version
715
725
  version: '0'
716
726
  requirements: []
717
- rubyforge_project:
718
- rubygems_version: 2.7.7
727
+ rubygems_version: 3.0.8
719
728
  signing_key:
720
729
  specification_version: 4
721
730
  summary: Mumuki Platform's Domain Model