mumuki-domain 7.4.0 → 7.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/assignment.rb +1 -1
- data/app/models/avatar.rb +5 -0
- data/app/models/book.rb +13 -0
- data/app/models/concerns/{with_content.rb → container.rb} +1 -1
- data/app/models/concerns/contextualization.rb +55 -8
- data/app/models/concerns/disabling.rb +37 -0
- data/app/models/concerns/guide_container.rb +1 -1
- data/app/models/concerns/submittable/solvable.rb +1 -1
- data/app/models/concerns/topic_container.rb +1 -1
- data/app/models/concerns/with_editor.rb +1 -1
- data/app/models/concerns/with_progress.rb +4 -0
- data/app/models/course.rb +5 -0
- data/app/models/exercise.rb +3 -3
- data/app/models/guide.rb +1 -1
- data/app/models/organization.rb +16 -0
- data/app/models/stats.rb +2 -2
- data/app/models/user.rb +44 -3
- data/db/migrate/20200508191543_create_avatars.rb +8 -0
- data/db/migrate/20200518135658_add_avatar_to_users.rb +5 -0
- data/db/migrate/20200527180729_add_disabled_at_to_users.rb +6 -0
- data/db/migrate/20200608132959_add_progressive_display_lookahead_to_organizations.rb +5 -0
- data/lib/mumuki/domain.rb +2 -0
- data/lib/mumuki/domain/area.rb +13 -0
- data/lib/mumuki/domain/exceptions.rb +3 -0
- data/lib/mumuki/domain/exceptions/disabled_error.rb +2 -0
- data/lib/mumuki/domain/exceptions/disabled_organization_error.rb +2 -0
- data/lib/mumuki/domain/exceptions/unprepared_organization_error.rb +2 -0
- data/lib/mumuki/domain/extensions/hash.rb +11 -2
- data/lib/mumuki/domain/extensions/string.rb +44 -0
- data/lib/mumuki/domain/factories/book_factory.rb +2 -2
- data/lib/mumuki/domain/factories/chapter_factory.rb +2 -2
- data/lib/mumuki/domain/factories/exam_factory.rb +1 -1
- data/lib/mumuki/domain/factories/guide_factory.rb +2 -2
- data/lib/mumuki/domain/factories/invitation_factory.rb +1 -1
- data/lib/mumuki/domain/factories/topic_factory.rb +2 -2
- data/lib/mumuki/domain/factories/user_factory.rb +1 -0
- data/lib/mumuki/domain/helpers/organization.rb +6 -1
- data/lib/mumuki/domain/helpers/user.rb +7 -7
- data/lib/mumuki/domain/locales/activerecord/en.yml +1 -0
- data/lib/mumuki/domain/locales/activerecord/es.yml +1 -0
- data/lib/mumuki/domain/locales/activerecord/pt.yml +1 -0
- data/lib/mumuki/domain/organization/settings.rb +11 -1
- data/lib/mumuki/domain/status/discussion/discussion.rb +4 -0
- data/lib/mumuki/domain/status/submission/skipped.rb +0 -4
- data/lib/mumuki/domain/status/submission/submission.rb +5 -3
- data/lib/mumuki/domain/version.rb +1 -1
- data/lib/mumuki/domain/workspace.rb +38 -0
- metadata +16 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bdb048ee9a17b03d534fd49140b3a30a014af1110ac0f50fc0b25243a6a069ee
|
4
|
+
data.tar.gz: 3790eb4813fdae432c358ceaee88047a4f45a63cbe89c10a22e48f10ddde0d91
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a34d18802a4a8178bbacfcc8e7e2c403a8da4493062639309bc6fdabc557d8d6655aa0f173530113859633bac7de69d8426c39934cfc6c9bee4ce62e8cffaf49
|
7
|
+
data.tar.gz: 71852152c330213e65cacebfa5ee1256f1efbb940088cf5a2e89081d74fbaaf27b02af844f167fffdab9a9514016c3defa060e0665c08f9d85c7cf4e2b79012c
|
data/app/models/assignment.rb
CHANGED
@@ -168,7 +168,7 @@ class Assignment < Progress
|
|
168
168
|
language: {only: [:name]}},
|
169
169
|
},
|
170
170
|
exercise: {only: [:name, :number]},
|
171
|
-
submitter: {only: [:email, :
|
171
|
+
submitter: {only: [:email, :social_id, :uid], methods: [:name, :profile_picture]}}).
|
172
172
|
deep_merge(
|
173
173
|
'organization' => Organization.current.name,
|
174
174
|
'sid' => submission_id,
|
data/app/models/book.rb
CHANGED
@@ -62,4 +62,17 @@ class Book < Content
|
|
62
62
|
def structural_parent
|
63
63
|
nil
|
64
64
|
end
|
65
|
+
|
66
|
+
## progressive display
|
67
|
+
|
68
|
+
def enabled_chapters_in(workspace)
|
69
|
+
workspace.enabled_containers(chapters)
|
70
|
+
end
|
71
|
+
|
72
|
+
# experimental API - it may change in the future.
|
73
|
+
# This method assumes no gaps in the sequences are introduced
|
74
|
+
# by enabled_chapters_in
|
75
|
+
def chapter_visibilities_in(workspace)
|
76
|
+
chapters.zip(enabled_chapters_in(workspace)).map { |chapter, enabled| [chapter, !enabled.nil?] }
|
77
|
+
end
|
65
78
|
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?, *Mumuki::Domain::Status::Submission.test_selectors, to: :submission_status
|
28
|
+
delegate :should_retry?, :to_submission_status, :completed?, :solved?, *Mumuki::Domain::Status::Submission.test_selectors, to: :submission_status
|
29
29
|
delegate :inspection_keywords, to: :exercise
|
30
30
|
end
|
31
31
|
|
@@ -35,20 +35,38 @@ module Contextualization
|
|
35
35
|
end
|
36
36
|
end
|
37
37
|
|
38
|
+
# deprecated: this method does hidden assumptions about the UI not wanting
|
39
|
+
# non-empty titles to not be displayed. Also it incorrectly uses the term `visual` instead of `visible`
|
38
40
|
def single_visual_result?
|
39
|
-
|
41
|
+
warn 'use single_visible_test_result? instead'
|
42
|
+
single_visible_test_result? && first_test_result[:title].blank?
|
40
43
|
end
|
41
44
|
|
45
|
+
# deprecated: this method does not validate nor depends on any `visible` condition
|
46
|
+
# Also, it incorrectly uses the term `visual` instead of `visible`
|
42
47
|
def single_visual_result_html
|
43
|
-
|
48
|
+
warn 'use first_test_result_html intead'
|
49
|
+
first_test_result_html
|
44
50
|
end
|
45
51
|
|
46
|
-
def
|
47
|
-
|
52
|
+
def single_visible_test_result?
|
53
|
+
test_results.size == 1 && visible_success_output?
|
54
|
+
end
|
55
|
+
|
56
|
+
def first_test_result
|
57
|
+
test_results.first
|
48
58
|
end
|
49
59
|
|
50
|
-
def
|
51
|
-
|
60
|
+
def first_test_result_html
|
61
|
+
test_result_html first_test_result
|
62
|
+
end
|
63
|
+
|
64
|
+
def test_result_html(test_result)
|
65
|
+
output_content_type.to_html test_result[:result]
|
66
|
+
end
|
67
|
+
|
68
|
+
def results_body_hidden?
|
69
|
+
(passed? && !visible_success_output?) || exercise.choice? || manual_evaluation_pending? || skipped?
|
52
70
|
end
|
53
71
|
|
54
72
|
def visible_status
|
@@ -68,7 +86,7 @@ module Contextualization
|
|
68
86
|
end
|
69
87
|
|
70
88
|
def failed_expectation_results
|
71
|
-
expectation_results.to_a.select { |it| it[:result].failed? }
|
89
|
+
expectation_results.to_a.select { |it| it[:result].failed? }.uniq
|
72
90
|
end
|
73
91
|
|
74
92
|
def expectation_results_visible?
|
@@ -80,6 +98,7 @@ module Contextualization
|
|
80
98
|
end
|
81
99
|
|
82
100
|
def humanized_expectation_results
|
101
|
+
warn "Don't use humanized_expectation_results. Use affable_expectation_results, which also handles markdown and sanitization"
|
83
102
|
visible_expectation_results.map do |it|
|
84
103
|
{
|
85
104
|
result: it[:result],
|
@@ -87,4 +106,32 @@ module Contextualization
|
|
87
106
|
}
|
88
107
|
end
|
89
108
|
end
|
109
|
+
|
110
|
+
####################
|
111
|
+
## Affable results
|
112
|
+
####################
|
113
|
+
|
114
|
+
def affable_expectation_results
|
115
|
+
visible_expectation_results.map do |it|
|
116
|
+
{
|
117
|
+
result: it[:result],
|
118
|
+
explanation: Mulang::Expectation.parse(it).translate(inspection_keywords).affable
|
119
|
+
}
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
def affable_tips
|
124
|
+
tips.map(&:affable)
|
125
|
+
end
|
126
|
+
|
127
|
+
def affable_test_results
|
128
|
+
test_results.to_a.map do |it|
|
129
|
+
{ summary: it.dig(:summary, :message).affable }
|
130
|
+
.compact
|
131
|
+
.merge(
|
132
|
+
title: it[:title].affable,
|
133
|
+
result: it[:result].sanitized,
|
134
|
+
status: it[:status])
|
135
|
+
end
|
136
|
+
end
|
90
137
|
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# The disposable module is a soft-delete helper that:
|
2
|
+
#
|
3
|
+
# * adds `disable!` method that set a `disabled_at` attribute and then _buries_ the object
|
4
|
+
# * adds a `bury!` hook method that allows further modification when disabling
|
5
|
+
# * aliases `destroy!` and `destroy` to `disable!`, but still keeps `delete` and friends
|
6
|
+
#
|
7
|
+
module Disabling
|
8
|
+
extend ActiveSupport::Concern
|
9
|
+
|
10
|
+
def disable!
|
11
|
+
transaction do
|
12
|
+
update_attribute :disabled_at, Time.current
|
13
|
+
bury!
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def disabled?
|
18
|
+
disabled_at.present?
|
19
|
+
end
|
20
|
+
|
21
|
+
def enabled?
|
22
|
+
!disabled?
|
23
|
+
end
|
24
|
+
|
25
|
+
# override to perform additional
|
26
|
+
# post-disable actions
|
27
|
+
def bury!
|
28
|
+
end
|
29
|
+
|
30
|
+
def ensure_enabled!
|
31
|
+
raise Mumuki::Domain::DisabledError if disabled?
|
32
|
+
end
|
33
|
+
|
34
|
+
alias_method :destroy!, :disable!
|
35
|
+
alias_method :destroy, :disable!
|
36
|
+
end
|
37
|
+
|
@@ -1,7 +1,7 @@
|
|
1
1
|
module Solvable
|
2
2
|
def submit_solution!(user, attributes={})
|
3
3
|
assignment, _ = find_assignment_and_submit! user, attributes[:content].to_mumuki_solution(language)
|
4
|
-
try_solve_discussions(user) if assignment.
|
4
|
+
try_solve_discussions(user) if assignment.solved?
|
5
5
|
assignment
|
6
6
|
end
|
7
7
|
|
data/app/models/course.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
class Course < ApplicationRecord
|
2
2
|
include Mumuki::Domain::Syncable
|
3
3
|
include Mumuki::Domain::Helpers::Course
|
4
|
+
include Mumuki::Domain::Area
|
4
5
|
|
5
6
|
validates_presence_of :slug, :shifts, :code, :days, :period, :description, :organization_id
|
6
7
|
validates_uniqueness_of :slug
|
@@ -48,4 +49,8 @@ class Course < ApplicationRecord
|
|
48
49
|
def self.sync_key_id_field
|
49
50
|
:slug
|
50
51
|
end
|
52
|
+
|
53
|
+
def to_organization
|
54
|
+
organization
|
55
|
+
end
|
51
56
|
end
|
data/app/models/exercise.rb
CHANGED
@@ -132,7 +132,7 @@ class Exercise < ApplicationRecord
|
|
132
132
|
.merge(settings: self[:settings])
|
133
133
|
.merge(RANDOMIZED_FIELDS.map { |it| [it, self[it]] }.to_h)
|
134
134
|
.symbolize_keys
|
135
|
-
.tap { |it| it.
|
135
|
+
.tap { |it| it.markdownified!(:hint, :corollary, :description, :teacher_info) if options[:markdownified] }
|
136
136
|
end
|
137
137
|
|
138
138
|
def reset!
|
@@ -166,7 +166,7 @@ class Exercise < ApplicationRecord
|
|
166
166
|
end
|
167
167
|
|
168
168
|
def description_context
|
169
|
-
|
169
|
+
splitted_description.first.markdownified
|
170
170
|
end
|
171
171
|
|
172
172
|
def splitted_description
|
@@ -174,7 +174,7 @@ class Exercise < ApplicationRecord
|
|
174
174
|
end
|
175
175
|
|
176
176
|
def description_task
|
177
|
-
|
177
|
+
splitted_description.drop(1).join("\n").markdownified
|
178
178
|
end
|
179
179
|
|
180
180
|
def custom?
|
data/app/models/guide.rb
CHANGED
@@ -104,7 +104,7 @@ class Guide < Content
|
|
104
104
|
.merge(super)
|
105
105
|
.merge(exercises: exercises.map { |it| it.to_resource_h(options) })
|
106
106
|
.merge(language: language.to_embedded_resource_h)
|
107
|
-
.tap { |it| it.
|
107
|
+
.tap { |it| it.markdownified!(:corollary, :description, :teacher_info) if options[:markdownified] }
|
108
108
|
end
|
109
109
|
|
110
110
|
def to_markdownified_resource_h
|
data/app/models/organization.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
class Organization < ApplicationRecord
|
2
2
|
include Mumuki::Domain::Syncable
|
3
3
|
include Mumuki::Domain::Helpers::Organization
|
4
|
+
include Mumuki::Domain::Area
|
4
5
|
|
5
6
|
include Mumukit::Login::OrganizationHelpers
|
6
7
|
|
@@ -11,6 +12,7 @@ class Organization < ApplicationRecord
|
|
11
12
|
markdown_on :description
|
12
13
|
|
13
14
|
validate :ensure_consistent_public_login
|
15
|
+
validate :ensure_valid_activity_range
|
14
16
|
|
15
17
|
belongs_to :book
|
16
18
|
has_many :usages
|
@@ -126,12 +128,26 @@ class Organization < ApplicationRecord
|
|
126
128
|
super.merge(book: book.slug)
|
127
129
|
end
|
128
130
|
|
131
|
+
def to_organization
|
132
|
+
self
|
133
|
+
end
|
134
|
+
|
135
|
+
def enable_progressive_display!(lookahead: 1)
|
136
|
+
update! progressive_display_lookahead: lookahead
|
137
|
+
end
|
138
|
+
|
129
139
|
private
|
130
140
|
|
131
141
|
def ensure_consistent_public_login
|
132
142
|
errors.add(:base, :consistent_public_login) if settings.customized_login_methods? && public?
|
133
143
|
end
|
134
144
|
|
145
|
+
def ensure_valid_activity_range
|
146
|
+
if in_preparation_until.present? && disabled_from.present?
|
147
|
+
errors.add(:base, :invalid_activity_range) if in_preparation_until.to_datetime >= disabled_from.to_datetime
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
135
151
|
def notify_assignments!(assignments)
|
136
152
|
assignments.each { |assignment| assignment.notify! }
|
137
153
|
end
|
data/app/models/stats.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
class Stats
|
2
2
|
include ActiveModel::Model
|
3
3
|
|
4
|
-
attr_accessor :passed, :passed_with_warnings, :failed, :pending
|
4
|
+
attr_accessor :passed, :passed_with_warnings, :failed, :pending, :skipped
|
5
5
|
|
6
6
|
def submitted
|
7
7
|
passed + passed_with_warnings + failed
|
@@ -16,7 +16,7 @@ class Stats
|
|
16
16
|
end
|
17
17
|
|
18
18
|
def self.from_statuses(statuses)
|
19
|
-
Stats.new(statuses.inject({passed: 0, passed_with_warnings: 0, failed: 0, pending: 0}) do |accum, status|
|
19
|
+
Stats.new(statuses.inject({passed: 0, passed_with_warnings: 0, failed: 0, pending: 0, skipped: 0}) do |accum, status|
|
20
20
|
accum[status.group.to_sym] += 1
|
21
21
|
accum
|
22
22
|
end)
|
data/app/models/user.rb
CHANGED
@@ -4,6 +4,7 @@ class User < ApplicationRecord
|
|
4
4
|
WithUserNavigation,
|
5
5
|
WithReminders,
|
6
6
|
WithDiscussionCreation,
|
7
|
+
Disabling,
|
7
8
|
Mumuki::Domain::Helpers::User
|
8
9
|
|
9
10
|
serialize :permissions, Mumukit::Auth::Permissions
|
@@ -31,12 +32,14 @@ class User < ApplicationRecord
|
|
31
32
|
|
32
33
|
after_initialize :init
|
33
34
|
|
34
|
-
enum gender: %i(female male other)
|
35
|
+
enum gender: %i(female male other unspecified)
|
36
|
+
|
37
|
+
belongs_to :avatar, optional: true
|
35
38
|
|
36
39
|
before_validation :set_uid!
|
37
40
|
validates :uid, presence: true
|
38
41
|
|
39
|
-
resource_fields :uid, :social_id, :
|
42
|
+
resource_fields :uid, :social_id, :email, :permissions, :verified_first_name, :verified_last_name, *profile_fields
|
40
43
|
|
41
44
|
def last_lesson
|
42
45
|
last_guide.try(:lesson)
|
@@ -105,6 +108,10 @@ class User < ApplicationRecord
|
|
105
108
|
update! self.class.slice_resource_h json
|
106
109
|
end
|
107
110
|
|
111
|
+
def to_resource_h
|
112
|
+
super.merge(image_url: profile_picture)
|
113
|
+
end
|
114
|
+
|
108
115
|
def verify_name!
|
109
116
|
self.verified_first_name ||= first_name
|
110
117
|
self.verified_last_name ||= last_name
|
@@ -138,6 +145,30 @@ class User < ApplicationRecord
|
|
138
145
|
exams.any? { |e| e.in_progress_for? self }
|
139
146
|
end
|
140
147
|
|
148
|
+
def profile_picture
|
149
|
+
avatar&.image_url || image_url
|
150
|
+
end
|
151
|
+
|
152
|
+
def bury!
|
153
|
+
# TODO change avatar
|
154
|
+
update! self.class.buried_profile.merge(accepts_reminders: false, gender: nil, birthdate: nil)
|
155
|
+
end
|
156
|
+
|
157
|
+
# Takes a didactic - ordered - sequence of content containers
|
158
|
+
# and returns those that have been completed
|
159
|
+
def completed_containers(sequence, organization)
|
160
|
+
sequence.take_while { |it| it.content.completed_for?(self, organization) }
|
161
|
+
end
|
162
|
+
|
163
|
+
# Like `completed_containers`, returns a slice of the completed containers
|
164
|
+
# in the sequence, but adding a configurable number of trailing, non-completed contaienrs
|
165
|
+
def completed_containers_with_lookahead(sequence, organization, lookahead: 1)
|
166
|
+
raise 'invalid lookahead' if lookahead < 1
|
167
|
+
|
168
|
+
count = completed_containers(sequence, organization).size
|
169
|
+
sequence[0..count + lookahead - 1]
|
170
|
+
end
|
171
|
+
|
141
172
|
private
|
142
173
|
|
143
174
|
def set_uid!
|
@@ -145,7 +176,7 @@ class User < ApplicationRecord
|
|
145
176
|
end
|
146
177
|
|
147
178
|
def init
|
148
|
-
self.
|
179
|
+
self.avatar = Avatar.sample unless profile_picture.present?
|
149
180
|
end
|
150
181
|
|
151
182
|
def self.sync_key_id_field
|
@@ -160,4 +191,14 @@ class User < ApplicationRecord
|
|
160
191
|
user[:uid] ||= user[:email]
|
161
192
|
where(uid: user[:uid]).first_or_create(user)
|
162
193
|
end
|
194
|
+
|
195
|
+
# Call this method once as part of application initialization
|
196
|
+
# in order to enable user profile override as part of disabling process
|
197
|
+
def self.configure_buried_profile!(profile)
|
198
|
+
@buried_profile = profile
|
199
|
+
end
|
200
|
+
|
201
|
+
def self.buried_profile
|
202
|
+
(@buried_profile || {}).slice(:first_name, :last_name, :email)
|
203
|
+
end
|
163
204
|
end
|
data/lib/mumuki/domain.rb
CHANGED
@@ -25,6 +25,7 @@ Mumukit::Platform.configure do |config|
|
|
25
25
|
config.organization_class_name = 'Organization'
|
26
26
|
end
|
27
27
|
|
28
|
+
require_relative './domain/area'
|
28
29
|
require_relative './domain/evaluation'
|
29
30
|
require_relative './domain/submission'
|
30
31
|
require_relative './domain/status'
|
@@ -32,6 +33,7 @@ require_relative './domain/exceptions'
|
|
32
33
|
require_relative './domain/file'
|
33
34
|
require_relative './domain/extensions'
|
34
35
|
require_relative './domain/organization'
|
36
|
+
require_relative './domain/workspace'
|
35
37
|
require_relative './domain/helpers'
|
36
38
|
require_relative './domain/syncable'
|
37
39
|
require_relative './domain/store'
|
@@ -2,4 +2,7 @@ require_relative './exceptions/forbidden_error'
|
|
2
2
|
require_relative './exceptions/gone_error'
|
3
3
|
require_relative './exceptions/not_found_error'
|
4
4
|
require_relative './exceptions/unauthorized_error'
|
5
|
+
require_relative './exceptions/disabled_error'
|
5
6
|
require_relative './exceptions/blocked_forum_error'
|
7
|
+
require_relative './exceptions/unprepared_organization_error'
|
8
|
+
require_relative './exceptions/disabled_organization_error'
|
@@ -1,5 +1,14 @@
|
|
1
1
|
class Hash
|
2
|
-
def markdownify!(*keys)
|
3
|
-
|
2
|
+
def markdownify!(*keys, **options)
|
3
|
+
warn "Don't use markdownify. Use markdownified! instead"
|
4
|
+
markdownified! *keys, **options
|
5
|
+
end
|
6
|
+
|
7
|
+
def markdownified!(*keys, **options)
|
8
|
+
keys.each { |it| self[it] = self[it].markdownified(**options) }
|
9
|
+
end
|
10
|
+
|
11
|
+
def markdownified(*keys, **options)
|
12
|
+
map { |k, v| key.in?(keys) ? v.markdownified(options) : v }.to_h
|
4
13
|
end
|
5
14
|
end
|
@@ -27,3 +27,47 @@ class String
|
|
27
27
|
File.extname(self).delete '.'
|
28
28
|
end
|
29
29
|
end
|
30
|
+
|
31
|
+
|
32
|
+
# The nil-safe affable pipeline goes as follow:
|
33
|
+
#
|
34
|
+
# i18n > markdownified > sanitized > affable
|
35
|
+
#
|
36
|
+
# Where:
|
37
|
+
# * i18n: translates to current locale
|
38
|
+
# * markdownified: interpretes markdown in message and generates HTML
|
39
|
+
# * sanitized: sanitizes results HTML
|
40
|
+
# * affable: changes structure to hide low level details
|
41
|
+
#
|
42
|
+
# Other classes may polymorphically implement their own
|
43
|
+
# markdownified, sanitized and affable methods with similar semantics
|
44
|
+
# to extend this pipeline to non-strings
|
45
|
+
class String
|
46
|
+
|
47
|
+
# Creates a humman representation - but not necessary UI - representation
|
48
|
+
# of this string by interpreting its markdown as a one-liner and sanitizing it
|
49
|
+
def affable
|
50
|
+
markdownified(one_liner: true).sanitized
|
51
|
+
end
|
52
|
+
|
53
|
+
# Interprets the markdown on this string, and converts it into HTML
|
54
|
+
def markdownified(**options)
|
55
|
+
Mumukit::ContentType::Markdown.to_html self, options
|
56
|
+
end
|
57
|
+
|
58
|
+
# Sanitizes this string, escaping unsafe HTML sequences
|
59
|
+
def sanitized
|
60
|
+
Mumukit::ContentType::Sanitizer.sanitize self
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
class NilClass
|
65
|
+
def affable
|
66
|
+
end
|
67
|
+
|
68
|
+
def markdownified(**options)
|
69
|
+
end
|
70
|
+
|
71
|
+
def sanitized
|
72
|
+
end
|
73
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
FactoryBot.define do
|
2
2
|
factory :book do
|
3
|
-
name { Faker::Lorem.sentence(3) }
|
4
|
-
description { Faker::Lorem.sentence(30) }
|
3
|
+
name { Faker::Lorem.sentence(word_count: 3) }
|
4
|
+
description { Faker::Lorem.sentence(word_count: 30) }
|
5
5
|
slug { "mumuki/mumuki-test-book-#{SecureRandom.uuid}" }
|
6
6
|
end
|
7
7
|
end
|
@@ -1,12 +1,12 @@
|
|
1
1
|
FactoryBot.define do
|
2
2
|
|
3
3
|
factory :chapter do
|
4
|
-
number { Faker::Number.between(1, 40) }
|
4
|
+
number { Faker::Number.between(from: 1, to: 40) }
|
5
5
|
book { Organization.current.book rescue nil }
|
6
6
|
|
7
7
|
transient do
|
8
8
|
lessons { [] }
|
9
|
-
name { Faker::Lorem.sentence(3) }
|
9
|
+
name { Faker::Lorem.sentence(word_count: 3) }
|
10
10
|
slug { "mumuki/mumuki-test-topic-#{SecureRandom.uuid}" }
|
11
11
|
end
|
12
12
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
FactoryBot.define do
|
2
2
|
|
3
3
|
factory :exam, traits: [:guide_container] do
|
4
|
-
duration { Faker::Number.between(10, 60).minutes }
|
4
|
+
duration { Faker::Number.between(from: 10, to:60).minutes }
|
5
5
|
organization { Organization.current }
|
6
6
|
start_time { 5.minutes.ago }
|
7
7
|
end_time { 10.minutes.since }
|
@@ -11,8 +11,8 @@ FactoryBot.define do
|
|
11
11
|
trait :guide_container do
|
12
12
|
transient do
|
13
13
|
exercises { [] }
|
14
|
-
name { Faker::Lorem.sentence(3) }
|
15
|
-
description { Faker::Lorem.sentence(10) }
|
14
|
+
name { Faker::Lorem.sentence(word_count: 3) }
|
15
|
+
description { Faker::Lorem.sentence(word_count: 10) }
|
16
16
|
language { create(:language) }
|
17
17
|
slug { "mumuki/mumuki-test-lesson-#{SecureRandom.uuid}" }
|
18
18
|
end
|
@@ -1,8 +1,8 @@
|
|
1
1
|
FactoryBot.define do
|
2
2
|
|
3
3
|
factory :topic do
|
4
|
-
name { Faker::Lorem::sentence(3) }
|
5
|
-
description { Faker::Lorem.paragraph(2) }
|
4
|
+
name { Faker::Lorem::sentence(word_count: 3) }
|
5
|
+
description { Faker::Lorem.paragraph(sentence_count: 2) }
|
6
6
|
slug { "mumuki/mumuki-sample-topic-#{SecureRandom.uuid}" }
|
7
7
|
locale { :en }
|
8
8
|
end
|
@@ -4,7 +4,7 @@ module Mumuki::Domain::Helpers::Organization
|
|
4
4
|
|
5
5
|
included do
|
6
6
|
delegate *Mumuki::Domain::Organization::Theme.accessors, to: :theme
|
7
|
-
delegate *Mumuki::Domain::Organization::Settings.accessors, :private?, :login_settings, to: :settings
|
7
|
+
delegate *Mumuki::Domain::Organization::Settings.accessors, :private?, :login_settings, :in_preparation?, :disabled?, to: :settings
|
8
8
|
delegate *Mumuki::Domain::Organization::Profile.accessors, :locale_json, to: :profile
|
9
9
|
end
|
10
10
|
|
@@ -48,6 +48,11 @@ module Mumuki::Domain::Helpers::Organization
|
|
48
48
|
Mumukit::Platform.application.organic_domain(name)
|
49
49
|
end
|
50
50
|
|
51
|
+
def validate_active!
|
52
|
+
raise Mumuki::Domain::DisabledOrganizationError if disabled?
|
53
|
+
raise Mumuki::Domain::UnpreparedOrganizationError if in_preparation?
|
54
|
+
end
|
55
|
+
|
51
56
|
## API Exposure
|
52
57
|
|
53
58
|
def to_param
|
@@ -28,9 +28,9 @@ module Mumuki::Domain::Helpers::User
|
|
28
28
|
role_here = "#{role}_here?"
|
29
29
|
|
30
30
|
# Tells whether this user has #{role} permissions in
|
31
|
-
# the given
|
32
|
-
define_method role_of do |
|
33
|
-
has_permission? role,
|
31
|
+
# the given `slug_like`
|
32
|
+
define_method role_of do |slug_like|
|
33
|
+
has_permission? role, slug_like.to_mumukit_slug
|
34
34
|
end
|
35
35
|
|
36
36
|
# Tells whether this user has #{role} permissions in
|
@@ -49,16 +49,16 @@ module Mumuki::Domain::Helpers::User
|
|
49
49
|
(Mumukit::Auth::Roles::ROLES - [:owner]).each do |role|
|
50
50
|
|
51
51
|
# Assignes the #{role} role to this user
|
52
|
-
# for the given
|
53
|
-
define_method "make_#{role}_of!" do |
|
54
|
-
add_permission! role,
|
52
|
+
# for the given `grant_like`
|
53
|
+
define_method "make_#{role}_of!" do |grant_like|
|
54
|
+
add_permission! role, grant_like.to_mumukit_grant
|
55
55
|
end
|
56
56
|
end
|
57
57
|
|
58
58
|
## Profile
|
59
59
|
|
60
60
|
def full_name
|
61
|
-
"#{first_name} #{last_name}"
|
61
|
+
"#{first_name} #{last_name}".strip
|
62
62
|
end
|
63
63
|
|
64
64
|
alias_method :name, :full_name
|
@@ -44,6 +44,7 @@ es:
|
|
44
44
|
attributes:
|
45
45
|
base:
|
46
46
|
consistent_public_login: 'Una organización pública no puede restringir los métodos de login'
|
47
|
+
invalid_activity_range: 'La fecha de deshabilitación no puede ser anterior a la de inicio del recorrido'
|
47
48
|
models:
|
48
49
|
exercise:
|
49
50
|
one: Ejercicio
|
@@ -11,7 +11,9 @@ class Mumuki::Domain::Organization::Settings < Mumukit::Platform::Model
|
|
11
11
|
:embeddable?,
|
12
12
|
:immersive?,
|
13
13
|
:forum_enabled?,
|
14
|
-
:report_issue_enabled
|
14
|
+
:report_issue_enabled?,
|
15
|
+
:disabled_from,
|
16
|
+
:in_preparation_until
|
15
17
|
|
16
18
|
def private?
|
17
19
|
!public?
|
@@ -24,4 +26,12 @@ class Mumuki::Domain::Organization::Settings < Mumukit::Platform::Model
|
|
24
26
|
def forum_discussions_minimal_role
|
25
27
|
(@forum_discussions_minimal_role || 'student').to_sym
|
26
28
|
end
|
29
|
+
|
30
|
+
def disabled?
|
31
|
+
disabled_from.present? && disabled_from.to_datetime < DateTime.now
|
32
|
+
end
|
33
|
+
|
34
|
+
def in_preparation?
|
35
|
+
in_preparation_until.present? && in_preparation_until.to_datetime > DateTime.now
|
36
|
+
end
|
27
37
|
end
|
@@ -23,8 +23,6 @@ module Mumuki::Domain::Status::Submission
|
|
23
23
|
self
|
24
24
|
end
|
25
25
|
|
26
|
-
# Tells if a new, different submission should be tried.
|
27
|
-
# True for `failed`, `errored` and `passed_with_warnings`
|
28
26
|
def should_retry?
|
29
27
|
false
|
30
28
|
end
|
@@ -38,6 +36,10 @@ module Mumuki::Domain::Status::Submission
|
|
38
36
|
end
|
39
37
|
|
40
38
|
def completed?
|
41
|
-
|
39
|
+
solved?
|
40
|
+
end
|
41
|
+
|
42
|
+
def solved?
|
43
|
+
passed? || skipped?
|
42
44
|
end
|
43
45
|
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
class Mumuki::Domain::Workspace
|
2
|
+
attr_accessor :user, :area
|
3
|
+
|
4
|
+
# area is a organization-like or course-like object
|
5
|
+
# that can be converted into slugs, has content and access-rules information
|
6
|
+
def initialize(user, area)
|
7
|
+
@user = user
|
8
|
+
@area = area
|
9
|
+
end
|
10
|
+
|
11
|
+
def annonymous?
|
12
|
+
user.nil?
|
13
|
+
end
|
14
|
+
|
15
|
+
def teacher?
|
16
|
+
user.teacher_of? area
|
17
|
+
end
|
18
|
+
|
19
|
+
# Takes a didactic sequence of containers and retuns the enabled containers
|
20
|
+
# for this user in this workspace.
|
21
|
+
#
|
22
|
+
# This method does not check the user is actually member of the area,
|
23
|
+
# you should check that before sending this message
|
24
|
+
#
|
25
|
+
def enabled_containers(sequence)
|
26
|
+
return sequence if annonymous? || teacher?
|
27
|
+
|
28
|
+
# TODO refactor when introducing access rules
|
29
|
+
if area.progressive_display_lookahead
|
30
|
+
user.completed_containers_with_lookahead(
|
31
|
+
sequence,
|
32
|
+
area.to_organization,
|
33
|
+
lookahead: area.progressive_display_lookahead)
|
34
|
+
else
|
35
|
+
sequence
|
36
|
+
end
|
37
|
+
end
|
38
|
+
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.
|
4
|
+
version: 7.6.1
|
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-
|
11
|
+
date: 2020-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '4.
|
61
|
+
version: '4.1'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '4.
|
68
|
+
version: '4.1'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: mumukit-content-type
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -247,11 +247,14 @@ files:
|
|
247
247
|
- app/models/api_client.rb
|
248
248
|
- app/models/application_record.rb
|
249
249
|
- app/models/assignment.rb
|
250
|
+
- app/models/avatar.rb
|
250
251
|
- app/models/book.rb
|
251
252
|
- app/models/chapter.rb
|
252
253
|
- app/models/complement.rb
|
253
254
|
- app/models/concerns/assistable.rb
|
255
|
+
- app/models/concerns/container.rb
|
254
256
|
- app/models/concerns/contextualization.rb
|
257
|
+
- app/models/concerns/disabling.rb
|
255
258
|
- app/models/concerns/friendly_name.rb
|
256
259
|
- app/models/concerns/guide_container.rb
|
257
260
|
- app/models/concerns/navigation/parent_navigation.rb
|
@@ -266,7 +269,6 @@ files:
|
|
266
269
|
- app/models/concerns/topic_container.rb
|
267
270
|
- app/models/concerns/with_assignments.rb
|
268
271
|
- app/models/concerns/with_case_insensitive_search.rb
|
269
|
-
- app/models/concerns/with_content.rb
|
270
272
|
- app/models/concerns/with_description.rb
|
271
273
|
- app/models/concerns/with_discussion_creation.rb
|
272
274
|
- app/models/concerns/with_discussion_creation/subscription.rb
|
@@ -599,17 +601,25 @@ files:
|
|
599
601
|
- db/migrate/20200127142401_add_private_to_topics_and_books.rb
|
600
602
|
- db/migrate/20200213175736_add_verified_names_to_users.rb
|
601
603
|
- db/migrate/20200312181842_add_results_hidden_for_choices_to_exam.rb
|
604
|
+
- db/migrate/20200508191543_create_avatars.rb
|
605
|
+
- db/migrate/20200518135658_add_avatar_to_users.rb
|
606
|
+
- db/migrate/20200527180729_add_disabled_at_to_users.rb
|
607
|
+
- db/migrate/20200608132959_add_progressive_display_lookahead_to_organizations.rb
|
602
608
|
- lib/mumuki/domain.rb
|
609
|
+
- lib/mumuki/domain/area.rb
|
603
610
|
- lib/mumuki/domain/engine.rb
|
604
611
|
- lib/mumuki/domain/evaluation.rb
|
605
612
|
- lib/mumuki/domain/evaluation/automated.rb
|
606
613
|
- lib/mumuki/domain/evaluation/manual.rb
|
607
614
|
- lib/mumuki/domain/exceptions.rb
|
608
615
|
- lib/mumuki/domain/exceptions/blocked_forum_error.rb
|
616
|
+
- lib/mumuki/domain/exceptions/disabled_error.rb
|
617
|
+
- lib/mumuki/domain/exceptions/disabled_organization_error.rb
|
609
618
|
- lib/mumuki/domain/exceptions/forbidden_error.rb
|
610
619
|
- lib/mumuki/domain/exceptions/gone_error.rb
|
611
620
|
- lib/mumuki/domain/exceptions/not_found_error.rb
|
612
621
|
- lib/mumuki/domain/exceptions/unauthorized_error.rb
|
622
|
+
- lib/mumuki/domain/exceptions/unprepared_organization_error.rb
|
613
623
|
- lib/mumuki/domain/extensions.rb
|
614
624
|
- lib/mumuki/domain/extensions/array.rb
|
615
625
|
- lib/mumuki/domain/extensions/hash.rb
|
@@ -684,6 +694,7 @@ files:
|
|
684
694
|
- lib/mumuki/domain/syncable.rb
|
685
695
|
- lib/mumuki/domain/syncable/with_resource_fields.rb
|
686
696
|
- lib/mumuki/domain/version.rb
|
697
|
+
- lib/mumuki/domain/workspace.rb
|
687
698
|
homepage: https://mumuki.org
|
688
699
|
licenses:
|
689
700
|
- AGPL-3.0
|