mumuki-domain 9.16.0 → 9.20.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d6ca5bebdea5c189193c066336fc00f63aadee23e7a3d898fc90f9801eb118da
4
- data.tar.gz: 4f6320243a816ca7be058072d587ee53765afb1eb5e5d25df5d5c774c4e79fc6
3
+ metadata.gz: 444b1f0d9b9045b65edc00adfa94535e351fb2d0c906e1f5f4ddce6a8ae7da8c
4
+ data.tar.gz: 9363d9f7b2f7db38f13913a4396417af31583e8d8f45443d3e3792f8add84f8c
5
5
  SHA512:
6
- metadata.gz: 2cc91011652076858bef72e4e6bded616ab09ae49bc04f88161898546fe4ed5855ec7164d1f8b6999d270caefddb6f7965c16f641b417e6ddffa33716e4fe7a1
7
- data.tar.gz: ce626e9a3577946dfbe671924bc1e444292cf5947bce1811739d8ad94b02f3c09c0f3a8fba825aa77967f123ede918ca1cfa19edd625c2709f41ddb1a6706bb5
6
+ metadata.gz: 1e214a051c3d7ea39244492a5a6ce85e9e96089f0ba7ae880f6a051cb75222bfbf40a643de40b950d7555bff1fe71c3c119561212751626489804eda3c0f7157
7
+ data.tar.gz: 8262781e1b3e394c222085f7730a869a37b1b8b7145520c429d02f5fba7997cc719aaa3fc1db54d04fc928ecf47dc612a0cd4b670de8b905fc21bedfecda2416
@@ -68,6 +68,10 @@ class Assignment < Progress
68
68
  end
69
69
  end
70
70
 
71
+ def randomized_values
72
+ exercise.randomizer.randomized_values(submitter.id)
73
+ end
74
+
71
75
  def save_submission!(submission)
72
76
  transaction do
73
77
  update! submission_id: submission.id
@@ -182,8 +186,8 @@ class Assignment < Progress
182
186
  language: {only: [:name]}},
183
187
  },
184
188
  exercise: {only: [:name, :number]},
185
- submitter: {only: [:email, :social_id, :uid], methods: [:name, :profile_picture]}}).
186
- deep_merge(
189
+ submitter: {only: [:email, :social_id, :uid], methods: [:name, :profile_picture]}})
190
+ .deep_merge(
187
191
  'organization' => Organization.current.name,
188
192
  'sid' => submission_id,
189
193
  'created_at' => submitted_at || updated_at,
@@ -198,6 +202,7 @@ class Assignment < Progress
198
202
  'position' => navigable_parent.try(:number),
199
203
  'chapter' => guide.chapter.as_json(only: [:id], methods: [:name])
200
204
  }})
205
+ .merge({'randomized_values' => randomized_values.presence}.compact)
201
206
  end
202
207
 
203
208
  def tips
@@ -9,7 +9,7 @@ class Organization::Status::InPreparation < Organization::Status::Base
9
9
  end
10
10
 
11
11
  def ex_student_access_mode(user)
12
- OrganizationAccessMode::Forbidden.new user, organization
12
+ OrganizationAccessMode::ReadOnly.new user, organization, :faqs, :profile
13
13
  end
14
14
 
15
15
  def outsider_access_mode(user)
data/app/models/exam.rb CHANGED
@@ -49,7 +49,7 @@ class Exam < ApplicationRecord
49
49
  end
50
50
 
51
51
  def accessible_for?(user)
52
- authorized?(user) && enabled_for?(user)
52
+ (authorized?(user) && enabled_for?(user)) || user&.teacher_of?(course)
53
53
  end
54
54
 
55
55
  def timed?
@@ -96,6 +96,10 @@ class Exam < ApplicationRecord
96
96
  end
97
97
  end
98
98
 
99
+ def time_left(user)
100
+ (real_end_time(user) - Time.current).round
101
+ end
102
+
99
103
  def started_at(user)
100
104
  authorization_for(user).started_at
101
105
  end
@@ -76,6 +76,18 @@ class ExamRegistration < ApplicationRecord
76
76
  authorization_criterion.meets_criterion?(user, organization)
77
77
  end
78
78
 
