mumuki-laboratory 5.13.0 → 6.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +674 -0
- data/app/assets/stylesheets/application/_modules.scss +1 -0
- data/app/assets/stylesheets/application/modules/_chapter_show.scss +3 -0
- data/app/controllers/api/organizations_controller.rb +3 -3
- data/app/controllers/api/users_controller.rb +2 -2
- data/app/controllers/application_controller.rb +6 -0
- data/app/controllers/discussions_controller.rb +2 -2
- data/app/controllers/exercises_controller.rb +1 -1
- data/app/controllers/guide_container_controller.rb +1 -1
- data/app/controllers/guide_progress_controller.rb +1 -1
- data/app/controllers/guides_controller.rb +1 -1
- data/app/controllers/users_controller.rb +1 -1
- data/app/helpers/discussions_helper.rb +1 -1
- data/app/views/chapters/show.html.erb +1 -1
- data/lib/events.rb +10 -6
- data/lib/mumuki/laboratory.rb +30 -14
- data/lib/mumuki/laboratory/controllers/content.rb +1 -1
- data/lib/mumuki/laboratory/controllers/dynamic_errors.rb +5 -5
- data/lib/mumuki/laboratory/engine.rb +0 -8
- data/lib/mumuki/laboratory/extensions.rb +0 -2
- data/lib/mumuki/laboratory/version.rb +1 -1
- data/lib/tasks/messages.rake +1 -1
- data/public/compass_rose.svg +1272 -1262
- data/spec/api_helper.rb +7 -0
- data/spec/controllers/confirmations_controller_spec.rb +1 -1
- data/spec/controllers/organizations_api_controller_spec.rb +8 -8
- data/spec/controllers/users_api_controller_spec.rb +7 -7
- data/spec/dummy/config/application.rb +4 -0
- data/spec/dummy/db/schema.rb +8 -3
- data/spec/dummy/db/seeds.rb +7 -3
- data/spec/evaluation_helper.rb +1 -1
- data/spec/features/home_private_flow_spec.rb +8 -6
- data/spec/features/home_public_flow_spec.rb +8 -7
- data/spec/features/profile_flow_spec.rb +2 -1
- data/spec/login_helper.rb +20 -0
- data/spec/models/book_import_spec.rb +5 -5
- data/spec/models/course_spec.rb +1 -1
- data/spec/models/event_generation_spec.rb +4 -4
- data/spec/models/exam_spec.rb +14 -14
- data/spec/models/exercise_spec.rb +26 -3
- data/spec/models/guide_import_spec.rb +15 -15
- data/spec/models/guide_spec.rb +54 -4
- data/spec/models/language_spec.rb +48 -46
- data/spec/models/message_spec.rb +5 -5
- data/spec/models/query_spec.rb +2 -2
- data/spec/models/question_spec.rb +1 -1
- data/spec/models/solution_spec.rb +2 -2
- data/spec/models/topic_import_spec.rb +3 -3
- data/spec/models/user_changed_spec.rb +3 -3
- data/spec/spec_helper.rb +2 -37
- metadata +18 -497
- data/app/models/api_client.rb +0 -31
- data/app/models/application_record.rb +0 -92
- data/app/models/assignment.rb +0 -204
- data/app/models/book.rb +0 -47
- data/app/models/chapter.rb +0 -29
- data/app/models/complement.rb +0 -15
- data/app/models/concerns/assistable.rb +0 -17
- data/app/models/concerns/contextualization.rb +0 -82
- data/app/models/concerns/friendly_name.rb +0 -10
- data/app/models/concerns/guide_container.rb +0 -53
- data/app/models/concerns/navigation/parent_navigation.rb +0 -27
- data/app/models/concerns/navigation/siblings_navigation.rb +0 -19
- data/app/models/concerns/navigation/terminal_navigation.rb +0 -13
- data/app/models/concerns/submittable/confirmable.rb +0 -5
- data/app/models/concerns/submittable/queriable.rb +0 -9
- data/app/models/concerns/submittable/questionable.rb +0 -6
- data/app/models/concerns/submittable/solvable.rb +0 -32
- data/app/models/concerns/submittable/submittable.rb +0 -11
- data/app/models/concerns/submittable/triable.rb +0 -9
- data/app/models/concerns/with_assignments.rb +0 -32
- data/app/models/concerns/with_case_insensitive_search.rb +0 -7
- data/app/models/concerns/with_description.rb +0 -12
- data/app/models/concerns/with_discussion_creation.rb +0 -9
- data/app/models/concerns/with_discussion_creation/subscription.rb +0 -33
- data/app/models/concerns/with_discussion_creation/upvote.rb +0 -28
- data/app/models/concerns/with_discussion_status.rb +0 -11
- data/app/models/concerns/with_discussions.rb +0 -23
- data/app/models/concerns/with_editor.rb +0 -39
- data/app/models/concerns/with_expectations.rb +0 -19
- data/app/models/concerns/with_language.rb +0 -14
- data/app/models/concerns/with_layout.rb +0 -7
- data/app/models/concerns/with_locale.rb +0 -7
- data/app/models/concerns/with_messages.rb +0 -22
- data/app/models/concerns/with_number.rb +0 -9
- data/app/models/concerns/with_profile.rb +0 -12
- data/app/models/concerns/with_randomizations.rb +0 -34
- data/app/models/concerns/with_reminders.rb +0 -74
- data/app/models/concerns/with_scoped_queries.rb +0 -47
- data/app/models/concerns/with_scoped_queries/filter.rb +0 -15
- data/app/models/concerns/with_scoped_queries/page.rb +0 -10
- data/app/models/concerns/with_scoped_queries/sort.rb +0 -47
- data/app/models/concerns/with_slug.rb +0 -32
- data/app/models/concerns/with_usages.rb +0 -16
- data/app/models/concerns/with_user_navigation.rb +0 -9
- data/app/models/content.rb +0 -10
- data/app/models/course.rb +0 -20
- data/app/models/discussion.rb +0 -136
- data/app/models/event.rb +0 -2
- data/app/models/exam.rb +0 -147
- data/app/models/exam_authorization.rb +0 -10
- data/app/models/exercise.rb +0 -190
- data/app/models/exercise/challenge.rb +0 -25
- data/app/models/exercise/interactive.rb +0 -41
- data/app/models/exercise/playground.rb +0 -23
- data/app/models/exercise/problem.rb +0 -41
- data/app/models/exercise/queriable_challenge.rb +0 -5
- data/app/models/exercise/reading.rb +0 -17
- data/app/models/guide.rb +0 -92
- data/app/models/invitation.rb +0 -36
- data/app/models/language.rb +0 -106
- data/app/models/lesson.rb +0 -25
- data/app/models/message.rb +0 -68
- data/app/models/organization.rb +0 -118
- data/app/models/stats.rb +0 -24
- data/app/models/submission/confirmation.rb +0 -9
- data/app/models/submission/console_submission.rb +0 -13
- data/app/models/submission/persistent_submission.rb +0 -7
- data/app/models/submission/query.rb +0 -19
- data/app/models/submission/question.rb +0 -14
- data/app/models/submission/solution.rb +0 -7
- data/app/models/submission/submission.rb +0 -56
- data/app/models/submission/try.rb +0 -20
- data/app/models/subscription.rb +0 -12
- data/app/models/topic.rb +0 -46
- data/app/models/topic_container.rb +0 -21
- data/app/models/upvote.rb +0 -4
- data/app/models/usage.rb +0 -20
- data/app/models/user.rb +0 -153
- data/app/models/with_stats.rb +0 -9
- data/db/migrate/20141120231135_create_exercises.rb +0 -11
- data/db/migrate/20141120231735_create_submissions.rb +0 -9
- data/db/migrate/20141121001134_add_status_to_submission.rb +0 -5
- data/db/migrate/20141121013100_add_result_to_submission.rb +0 -5
- data/db/migrate/20141121122921_add_language_to_exercise.rb +0 -5
- data/db/migrate/20141124023403_create_users.rb +0 -13
- data/db/migrate/20141124032114_add_user_to_submission.rb +0 -5
- data/db/migrate/20141207235356_add_submissions_count_to_exercise.rb +0 -5
- data/db/migrate/20141208005050_add_author_to_exercise.rb +0 -5
- data/db/migrate/20141208005125_rename_user_to_submitter.rb +0 -5
- data/db/migrate/20141212044717_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb +0 -31
- data/db/migrate/20141212044718_add_missing_unique_indices.acts_as_taggable_on_engine.rb +0 -20
- data/db/migrate/20141212044719_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +0 -10
- data/db/migrate/20141212044720_add_missing_taggable_index.acts_as_taggable_on_engine.rb +0 -10
- data/db/migrate/20141221213109_create_exercise_repos.rb +0 -11
- data/db/migrate/20141221215035_add_origin_to_exercise.rb +0 -6
- data/db/migrate/20141225034553_rename_exercise_repo_to_guide.rb +0 -6
- data/db/migrate/20141225143218_rename_github_url_to_github_repository.rb +0 -5
- data/db/migrate/20141225195510_create_imports.rb +0 -9
- data/db/migrate/20141225211350_add_status_to_import.rb +0 -6
- data/db/migrate/20141226010922_add_result_to_import.rb +0 -5
- data/db/migrate/20141228151351_change_exercise_description_to_text.rb +0 -5
- data/db/migrate/20141231074400_create_languages.rb +0 -13
- data/db/migrate/20141231191842_change_language_column_type.rb +0 -6
- data/db/migrate/20141231192030_rename_author_to_plugin_author.rb +0 -5
- data/db/migrate/20141231234940_increment_language_id.rb +0 -5
- data/db/migrate/20150108014005_add_locale_to_exercise.rb +0 -5
- data/db/migrate/20150111160450_add_uniques_to_languages.rb +0 -6
- data/db/migrate/20150125042217_add_test_syntax_hint_to_language.rb +0 -5
- data/db/migrate/20150125051529_add_hint_to_exercise.rb +0 -5
- data/db/migrate/20150126213310_devise_create_admin_users.rb +0 -42
- data/db/migrate/20150126213316_create_active_admin_comments.rb +0 -19
- data/db/migrate/20150315072037_add_description_to_guide.rb +0 -6
- data/db/migrate/20150317052723_remove_language_author.rb +0 -5
- data/db/migrate/20150317053307_remove_language_hint.rb +0 -5
- data/db/migrate/20150321150030_add_extra_code_to_exercise.rb +0 -5
- data/db/migrate/20150328211331_create_expectations.rb +0 -11
- data/db/migrate/20150329163753_add_email_to_user.rb +0 -5
- data/db/migrate/20150330020553_add_expectation_results_to_submission.rb +0 -5
- data/db/migrate/20150405231013_create_exports.rb +0 -9
- data/db/migrate/20150405232603_add_default_guide_to_user.rb +0 -5
- data/db/migrate/20150406020152_add_last_submission_date_to_user.rb +0 -5
- data/db/migrate/20150407225356_add_unique_index_to_users.rb +0 -5
- data/db/migrate/20150408020712_add_status_to_export.rb +0 -6
- data/db/migrate/20150408022654_add_commiter_to_export.rb +0 -5
- data/db/migrate/20150411215351_change_guide_description_to_text.rb +0 -5
- data/db/migrate/20150412042959_add_committer_to_import.rb +0 -5
- data/db/migrate/20150412201651_remove_default_guide_from_user.rb +0 -5
- data/db/migrate/20150415053559_add_image_url_to_user.rb +0 -5
- data/db/migrate/20150415211341_add_position_to_exercise.rb +0 -5
- data/db/migrate/20150415234515_create_relationships.rb +0 -10
- data/db/migrate/20150417052238_add_original_id_format_to_guide.rb +0 -5
- data/db/migrate/20150418055334_add_locale_and_language_to_guide.rb +0 -6
- data/db/migrate/20150424180136_add_guides_users_association_tables.rb +0 -14
- data/db/migrate/20150428195229_add_guides_suggestions.rb +0 -8
- data/db/migrate/20150507215646_remove_relationship.rb +0 -5
- data/db/migrate/20150508015148_create_api_tokens.rb +0 -10
- data/db/migrate/20150509191428_add_name_to_token.rb +0 -5
- data/db/migrate/20150512235847_add_feedback_to_submission.rb +0 -5
- data/db/migrate/20150513203636_create_categories.rb +0 -12
- data/db/migrate/20150513204102_create_starting_points.rb +0 -11
- data/db/migrate/20150517074730_add_extra_code_to_guide.rb +0 -5
- data/db/migrate/20150518174912_add_language_output_visibility_flag.rb +0 -5
- data/db/migrate/20150518185508_add_content_type_to_language.rb +0 -5
- data/db/migrate/20150519131033_set_default_locale_for_guide.rb +0 -5
- data/db/migrate/20150519174628_remove_language_name_uniq.rb +0 -6
- data/db/migrate/20150519220307_rename_api_token_columns.rb +0 -6
- data/db/migrate/20150520011404_convert_starting_point_into_path.rb +0 -12
- data/db/migrate/20150529135324_add_corollary_to_guide.rb +0 -5
- data/db/migrate/20150529141430_add_corollary_to_exercise.rb +0 -5
- data/db/migrate/20150531164450_add_test_extension_to_language.rb +0 -5
- data/db/migrate/20150603003459_remove_language_extension_uniq.rb +0 -6
- data/db/migrate/20150603020457_remove_guide_name_uniq.rb +0 -6
- data/db/migrate/20150605065543_add_highlight_mode.rb +0 -5
- data/db/migrate/20150614173852_add_learning_flag.rb +0 -5
- data/db/migrate/20150614180512_add_beta_flag.rb +0 -5
- data/db/migrate/20150614191257_add_last_exercise.rb +0 -5
- data/db/migrate/20150620181839_add_layout_to_exercise.rb +0 -5
- data/db/migrate/20150701030644_add_unique_to_language_name_index.rb +0 -6
- data/db/migrate/20150701212609_add_test_results_to_submission.rb +0 -5
- data/db/migrate/20150708212022_add_position_to_category.rb +0 -5
- data/db/migrate/20150708212836_change_category_description_to_text.rb +0 -5
- data/db/migrate/20150713120916_add_expectations_column_to_exercise.rb +0 -5
- data/db/migrate/20150714000532_remove_expectations_relation.rb +0 -5
- data/db/migrate/20150722003532_create_event_subscribers.rb +0 -10
- data/db/migrate/20150722030820_create_solutions.rb +0 -16
- data/db/migrate/20150722142019_add_submissions_count_to_solution.rb +0 -5
- data/db/migrate/20150723052640_add_submission_id_to_solution.rb +0 -5
- data/db/migrate/20150724062215_add_language_description.rb +0 -5
- data/db/migrate/20150724062233_add_category_links.rb +0 -5
- data/db/migrate/20150724062249_add_category_long_description.rb +0 -5
- data/db/migrate/20150819194207_convert_submissions_into_solutions.rb +0 -34
- data/db/migrate/20150819202310_remove_submissions.rb +0 -5
- data/db/migrate/20150826023647_create_friendly_id_slugs.rb +0 -15
- data/db/migrate/20150826023757_add_slug_to_guides.rb +0 -6
- data/db/migrate/20150826024859_add_slug_to_exercises.rb +0 -6
- data/db/migrate/20150828013106_add_remember_me_token_to_user.rb +0 -5
- data/db/migrate/20150829211550_add_queriable_to_language.rb +0 -5
- data/db/migrate/20150829215524_add_expectations_column_to_guide.rb +0 -5
- data/db/migrate/20150905214532_rename_exercise_title_to_name.rb +0 -5
- data/db/migrate/20151001143118_rename_solution_to_assignment.rb +0 -5
- data/db/migrate/20151001183858_rename_assignment_content_to_solution.rb +0 -5
- data/db/migrate/20151003003856_add_type_to_exercise.rb +0 -5
- data/db/migrate/20151020145904_remove_guide_git_information.rb +0 -7
- data/db/migrate/20151104163433_create_tenants.rb +0 -9
- data/db/migrate/20151104172241_create_path_rules.rb +0 -11
- data/db/migrate/20151104173956_remove_guide_position.rb +0 -5
- data/db/migrate/20151104220859_remove_path_from_guide.rb +0 -5
- data/db/migrate/20151107232242_move_slug_to_path_rule.rb +0 -6
- data/db/migrate/20151108173838_remove_slugs.rb +0 -5
- data/db/migrate/20151108182857_remove_act_as_taggable_taggings.rb +0 -6
- data/db/migrate/20151108183319_add_tags_array.rb +0 -5
- data/db/migrate/20151206072741_rename_guide_extra_code_to_extra.rb +0 -5
- data/db/migrate/20151208224736_rename_path_rule_to_chapter_guide.rb +0 -5
- data/db/migrate/20151208224907_rename_category_to_chapter.rb +0 -5
- data/db/migrate/20151208225503_rename_chapter_position_to_number.rb +0 -5
- data/db/migrate/20151208231749_rename_chapter_guide_path_to_chapter.rb +0 -5
- data/db/migrate/20151208233707_rename_url_to_slug.rb +0 -5
- data/db/migrate/20151209021925_add_locale_to_tenant.rb +0 -5
- data/db/migrate/20151210204646_remove_language_extensions.rb +0 -6
- data/db/migrate/20151211032811_drop_collaborators.rb +0 -5
- data/db/migrate/20151211033000_drop_contributors.rb +0 -5
- data/db/migrate/20151211034943_remove_authors.rb +0 -6
- data/db/migrate/20151211035206_add_contact_email_to_tenant.rb +0 -5
- data/db/migrate/20151218172557_drop_import.rb +0 -6
- data/db/migrate/20151222153838_add_default_content_to_exercise.rb +0 -5
- data/db/migrate/20151223014138_change_language_icon_url_into_devicon_id.rb +0 -5
- data/db/migrate/20151224174248_remove_original_id.rb +0 -5
- data/db/migrate/20151229153839_replace_learning_with_type_in_guides.rb +0 -6
- data/db/migrate/20160108191156_rename_extra_code.rb +0 -5
- data/db/migrate/20160108215313_remove_unique_index_from_users.rb +0 -5
- data/db/migrate/20160119024542_add_preface_to_tenant.rb +0 -5
- data/db/migrate/20160119040351_rename_tenant_to_book.rb +0 -5
- data/db/migrate/20160119191508_rename_position_to_number.rb +0 -6
- data/db/migrate/20160120171336_add_type_to_event_suscriber.rb +0 -5
- data/db/migrate/20160205184243_add_bibliotheca_id_to_exercise.rb +0 -5
- data/db/migrate/20160214191548_required_bibliotheca_id.rb +0 -5
- data/db/migrate/20160222165337_add_hidden_flag_to_extra_code.rb +0 -5
- data/db/migrate/20160222192958_rename_chapter_guide_to_lesson.rb +0 -5
- data/db/migrate/20160307184203_add_prompt_to_language.rb +0 -5
- data/db/migrate/20160331210507_add_comment_model.rb +0 -13
- data/db/migrate/20160401142104_add_readed_to_comment.rb +0 -5
- data/db/migrate/20160404214826_change_readed_to_read.rb +0 -5
- data/db/migrate/20160405184624_change_submission_id_to_string.rb +0 -5
- data/db/migrate/20160412193123_change_content_comment_to_text.rb +0 -5
- data/db/migrate/20160414150800_remove_tenant_subscriber.rb +0 -5
- data/db/migrate/20160426171156_add_new_expectations_to_exercise.rb +0 -5
- data/db/migrate/20160427195306_create_organizations.rb +0 -12
- data/db/migrate/20160427223805_add_chapter_book.rb +0 -5
- data/db/migrate/20160427234538_create_topics.rb +0 -11
- data/db/migrate/20160427235605_add_topic_to_chapter.rb +0 -5
- data/db/migrate/20160428162753_add_topic_id_to_lesson.rb +0 -5
- data/db/migrate/20160428175230_create_exams.rb +0 -10
- data/db/migrate/20160428224823_add_duration_to_exam.rb +0 -5
- data/db/migrate/20160429174901_add_start_end_time_to_exam.rb +0 -6
- data/db/migrate/20160429181825_add_exam_user.rb +0 -8
- data/db/migrate/20160430225048_create_complements.rb +0 -10
- data/db/migrate/20160430231035_remove_chapter_lesson.rb +0 -5
- data/db/migrate/20160430235331_remove_chapter_name_description.rb +0 -6
- data/db/migrate/20160430235656_remove_chapter_locale_image_url.rb +0 -6
- data/db/migrate/20160501003355_add_long_description_to_topic.rb +0 -5
- data/db/migrate/20160501071847_create_usages.rb +0 -11
- data/db/migrate/20160506012945_add_slug_to_topic_and_book.rb +0 -9
- data/db/migrate/20160506035230_remove_slug_from_lesson.rb +0 -5
- data/db/migrate/20160506041446_rename_preface_to_description.rb +0 -5
- data/db/migrate/20160506172239_remove_event_subscriber.rb +0 -5
- data/db/migrate/20160506175610_remove_api_tokens.rb +0 -5
- data/db/migrate/20160506181152_remove_admin_user.rb +0 -5
- data/db/migrate/20160506182333_remove_admin_comments.rb +0 -5
- data/db/migrate/20160510183137_add_private_to_organization.rb +0 -5
- data/db/migrate/20160512134321_add_organization_image.rb +0 -5
- data/db/migrate/20160516191936_add_stateful_console_to_language.rb +0 -5
- data/db/migrate/20160517215229_add_classroom_idto_exams.rb +0 -6
- data/db/migrate/20160518212552_rename_exam_users_to_exam_authorization.rb +0 -5
- data/db/migrate/20160518213912_add_user_start_data_in_exam.rb +0 -6
- data/db/migrate/20160519045220_add_id_to_exam_authorizations.rb +0 -5
- data/db/migrate/20160520141716_remove_chapter_links_and_long_description.rb +0 -6
- data/db/migrate/20160520153115_change_exam_classroom_id_to_string.rb +0 -5
- data/db/migrate/20160526172026_remove_not_null_constraint_exam_duration.rb +0 -6
- data/db/migrate/20160526182119_add_metadata_to_user.rb +0 -5
- data/db/migrate/20160617175235_add_last_organization_to_user.rb +0 -5
- data/db/migrate/20160617195350_change_metadata_to_text.rb +0 -5
- data/db/migrate/20160701195105_add_login_methods_to_organization.rb +0 -5
- data/db/migrate/20160705160244_add_manual_evaluation_to_exercise.rb +0 -5
- data/db/migrate/20160715001254_rename_test_runner_url.rb +0 -5
- data/db/migrate/20160729194600_change_default_content_to_text.rb +0 -5
- data/db/migrate/20160812003350_change_default_login_methods.rb +0 -5
- data/db/migrate/20160815225314_rename_long_description_to_appendix.rb +0 -5
- data/db/migrate/20160819181024_make_organization_private_by_default.rb +0 -5
- data/db/migrate/20160830160937_add_authoring_information_to_guide.rb +0 -6
- data/db/migrate/20160907010315_remove_exercise_slug.rb +0 -5
- data/db/migrate/20161004202742_add_editor_to_problem.rb +0 -6
- data/db/migrate/20161018142147_add_language_extension.rb +0 -5
- data/db/migrate/20161107171305_remove_devicon_column_from_language.rb +0 -5
- data/db/migrate/20161222182015_rename_uid_to_social_id.rb +0 -5
- data/db/migrate/20161222182724_add_uid_to_user.rb +0 -5
- data/db/migrate/20161226181932_remove_metadata_from_users.rb +0 -5
- data/db/migrate/20161230055953_add_not_null_constraint_to_uid_in_user.rb +0 -5
- data/db/migrate/20161231224116_add_permissions_to_user.rb +0 -5
- data/db/migrate/20170125185012_add_new_fields_on_organization.rb +0 -15
- data/db/migrate/20170207154702_add_index_to_uid.rb +0 -5
- data/db/migrate/20170224040846_create_invitations.rb +0 -11
- data/db/migrate/20170224061531_make_tos_type_text.rb +0 -5
- data/db/migrate/20170301160253_rename_invitation_slug_to_code.rb +0 -5
- data/db/migrate/20170330145157_rename_comment_to_messages.rb +0 -6
- data/db/migrate/20170407190910_add_has_messages_flag_to_assignment.rb +0 -5
- data/db/migrate/20170526191251_add_community_link_to_organizations.rb +0 -5
- data/db/migrate/20170526204944_add_has_messages_to_organizations.rb +0 -5
- data/db/migrate/20170601181759_rename_has_messages_to_raise_hand_enabled_in_organization.rb +0 -5
- data/db/migrate/20170608033403_remove_has_messages_from_assignment.rb +0 -5
- data/db/migrate/20170608044038_remove_messages_exercise_id.rb +0 -5
- data/db/migrate/20170608154055_remove_message_type_column.rb +0 -5
- data/db/migrate/20170612173212_add_first_name_and_last_name_to_user.rb +0 -6
- data/db/migrate/20170621222902_introduce_settings_and_themes.rb +0 -40
- data/db/migrate/20170818185127_add_guide_slug_constraint.rb +0 -5
- data/db/migrate/20170830020507_change_invitation_expiration_date_type.rb +0 -5
- data/db/migrate/20171003204152_add_goal_to_exercise.rb +0 -5
- data/db/migrate/20171003204209_add_queries_to_assignment.rb +0 -6
- data/db/migrate/20171004134607_add_triable_to_language.rb +0 -5
- data/db/migrate/20171024182244_add_devicon_and_comment_type_to_language.rb +0 -6
- data/db/migrate/20171109181818_add_manual_evaluation_commend_and_submission_id_index_in_assignment.rb +0 -6
- data/db/migrate/20171229042201_add_assets_to_language.rb +0 -9
- data/db/migrate/20180117014110_add_custom_editor_assets_to_language.rb +0 -13
- data/db/migrate/20180123174410_add_initial_and_final_states_to_exercises.rb +0 -6
- data/db/migrate/20180123180836_add_accepts_reminders_to_users.rb +0 -5
- data/db/migrate/20180129142749_add_api_client.rb +0 -11
- data/db/migrate/20180130194923_add_last_reminded_date_to_users.rb +0 -5
- data/db/migrate/20180130204935_add_course.rb +0 -16
- data/db/migrate/20180307150148_add_failed_submissions_count_to_assignments.rb +0 -5
- data/db/migrate/20180323125804_remove_user_name.rb +0 -5
- data/db/migrate/20180323140943_remove_unused_omniauth_fields.rb +0 -7
- data/db/migrate/20180326224511_remove_book_ids.rb +0 -5
- data/db/migrate/20180402015405_remove_course_uid.rb +0 -5
- data/db/migrate/20180504173548_create_discussions.rb +0 -12
- data/db/migrate/20180504185845_add_discussion_id_to_message.rb +0 -5
- data/db/migrate/20180526141344_add_tips_rules_to_exercise.rb +0 -5
- data/db/migrate/20180605143727_add_submission_to_discussion.rb +0 -16
- data/db/migrate/20180611190239_add_randomizations_to_exercises.rb +0 -5
- data/db/migrate/20180619182555_create_subscriptions.rb +0 -9
- data/db/migrate/20180702153442_create_upvotes.rb +0 -8
- data/db/migrate/20180702175220_add_upvotes_count_to_discussions.rb +0 -5
- data/db/migrate/20180704150839_rename_assignment_status_to_submission_status.rb +0 -5
- data/db/migrate/20180725145801_add_submissions_caps_to_exams.rb +0 -6
- data/db/migrate/20180802190437_add_approved_to_messages.rb +0 -5
- data/db/migrate/20181004173216_add_free_form_editor_to_exercises.rb +0 -5
- data/db/migrate/20181014233438_remove_non_null_constraint_from_permissions.rb +0 -5
- data/db/migrate/20181101180652_add_unique_index_to_organizations_name.rb +0 -5
- data/db/seeds/users.rb +0 -3
- data/lib/mumuki/laboratory/evaluation.rb +0 -5
- data/lib/mumuki/laboratory/evaluation/automated.rb +0 -5
- data/lib/mumuki/laboratory/evaluation/manual.rb +0 -5
- data/lib/mumuki/laboratory/exceptions.rb +0 -5
- data/lib/mumuki/laboratory/exceptions/blocked_forum_error.rb +0 -2
- data/lib/mumuki/laboratory/exceptions/forbidden_error.rb +0 -2
- data/lib/mumuki/laboratory/exceptions/gone_error.rb +0 -2
- data/lib/mumuki/laboratory/exceptions/not_found_error.rb +0 -2
- data/lib/mumuki/laboratory/exceptions/unauthorized_error.rb +0 -2
- data/lib/mumuki/laboratory/extensions/array.rb +0 -11
- data/lib/mumuki/laboratory/extensions/string.rb +0 -29
- data/lib/mumuki/laboratory/file.rb +0 -18
- data/lib/mumuki/laboratory/locales/activerecord.en.yml +0 -13
- data/lib/mumuki/laboratory/locales/activerecord.es.yml +0 -42
- data/lib/mumuki/laboratory/locales/narrator.en.yml +0 -14
- data/lib/mumuki/laboratory/locales/narrator.es.yml +0 -14
- data/lib/mumuki/laboratory/locales/narrator.pt.yml +0 -14
- data/lib/mumuki/laboratory/mumukit/auth.rb +0 -6
- data/lib/mumuki/laboratory/mumukit/login.rb +0 -4
- data/lib/mumuki/laboratory/mumukit/nuntius.rb +0 -6
- data/lib/mumuki/laboratory/mumukit/platform.rb +0 -34
- data/lib/mumuki/laboratory/seed.rb +0 -33
- data/lib/mumuki/laboratory/status.rb +0 -72
- data/lib/mumuki/laboratory/status/discussion/closed.rb +0 -15
- data/lib/mumuki/laboratory/status/discussion/discussion.rb +0 -44
- data/lib/mumuki/laboratory/status/discussion/opened.rb +0 -31
- data/lib/mumuki/laboratory/status/discussion/pending_review.rb +0 -15
- data/lib/mumuki/laboratory/status/discussion/solved.rb +0 -19
- data/lib/mumuki/laboratory/status/submission/aborted.rb +0 -11
- data/lib/mumuki/laboratory/status/submission/errored.rb +0 -19
- data/lib/mumuki/laboratory/status/submission/failed.rb +0 -15
- data/lib/mumuki/laboratory/status/submission/manual_evaluation_pending.rb +0 -15
- data/lib/mumuki/laboratory/status/submission/passed.rb +0 -11
- data/lib/mumuki/laboratory/status/submission/passed_with_warnings.rb +0 -15
- data/lib/mumuki/laboratory/status/submission/pending.rb +0 -11
- data/lib/mumuki/laboratory/status/submission/running.rb +0 -15
- data/lib/mumuki/laboratory/status/submission/submission.rb +0 -38
- data/lib/tasks/guides.rake +0 -11
- data/spec/dummy/config/initializers/application_controller_renderer.rb +0 -8
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/config/initializers/inflections.rb +0 -16
- data/spec/dummy/config/initializers/mime_types.rb +0 -4
@@ -1,22 +0,0 @@
|
|
1
|
-
module WithMessages
|
2
|
-
def receive_answer!(answer)
|
3
|
-
build_message(answer).save!
|
4
|
-
end
|
5
|
-
|
6
|
-
def send_question!(question)
|
7
|
-
message = build_message question.merge(sender: submitter.uid, read: true)
|
8
|
-
message.save_and_notify!
|
9
|
-
end
|
10
|
-
|
11
|
-
def build_message(body)
|
12
|
-
messages.build({date: DateTime.now}.merge(body))
|
13
|
-
end
|
14
|
-
|
15
|
-
def has_messages?
|
16
|
-
messages.exists?
|
17
|
-
end
|
18
|
-
|
19
|
-
def pending_messages?
|
20
|
-
messages.exists? read: false
|
21
|
-
end
|
22
|
-
end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
module WithProfile
|
2
|
-
extend ActiveSupport::Concern
|
3
|
-
|
4
|
-
module ClassMethods
|
5
|
-
def for_profile(profile)
|
6
|
-
where(uid: profile.uid).first_or_initialize.tap do |user|
|
7
|
-
user.assign_attributes(profile.to_h.compact)
|
8
|
-
user.save_and_notify_changes!
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
@@ -1,34 +0,0 @@
|
|
1
|
-
module WithRandomizations
|
2
|
-
extend ActiveSupport::Concern
|
3
|
-
|
4
|
-
included do
|
5
|
-
serialize :randomizations, Hash
|
6
|
-
end
|
7
|
-
|
8
|
-
def seed
|
9
|
-
@seed || 0
|
10
|
-
end
|
11
|
-
|
12
|
-
def seed_with!(seed)
|
13
|
-
@seed = seed
|
14
|
-
end
|
15
|
-
|
16
|
-
def randomizer
|
17
|
-
@randomizer ||= Mumukit::Randomizer.parse(randomizations)
|
18
|
-
end
|
19
|
-
|
20
|
-
module ClassMethods
|
21
|
-
def randomize(*selectors)
|
22
|
-
selectors.each { |selector| randomize_field selector }
|
23
|
-
end
|
24
|
-
|
25
|
-
private
|
26
|
-
|
27
|
-
def randomize_field(selector)
|
28
|
-
define_method(selector) do |*args|
|
29
|
-
return unless super(*args)
|
30
|
-
randomizer.randomize!(super(*args), seed)
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
@@ -1,74 +0,0 @@
|
|
1
|
-
module WithReminders
|
2
|
-
extend ActiveSupport::Concern
|
3
|
-
|
4
|
-
def build_reminder
|
5
|
-
mailer = UserMailer.new
|
6
|
-
last_submission_date.nil? ?
|
7
|
-
mailer.no_submissions_reminder(self) :
|
8
|
-
mailer.we_miss_you_reminder(self, cycles_since(last_submission_date))
|
9
|
-
end
|
10
|
-
|
11
|
-
def remind!
|
12
|
-
build_reminder.deliver
|
13
|
-
update! last_reminded_date: Time.now
|
14
|
-
end
|
15
|
-
|
16
|
-
def should_remind?
|
17
|
-
reminder_due? && (has_no_submissions? || has_no_recent_submission?)
|
18
|
-
end
|
19
|
-
|
20
|
-
# Try to send a reminder, by acquiring a database lock for update
|
21
|
-
# the aproppriate record. This object can't be updated as long as
|
22
|
-
# the reminder is being sent.
|
23
|
-
#
|
24
|
-
# This method is aimed to be sent across multiple servers or processed concurrently
|
25
|
-
# and still not send duplicate mails
|
26
|
-
def try_remind_with_lock!
|
27
|
-
# Some notes:
|
28
|
-
#
|
29
|
-
# * nowait is a postgre specific option and may not work with other databases
|
30
|
-
# * nowait will raise an exception if the lock can not be acquired
|
31
|
-
# * we are using a double check lock pattern to reduce lock acquisition
|
32
|
-
with_lock('for update nowait') do
|
33
|
-
reload
|
34
|
-
remind! if should_remind?
|
35
|
-
end if should_remind?
|
36
|
-
rescue
|
37
|
-
nil
|
38
|
-
end
|
39
|
-
|
40
|
-
private
|
41
|
-
|
42
|
-
def cycles_since(time)
|
43
|
-
((Date.current - time.to_date) / self.class.reminder_frequency).to_i
|
44
|
-
end
|
45
|
-
|
46
|
-
def reminder_due?
|
47
|
-
last_reminded_date.nil? || cycles_since(last_reminded_date) >= 1
|
48
|
-
end
|
49
|
-
|
50
|
-
def can_still_remind?(date)
|
51
|
-
cycles_since(date).between?(1, 3)
|
52
|
-
end
|
53
|
-
|
54
|
-
def has_no_submissions?
|
55
|
-
last_submission_date.nil? && can_still_remind?(created_at)
|
56
|
-
end
|
57
|
-
|
58
|
-
def has_no_recent_submission?
|
59
|
-
!last_submission_date.nil? && can_still_remind?(last_submission_date)
|
60
|
-
end
|
61
|
-
|
62
|
-
module ClassMethods
|
63
|
-
def remindable
|
64
|
-
where('accepts_reminders and email is not null
|
65
|
-
and last_organization_id is not null
|
66
|
-
and (last_submission_date < ? or last_submission_date is null)', reminder_frequency.days.ago)
|
67
|
-
end
|
68
|
-
|
69
|
-
# The frequency of reminders, expressed in days
|
70
|
-
def reminder_frequency
|
71
|
-
Rails.configuration.reminder_frequency
|
72
|
-
end
|
73
|
-
end
|
74
|
-
end
|
@@ -1,47 +0,0 @@
|
|
1
|
-
module WithScopedQueries
|
2
|
-
extend ActiveSupport::Concern
|
3
|
-
|
4
|
-
SCOPING_METHODS = [Filter, Sort, Page]
|
5
|
-
|
6
|
-
included do
|
7
|
-
class_attribute :queriable_attributes, instance_writer: false
|
8
|
-
self.queriable_attributes = {}
|
9
|
-
|
10
|
-
SCOPING_METHODS.each do |mod|
|
11
|
-
define_singleton_method "#{mod.name.demodulize.underscore}able" do |*attributes|
|
12
|
-
include mod
|
13
|
-
mod.add_queriable_attributes_to(self, attributes)
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
class_methods do
|
19
|
-
def query_methods
|
20
|
-
queriable_attributes.keys
|
21
|
-
end
|
22
|
-
|
23
|
-
def scoped_query_module(method)
|
24
|
-
"WithScopedQueries::#{method.to_s.camelcase}".constantize
|
25
|
-
end
|
26
|
-
|
27
|
-
def permitted_query_params
|
28
|
-
queriable_attributes.values.flatten
|
29
|
-
end
|
30
|
-
|
31
|
-
def actual_params(params, excluded_param)
|
32
|
-
params.reject { |it| it == excluded_param.to_s }
|
33
|
-
end
|
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)
|
38
|
-
scoped_query_module(method).query_by valid_params, scope, self
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
|
-
def valid_params_for(method, params, excluded_param)
|
43
|
-
actual_params = actual_params(params, excluded_param)
|
44
|
-
actual_params.permit queriable_attributes[method]
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
@@ -1,15 +0,0 @@
|
|
1
|
-
module WithScopedQueries::Filter
|
2
|
-
def self.query_by(params, current_scope, _)
|
3
|
-
params.to_h.inject(current_scope) do |scope, (field, value)|
|
4
|
-
if value.present?
|
5
|
-
scope.public_send("by_#{field}", value)
|
6
|
-
else
|
7
|
-
scope
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
def self.add_queriable_attributes_to(klass, attributes)
|
13
|
-
klass.queriable_attributes.merge!(filter: attributes)
|
14
|
-
end
|
15
|
-
end
|
@@ -1,10 +0,0 @@
|
|
1
|
-
module WithScopedQueries::Page
|
2
|
-
def self.query_by(params, current_scope, _)
|
3
|
-
page_param = params[:page] || 1
|
4
|
-
current_scope.page(page_param)
|
5
|
-
end
|
6
|
-
|
7
|
-
def self.add_queriable_attributes_to(klass, _)
|
8
|
-
klass.queriable_attributes.merge!(page: :page)
|
9
|
-
end
|
10
|
-
end
|
@@ -1,47 +0,0 @@
|
|
1
|
-
module WithScopedQueries::Sort
|
2
|
-
extend ActiveSupport::Concern
|
3
|
-
|
4
|
-
included do
|
5
|
-
class_attribute :sorting_fields, :default_sorting_field, instance_writer: false
|
6
|
-
end
|
7
|
-
|
8
|
-
def self.query_by(params, scope, klass)
|
9
|
-
sort_param = params[:sort] || klass.default_sorting_field.to_s
|
10
|
-
normalized_params = normalize_params(sort_param)
|
11
|
-
if sort_param.present? && klass.sorting_params_allowed?(*normalized_params)
|
12
|
-
sort_method_for(klass, scope, *normalized_params)
|
13
|
-
else
|
14
|
-
scope
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
def self.normalize_params(param)
|
19
|
-
param&.split(/_(?!.*_)/)
|
20
|
-
end
|
21
|
-
|
22
|
-
def self.add_queriable_attributes_to(klass, attributes)
|
23
|
-
klass.default_sorting_field = attributes.extract_options![:default]
|
24
|
-
klass.sorting_fields = attributes
|
25
|
-
klass.queriable_attributes.merge!(sort: :sort)
|
26
|
-
end
|
27
|
-
|
28
|
-
def self.sort_method_for(klass, scope, field, direction)
|
29
|
-
if klass.column_names.include? field
|
30
|
-
scope.public_send(:reorder, "#{klass.table_name}.#{field} #{direction}")
|
31
|
-
else
|
32
|
-
scope.public_send("order_by_#{field}", direction)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
|
36
|
-
class_methods do
|
37
|
-
def sorting_filters
|
38
|
-
sorting_fields.product([:asc, :desc]).map do |it|
|
39
|
-
"#{it.first}_#{it.second}"
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
def sorting_params_allowed?(sort_param, direction_param=nil)
|
44
|
-
sorting_fields.include?(sort_param.to_sym) && [:asc, :desc].include?(direction_param&.to_sym)
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
@@ -1,32 +0,0 @@
|
|
1
|
-
#TODO may use mumukit slug
|
2
|
-
module WithSlug
|
3
|
-
extend ActiveSupport::Concern
|
4
|
-
|
5
|
-
included do
|
6
|
-
validates_presence_of :slug
|
7
|
-
validates_uniqueness_of :slug
|
8
|
-
end
|
9
|
-
|
10
|
-
def import!
|
11
|
-
import_from_json! Mumukit::Platform.bibliotheca_bridge.send(self.class.name.underscore, slug)
|
12
|
-
end
|
13
|
-
|
14
|
-
def slug_parts
|
15
|
-
org, repo = slug.split('/')
|
16
|
-
{organization: org, repository: repo}
|
17
|
-
end
|
18
|
-
|
19
|
-
module ClassMethods
|
20
|
-
def import!(slug)
|
21
|
-
transaction do
|
22
|
-
item = find_or_initialize_by(slug: slug)
|
23
|
-
item.save(validate: false)
|
24
|
-
item.import!
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
def by_slug_parts!(args)
|
29
|
-
find_by!(slug: "#{args[:organization]}/#{args[:repository]}")
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
@@ -1,16 +0,0 @@
|
|
1
|
-
module WithUsages
|
2
|
-
extend ActiveSupport::Concern
|
3
|
-
|
4
|
-
included do
|
5
|
-
has_many :usages, as: :item
|
6
|
-
end
|
7
|
-
|
8
|
-
def usage_in_organization(organization = Organization.current)
|
9
|
-
usages.in_organization(organization).first.try(:parent_item)
|
10
|
-
end
|
11
|
-
|
12
|
-
def usage_in_organization_of_type(type, organization = Organization.current)
|
13
|
-
item = usage_in_organization(organization)
|
14
|
-
item.is_a?(type) ? item : nil
|
15
|
-
end
|
16
|
-
end
|
data/app/models/content.rb
DELETED
data/app/models/course.rb
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
class Course < ApplicationRecord
|
2
|
-
include Mumukit::Platform::Course::Helpers
|
3
|
-
|
4
|
-
validates_presence_of :slug, :shifts, :code, :days, :period, :description, :organization_id
|
5
|
-
validates_uniqueness_of :slug
|
6
|
-
belongs_to :organization
|
7
|
-
|
8
|
-
def self.import_from_json!(json)
|
9
|
-
json = Mumukit::Platform::Course::Helpers.slice_platform_json json
|
10
|
-
where(slug: json[:slug]).update_or_create!(json)
|
11
|
-
end
|
12
|
-
|
13
|
-
def slug=(slug)
|
14
|
-
s = Mumukit::Auth::Slug.parse(slug)
|
15
|
-
|
16
|
-
self[:slug] = slug
|
17
|
-
self[:code] = s.course
|
18
|
-
self[:organization_id] = Organization.find_by!(name: s.organization).id
|
19
|
-
end
|
20
|
-
end
|
data/app/models/discussion.rb
DELETED
@@ -1,136 +0,0 @@
|
|
1
|
-
class Discussion < ApplicationRecord
|
2
|
-
include WithDiscussionStatus, ParentNavigation, WithScopedQueries, Contextualization
|
3
|
-
|
4
|
-
belongs_to :item, polymorphic: true
|
5
|
-
has_many :messages, -> { order(:created_at) }, dependent: :delete_all
|
6
|
-
belongs_to :initiator, class_name: 'User'
|
7
|
-
belongs_to :exercise, foreign_type: :exercise, foreign_key: 'item_id'
|
8
|
-
has_many :subscriptions
|
9
|
-
has_many :upvotes
|
10
|
-
|
11
|
-
scope :by_language, -> (language) { includes(:exercise).joins(exercise: :language).where(languages: {name: language}) }
|
12
|
-
|
13
|
-
before_save :capitalize_title
|
14
|
-
validates_presence_of :title
|
15
|
-
|
16
|
-
markdown_on :description
|
17
|
-
|
18
|
-
sortable :created_at, :upvotes_count, default: :created_at_desc
|
19
|
-
filterable :status, :language
|
20
|
-
pageable
|
21
|
-
|
22
|
-
delegate :language, to: :item
|
23
|
-
delegate :to_discussion_status, to: :status
|
24
|
-
|
25
|
-
scope :for_user, -> (user) do
|
26
|
-
if user.try(:moderator?)
|
27
|
-
all
|
28
|
-
else
|
29
|
-
where.not(status: :closed).where.not(status: :pending_review).or(where(initiator: user))
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
def try_solve!
|
34
|
-
if opened?
|
35
|
-
update! status: reachable_statuses_for(initiator).first
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
def capitalize_title
|
40
|
-
title.capitalize!
|
41
|
-
end
|
42
|
-
|
43
|
-
def used_in?(organization)
|
44
|
-
item.used_in?(organization)
|
45
|
-
end
|
46
|
-
|
47
|
-
def commentable_by?(user)
|
48
|
-
user&.moderator? || (opened? && user.present?)
|
49
|
-
end
|
50
|
-
|
51
|
-
def subscribable?
|
52
|
-
opened? || solved?
|
53
|
-
end
|
54
|
-
|
55
|
-
def has_submission?
|
56
|
-
submission.solution.present?
|
57
|
-
end
|
58
|
-
|
59
|
-
def read_by?(user)
|
60
|
-
subscription_for(user).read
|
61
|
-
end
|
62
|
-
|
63
|
-
def last_message_date
|
64
|
-
messages.last&.created_at || created_at
|
65
|
-
end
|
66
|
-
|
67
|
-
def friendly
|
68
|
-
title
|
69
|
-
end
|
70
|
-
|
71
|
-
def subscription_for(user)
|
72
|
-
subscriptions.find_by(user: user)
|
73
|
-
end
|
74
|
-
|
75
|
-
def upvote_for(user)
|
76
|
-
upvotes.find_by(user: user)
|
77
|
-
end
|
78
|
-
|
79
|
-
def unread_subscriptions(user)
|
80
|
-
subscriptions.where.not(user: user).map(&:unread!)
|
81
|
-
end
|
82
|
-
|
83
|
-
def submit_message!(message, user)
|
84
|
-
message.merge!(sender: user.uid)
|
85
|
-
messages.create(message)
|
86
|
-
unread_subscriptions(user)
|
87
|
-
end
|
88
|
-
|
89
|
-
def authorized?(user)
|
90
|
-
initiator?(user) || user.try(:moderator?)
|
91
|
-
end
|
92
|
-
|
93
|
-
def initiator?(user)
|
94
|
-
user.try(:uid) == initiator.uid
|
95
|
-
end
|
96
|
-
|
97
|
-
def reachable_statuses_for(user)
|
98
|
-
return [] unless authorized?(user)
|
99
|
-
status.reachable_statuses_for(user, self)
|
100
|
-
end
|
101
|
-
|
102
|
-
def reachable_status_for?(user, status)
|
103
|
-
reachable_statuses_for(user).include? status
|
104
|
-
end
|
105
|
-
|
106
|
-
def allowed_statuses_for(user)
|
107
|
-
status.allowed_statuses_for(user, self)
|
108
|
-
end
|
109
|
-
|
110
|
-
def update_status!(status, user)
|
111
|
-
update!(status: status) if reachable_status_for?(user, status)
|
112
|
-
end
|
113
|
-
|
114
|
-
def has_messages?
|
115
|
-
messages.exists? || description.present?
|
116
|
-
end
|
117
|
-
|
118
|
-
def responses_count
|
119
|
-
messages.where.not(sender: initiator.uid).count
|
120
|
-
end
|
121
|
-
|
122
|
-
def has_responses?
|
123
|
-
responses_count > 0
|
124
|
-
end
|
125
|
-
|
126
|
-
def extra_preview_html
|
127
|
-
# FIXME this is buggy, because the extra
|
128
|
-
# may have changed since the submission of this discussion
|
129
|
-
exercise.assignment_for(initiator).extra_preview_html
|
130
|
-
end
|
131
|
-
|
132
|
-
def self.debatable_for(klazz, params)
|
133
|
-
debatable_id = params[:"#{klazz.underscore}_id"]
|
134
|
-
klazz.constantize.find(debatable_id)
|
135
|
-
end
|
136
|
-
end
|