79
+ def available_exams
80
+ return exams unless limited_authorization_requests?
81
+ counts = authorization_request_ids_counts
82
+ exams.select do |it|
83
+ counts[it.id].to_i < authorization_requests_limit
84
+ end
85
+ end
86
+
87
+ def limited_authorization_requests?
88
+ authorization_requests_limit.present?
89
+ end
90
+
79
91
  def multiple_options?
80
92
  exams.count > 1
81
93
  end
@@ -84,9 +96,39 @@ class ExamRegistration < ApplicationRecord
84
96
  end_time.past?
85
97
  end
86
98
 
99
+ def request_authorization!(user, exam)
100
+ with_available_exam exam do
101
+ authorization_requests.find_or_create_by! user: user do |it|
102
+ it.assign_attributes organization: organization, exam: exam
103
+ end
104
+ end
105
+ end
106
+
107
+ def update_authorization_request_by_id!(request_id, exam)
108
+ with_available_exam exam do
109
+ authorization_requests.update request_id, exam: exam
110
+ end
111
+ end
112
+
113
+ def authorization_request_ids_counts
114
+ authorization_requests.group(:exam_id).count
115
+ end
116
+
117
+ def exam_available?(exam)
118
+ available_exams.include? exam
119
+ end
120
+
121
+ def with_available_exam(exam, &block)
122
+ transaction do
123
+ raise Mumuki::Domain::GoneError unless exam_available?(exam)
124
+ block.call
125
+ end
126
+ end
127
+
87
128
  private
88
129
 
89
130
  def notify_registree!(registree)
90
131
  Notification.create_and_notify_via_email! organization: organization, user: registree, subject: :exam_registration, target: self
91
132
  end
133
+
92
134
  end
@@ -17,7 +17,7 @@ class OrganizationAccessMode::ReadOnly < OrganizationAccessMode::Base
17
17
  end
18
18
 
19
19
  def validate_discuss_here!(discussion)
20
- super(discussion) unless discussion&.initiator == user
20
+ super(discussion) unless discuss_here? && discussion&.initiator == user
21
21
  end
22
22
 
23
23
  def show_content?(content)
data/app/models/user.rb CHANGED
@@ -157,8 +157,8 @@ class User < ApplicationRecord
157
157
  save_and_notify!
158
158
  end
159
159
 
160
- def detach!(role, course)
161
- make_ex_student_of! course.slug if student_of?(course.slug) && solved_any_exercises?(course.organization)
160
+ def detach!(role, course, deep: false)
161
+ make_ex_student_of! course.slug if !deep && student_of?(course.slug) && solved_any_exercises?(course.organization)
162
162
  remove_permission! role, course.slug
163
163
  save_and_notify!
164
164
  end
@@ -0,0 +1,5 @@
1
+ class AddAuthorizationRequestsLimitToExamRegistration < ActiveRecord::Migration[5.1]
2
+ def change
3
+ add_column :exam_registrations, :authorization_requests_limit, :integer
4
+ end
5
+ end
@@ -1,5 +1,5 @@
1
1
  module Mumuki
2
2
  module Domain
3
- VERSION = '9.16.0'
3
+ VERSION = '9.20.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: 9.16.0
4
+ version: 9.20.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: 2021-09-16 00:00:00.000000000 Z
11
+ date: 2021-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -114,14 +114,14 @@ dependencies:
114
114
  requirements:
115
115
  - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: '1.0'
117
+ version: '1.2'
118
118
  type: :runtime
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: '1.0'
124
+ version: '1.2'
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: mumukit-platform
127
127
  requirement: !ruby/object:Gem::Requirement
@@ -686,6 +686,7 @@ files:
686
686
  - db/migrate/20210707143002_add_assignment_id_to_message.rb
687
687
  - db/migrate/20210719145706_add_new_fields_to_notifications.rb
688
688
  - db/migrate/20210803175124_add_ignored_notifications_to_users.rb
689
+ - db/migrate/20210929223144_add_authorization_requests_limit_to_exam_registration.rb
689
690
  - lib/mumuki/domain.rb
690
691
  - lib/mumuki/domain/area.rb
691
692
  - lib/mumuki/domain/engine.rb