mumuki-domain 6.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +674 -0
- data/README.md +152 -0
- data/app/models/api_client.rb +31 -0
- data/app/models/application_record.rb +88 -0
- data/app/models/assignment.rb +204 -0
- data/app/models/book.rb +64 -0
- data/app/models/chapter.rb +29 -0
- data/app/models/complement.rb +15 -0
- data/app/models/concerns/assistable.rb +25 -0
- data/app/models/concerns/contextualization.rb +82 -0
- data/app/models/concerns/friendly_name.rb +10 -0
- data/app/models/concerns/guide_container.rb +54 -0
- data/app/models/concerns/navigation/parent_navigation.rb +27 -0
- data/app/models/concerns/navigation/siblings_navigation.rb +19 -0
- data/app/models/concerns/navigation/terminal_navigation.rb +13 -0
- data/app/models/concerns/submittable/confirmable.rb +5 -0
- data/app/models/concerns/submittable/queriable.rb +9 -0
- data/app/models/concerns/submittable/questionable.rb +6 -0
- data/app/models/concerns/submittable/solvable.rb +32 -0
- data/app/models/concerns/submittable/submittable.rb +11 -0
- data/app/models/concerns/submittable/triable.rb +9 -0
- data/app/models/concerns/with_assignments.rb +32 -0
- data/app/models/concerns/with_case_insensitive_search.rb +7 -0
- data/app/models/concerns/with_description.rb +12 -0
- data/app/models/concerns/with_discussion_creation/subscription.rb +33 -0
- data/app/models/concerns/with_discussion_creation/upvote.rb +28 -0
- data/app/models/concerns/with_discussion_creation.rb +9 -0
- data/app/models/concerns/with_discussion_status.rb +11 -0
- data/app/models/concerns/with_discussions.rb +23 -0
- data/app/models/concerns/with_editor.rb +39 -0
- data/app/models/concerns/with_expectations.rb +29 -0
- data/app/models/concerns/with_language.rb +14 -0
- data/app/models/concerns/with_layout.rb +7 -0
- data/app/models/concerns/with_locale.rb +7 -0
- data/app/models/concerns/with_messages.rb +22 -0
- data/app/models/concerns/with_name.rb +15 -0
- data/app/models/concerns/with_number.rb +9 -0
- data/app/models/concerns/with_profile.rb +12 -0
- data/app/models/concerns/with_randomizations.rb +43 -0
- data/app/models/concerns/with_reminders.rb +74 -0
- data/app/models/concerns/with_scoped_queries/filter.rb +15 -0
- data/app/models/concerns/with_scoped_queries/page.rb +10 -0
- data/app/models/concerns/with_scoped_queries/sort.rb +47 -0
- data/app/models/concerns/with_scoped_queries.rb +47 -0
- data/app/models/concerns/with_slug.rb +52 -0
- data/app/models/concerns/with_usages.rb +16 -0
- data/app/models/concerns/with_user_navigation.rb +9 -0
- data/app/models/content.rb +15 -0
- data/app/models/course.rb +20 -0
- data/app/models/discussion.rb +136 -0
- data/app/models/event.rb +2 -0
- data/app/models/exam.rb +147 -0
- data/app/models/exam_authorization.rb +10 -0
- data/app/models/exercise/challenge.rb +25 -0
- data/app/models/exercise/interactive.rb +41 -0
- data/app/models/exercise/playground.rb +23 -0
- data/app/models/exercise/problem.rb +41 -0
- data/app/models/exercise/queriable_challenge.rb +5 -0
- data/app/models/exercise/reading.rb +17 -0
- data/app/models/exercise.rb +198 -0
- data/app/models/guide.rb +121 -0
- data/app/models/invitation.rb +36 -0
- data/app/models/language.rb +114 -0
- data/app/models/lesson.rb +25 -0
- data/app/models/message.rb +68 -0
- data/app/models/organization.rb +118 -0
- data/app/models/stats.rb +24 -0
- data/app/models/subscription.rb +12 -0
- data/app/models/topic.rb +60 -0
- data/app/models/topic_container.rb +22 -0
- data/app/models/upvote.rb +4 -0
- data/app/models/usage.rb +20 -0
- data/app/models/user.rb +153 -0
- data/app/models/with_stats.rb +9 -0
- data/db/migrate/20141120231135_create_exercises.rb +11 -0
- data/db/migrate/20141120231735_create_submissions.rb +9 -0
- data/db/migrate/20141121001134_add_status_to_submission.rb +5 -0
- data/db/migrate/20141121013100_add_result_to_submission.rb +5 -0
- data/db/migrate/20141121122921_add_language_to_exercise.rb +5 -0
- data/db/migrate/20141124023403_create_users.rb +13 -0
- data/db/migrate/20141124032114_add_user_to_submission.rb +5 -0
- data/db/migrate/20141207235356_add_submissions_count_to_exercise.rb +5 -0
- data/db/migrate/20141208005050_add_author_to_exercise.rb +5 -0
- data/db/migrate/20141208005125_rename_user_to_submitter.rb +5 -0
- data/db/migrate/20141212044717_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb +31 -0
- data/db/migrate/20141212044718_add_missing_unique_indices.acts_as_taggable_on_engine.rb +20 -0
- data/db/migrate/20141212044719_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +10 -0
- data/db/migrate/20141212044720_add_missing_taggable_index.acts_as_taggable_on_engine.rb +10 -0
- data/db/migrate/20141221213109_create_exercise_repos.rb +11 -0
- data/db/migrate/20141221215035_add_origin_to_exercise.rb +6 -0
- data/db/migrate/20141225034553_rename_exercise_repo_to_guide.rb +6 -0
- data/db/migrate/20141225143218_rename_github_url_to_github_repository.rb +5 -0
- data/db/migrate/20141225195510_create_imports.rb +9 -0
- data/db/migrate/20141225211350_add_status_to_import.rb +6 -0
- data/db/migrate/20141226010922_add_result_to_import.rb +5 -0
- data/db/migrate/20141228151351_change_exercise_description_to_text.rb +5 -0
- data/db/migrate/20141231074400_create_languages.rb +13 -0
- data/db/migrate/20141231191842_change_language_column_type.rb +6 -0
- data/db/migrate/20141231192030_rename_author_to_plugin_author.rb +5 -0
- data/db/migrate/20141231234940_increment_language_id.rb +5 -0
- data/db/migrate/20150108014005_add_locale_to_exercise.rb +5 -0
- data/db/migrate/20150111160450_add_uniques_to_languages.rb +6 -0
- data/db/migrate/20150125042217_add_test_syntax_hint_to_language.rb +5 -0
- data/db/migrate/20150125051529_add_hint_to_exercise.rb +5 -0
- data/db/migrate/20150126213310_devise_create_admin_users.rb +42 -0
- data/db/migrate/20150126213316_create_active_admin_comments.rb +19 -0
- data/db/migrate/20150315072037_add_description_to_guide.rb +6 -0
- data/db/migrate/20150317052723_remove_language_author.rb +5 -0
- data/db/migrate/20150317053307_remove_language_hint.rb +5 -0
- data/db/migrate/20150321150030_add_extra_code_to_exercise.rb +5 -0
- data/db/migrate/20150328211331_create_expectations.rb +11 -0
- data/db/migrate/20150329163753_add_email_to_user.rb +5 -0
- data/db/migrate/20150330020553_add_expectation_results_to_submission.rb +5 -0
- data/db/migrate/20150405231013_create_exports.rb +9 -0
- data/db/migrate/20150405232603_add_default_guide_to_user.rb +5 -0
- data/db/migrate/20150406020152_add_last_submission_date_to_user.rb +5 -0
- data/db/migrate/20150407225356_add_unique_index_to_users.rb +5 -0
- data/db/migrate/20150408020712_add_status_to_export.rb +6 -0
- data/db/migrate/20150408022654_add_commiter_to_export.rb +5 -0
- data/db/migrate/20150411215351_change_guide_description_to_text.rb +5 -0
- data/db/migrate/20150412042959_add_committer_to_import.rb +5 -0
- data/db/migrate/20150412201651_remove_default_guide_from_user.rb +5 -0
- data/db/migrate/20150415053559_add_image_url_to_user.rb +5 -0
- data/db/migrate/20150415211341_add_position_to_exercise.rb +5 -0
- data/db/migrate/20150415234515_create_relationships.rb +10 -0
- data/db/migrate/20150417052238_add_original_id_format_to_guide.rb +5 -0
- data/db/migrate/20150418055334_add_locale_and_language_to_guide.rb +6 -0
- data/db/migrate/20150424180136_add_guides_users_association_tables.rb +14 -0
- data/db/migrate/20150428195229_add_guides_suggestions.rb +8 -0
- data/db/migrate/20150507215646_remove_relationship.rb +5 -0
- data/db/migrate/20150508015148_create_api_tokens.rb +10 -0
- data/db/migrate/20150509191428_add_name_to_token.rb +5 -0
- data/db/migrate/20150512235847_add_feedback_to_submission.rb +5 -0
- data/db/migrate/20150513203636_create_categories.rb +12 -0
- data/db/migrate/20150513204102_create_starting_points.rb +11 -0
- data/db/migrate/20150517074730_add_extra_code_to_guide.rb +5 -0
- data/db/migrate/20150518174912_add_language_output_visibility_flag.rb +5 -0
- data/db/migrate/20150518185508_add_content_type_to_language.rb +5 -0
- data/db/migrate/20150519131033_set_default_locale_for_guide.rb +5 -0
- data/db/migrate/20150519174628_remove_language_name_uniq.rb +6 -0
- data/db/migrate/20150519220307_rename_api_token_columns.rb +6 -0
- data/db/migrate/20150520011404_convert_starting_point_into_path.rb +12 -0
- data/db/migrate/20150529135324_add_corollary_to_guide.rb +5 -0
- data/db/migrate/20150529141430_add_corollary_to_exercise.rb +5 -0
- data/db/migrate/20150531164450_add_test_extension_to_language.rb +5 -0
- data/db/migrate/20150603003459_remove_language_extension_uniq.rb +6 -0
- data/db/migrate/20150603020457_remove_guide_name_uniq.rb +6 -0
- data/db/migrate/20150605065543_add_highlight_mode.rb +5 -0
- data/db/migrate/20150614173852_add_learning_flag.rb +5 -0
- data/db/migrate/20150614180512_add_beta_flag.rb +5 -0
- data/db/migrate/20150614191257_add_last_exercise.rb +5 -0
- data/db/migrate/20150620181839_add_layout_to_exercise.rb +5 -0
- data/db/migrate/20150701030644_add_unique_to_language_name_index.rb +6 -0
- data/db/migrate/20150701212609_add_test_results_to_submission.rb +5 -0
- data/db/migrate/20150708212022_add_position_to_category.rb +5 -0
- data/db/migrate/20150708212836_change_category_description_to_text.rb +5 -0
- data/db/migrate/20150713120916_add_expectations_column_to_exercise.rb +5 -0
- data/db/migrate/20150714000532_remove_expectations_relation.rb +5 -0
- data/db/migrate/20150722003532_create_event_subscribers.rb +10 -0
- data/db/migrate/20150722030820_create_solutions.rb +16 -0
- data/db/migrate/20150722142019_add_submissions_count_to_solution.rb +5 -0
- data/db/migrate/20150723052640_add_submission_id_to_solution.rb +5 -0
- data/db/migrate/20150724062215_add_language_description.rb +5 -0
- data/db/migrate/20150724062233_add_category_links.rb +5 -0
- data/db/migrate/20150724062249_add_category_long_description.rb +5 -0
- data/db/migrate/20150819194207_convert_submissions_into_solutions.rb +34 -0
- data/db/migrate/20150819202310_remove_submissions.rb +5 -0
- data/db/migrate/20150826023647_create_friendly_id_slugs.rb +15 -0
- data/db/migrate/20150826023757_add_slug_to_guides.rb +6 -0
- data/db/migrate/20150826024859_add_slug_to_exercises.rb +6 -0
- data/db/migrate/20150828013106_add_remember_me_token_to_user.rb +5 -0
- data/db/migrate/20150829211550_add_queriable_to_language.rb +5 -0
- data/db/migrate/20150829215524_add_expectations_column_to_guide.rb +5 -0
- data/db/migrate/20150905214532_rename_exercise_title_to_name.rb +5 -0
- data/db/migrate/20151001143118_rename_solution_to_assignment.rb +5 -0
- data/db/migrate/20151001183858_rename_assignment_content_to_solution.rb +5 -0
- data/db/migrate/20151003003856_add_type_to_exercise.rb +5 -0
- data/db/migrate/20151020145904_remove_guide_git_information.rb +7 -0
- data/db/migrate/20151104163433_create_tenants.rb +9 -0
- data/db/migrate/20151104172241_create_path_rules.rb +11 -0
- data/db/migrate/20151104173956_remove_guide_position.rb +5 -0
- data/db/migrate/20151104220859_remove_path_from_guide.rb +5 -0
- data/db/migrate/20151107232242_move_slug_to_path_rule.rb +6 -0
- data/db/migrate/20151108173838_remove_slugs.rb +5 -0
- data/db/migrate/20151108182857_remove_act_as_taggable_taggings.rb +6 -0
- data/db/migrate/20151108183319_add_tags_array.rb +5 -0
- data/db/migrate/20151206072741_rename_guide_extra_code_to_extra.rb +5 -0
- data/db/migrate/20151208224736_rename_path_rule_to_chapter_guide.rb +5 -0
- data/db/migrate/20151208224907_rename_category_to_chapter.rb +5 -0
- data/db/migrate/20151208225503_rename_chapter_position_to_number.rb +5 -0
- data/db/migrate/20151208231749_rename_chapter_guide_path_to_chapter.rb +5 -0
- data/db/migrate/20151208233707_rename_url_to_slug.rb +5 -0
- data/db/migrate/20151209021925_add_locale_to_tenant.rb +5 -0
- data/db/migrate/20151210204646_remove_language_extensions.rb +6 -0
- data/db/migrate/20151211032811_drop_collaborators.rb +5 -0
- data/db/migrate/20151211033000_drop_contributors.rb +5 -0
- data/db/migrate/20151211034943_remove_authors.rb +6 -0
- data/db/migrate/20151211035206_add_contact_email_to_tenant.rb +5 -0
- data/db/migrate/20151218172557_drop_import.rb +6 -0
- data/db/migrate/20151222153838_add_default_content_to_exercise.rb +5 -0
- data/db/migrate/20151223014138_change_language_icon_url_into_devicon_id.rb +5 -0
- data/db/migrate/20151224174248_remove_original_id.rb +5 -0
- data/db/migrate/20151229153839_replace_learning_with_type_in_guides.rb +6 -0
- data/db/migrate/20160108191156_rename_extra_code.rb +5 -0
- data/db/migrate/20160108215313_remove_unique_index_from_users.rb +5 -0
- data/db/migrate/20160119024542_add_preface_to_tenant.rb +5 -0
- data/db/migrate/20160119040351_rename_tenant_to_book.rb +5 -0
- data/db/migrate/20160119191508_rename_position_to_number.rb +6 -0
- data/db/migrate/20160120171336_add_type_to_event_suscriber.rb +5 -0
- data/db/migrate/20160205184243_add_bibliotheca_id_to_exercise.rb +5 -0
- data/db/migrate/20160214191548_required_bibliotheca_id.rb +5 -0
- data/db/migrate/20160222165337_add_hidden_flag_to_extra_code.rb +5 -0
- data/db/migrate/20160222192958_rename_chapter_guide_to_lesson.rb +5 -0
- data/db/migrate/20160307184203_add_prompt_to_language.rb +5 -0
- data/db/migrate/20160331210507_add_comment_model.rb +13 -0
- data/db/migrate/20160401142104_add_readed_to_comment.rb +5 -0
- data/db/migrate/20160404214826_change_readed_to_read.rb +5 -0
- data/db/migrate/20160405184624_change_submission_id_to_string.rb +5 -0
- data/db/migrate/20160412193123_change_content_comment_to_text.rb +5 -0
- data/db/migrate/20160414150800_remove_tenant_subscriber.rb +5 -0
- data/db/migrate/20160426171156_add_new_expectations_to_exercise.rb +5 -0
- data/db/migrate/20160427195306_create_organizations.rb +12 -0
- data/db/migrate/20160427223805_add_chapter_book.rb +5 -0
- data/db/migrate/20160427234538_create_topics.rb +11 -0
- data/db/migrate/20160427235605_add_topic_to_chapter.rb +5 -0
- data/db/migrate/20160428162753_add_topic_id_to_lesson.rb +5 -0
- data/db/migrate/20160428175230_create_exams.rb +10 -0
- data/db/migrate/20160428224823_add_duration_to_exam.rb +5 -0
- data/db/migrate/20160429174901_add_start_end_time_to_exam.rb +6 -0
- data/db/migrate/20160429181825_add_exam_user.rb +8 -0
- data/db/migrate/20160430225048_create_complements.rb +10 -0
- data/db/migrate/20160430231035_remove_chapter_lesson.rb +5 -0
- data/db/migrate/20160430235331_remove_chapter_name_description.rb +6 -0
- data/db/migrate/20160430235656_remove_chapter_locale_image_url.rb +6 -0
- data/db/migrate/20160501003355_add_long_description_to_topic.rb +5 -0
- data/db/migrate/20160501071847_create_usages.rb +11 -0
- data/db/migrate/20160506012945_add_slug_to_topic_and_book.rb +9 -0
- data/db/migrate/20160506035230_remove_slug_from_lesson.rb +5 -0
- data/db/migrate/20160506041446_rename_preface_to_description.rb +5 -0
- data/db/migrate/20160506172239_remove_event_subscriber.rb +5 -0
- data/db/migrate/20160506175610_remove_api_tokens.rb +5 -0
- data/db/migrate/20160506181152_remove_admin_user.rb +5 -0
- data/db/migrate/20160506182333_remove_admin_comments.rb +5 -0
- data/db/migrate/20160510183137_add_private_to_organization.rb +5 -0
- data/db/migrate/20160512134321_add_organization_image.rb +5 -0
- data/db/migrate/20160516191936_add_stateful_console_to_language.rb +5 -0
- data/db/migrate/20160517215229_add_classroom_idto_exams.rb +6 -0
- data/db/migrate/20160518212552_rename_exam_users_to_exam_authorization.rb +5 -0
- data/db/migrate/20160518213912_add_user_start_data_in_exam.rb +6 -0
- data/db/migrate/20160519045220_add_id_to_exam_authorizations.rb +5 -0
- data/db/migrate/20160520141716_remove_chapter_links_and_long_description.rb +6 -0
- data/db/migrate/20160520153115_change_exam_classroom_id_to_string.rb +5 -0
- data/db/migrate/20160526172026_remove_not_null_constraint_exam_duration.rb +6 -0
- data/db/migrate/20160526182119_add_metadata_to_user.rb +5 -0
- data/db/migrate/20160617175235_add_last_organization_to_user.rb +5 -0
- data/db/migrate/20160617195350_change_metadata_to_text.rb +5 -0
- data/db/migrate/20160701195105_add_login_methods_to_organization.rb +5 -0
- data/db/migrate/20160705160244_add_manual_evaluation_to_exercise.rb +5 -0
- data/db/migrate/20160715001254_rename_test_runner_url.rb +5 -0
- data/db/migrate/20160729194600_change_default_content_to_text.rb +5 -0
- data/db/migrate/20160812003350_change_default_login_methods.rb +5 -0
- data/db/migrate/20160815225314_rename_long_description_to_appendix.rb +5 -0
- data/db/migrate/20160819181024_make_organization_private_by_default.rb +5 -0
- data/db/migrate/20160830160937_add_authoring_information_to_guide.rb +6 -0
- data/db/migrate/20160907010315_remove_exercise_slug.rb +5 -0
- data/db/migrate/20161004202742_add_editor_to_problem.rb +6 -0
- data/db/migrate/20161018142147_add_language_extension.rb +5 -0
- data/db/migrate/20161107171305_remove_devicon_column_from_language.rb +5 -0
- data/db/migrate/20161222182015_rename_uid_to_social_id.rb +5 -0
- data/db/migrate/20161222182724_add_uid_to_user.rb +5 -0
- data/db/migrate/20161226181932_remove_metadata_from_users.rb +5 -0
- data/db/migrate/20161230055953_add_not_null_constraint_to_uid_in_user.rb +5 -0
- data/db/migrate/20161231224116_add_permissions_to_user.rb +5 -0
- data/db/migrate/20170125185012_add_new_fields_on_organization.rb +15 -0
- data/db/migrate/20170207154702_add_index_to_uid.rb +5 -0
- data/db/migrate/20170224040846_create_invitations.rb +11 -0
- data/db/migrate/20170224061531_make_tos_type_text.rb +5 -0
- data/db/migrate/20170301160253_rename_invitation_slug_to_code.rb +5 -0
- data/db/migrate/20170330145157_rename_comment_to_messages.rb +6 -0
- data/db/migrate/20170407190910_add_has_messages_flag_to_assignment.rb +5 -0
- data/db/migrate/20170526191251_add_community_link_to_organizations.rb +5 -0
- data/db/migrate/20170526204944_add_has_messages_to_organizations.rb +5 -0
- data/db/migrate/20170601181759_rename_has_messages_to_raise_hand_enabled_in_organization.rb +5 -0
- data/db/migrate/20170608033403_remove_has_messages_from_assignment.rb +5 -0
- data/db/migrate/20170608044038_remove_messages_exercise_id.rb +5 -0
- data/db/migrate/20170608154055_remove_message_type_column.rb +5 -0
- data/db/migrate/20170612173212_add_first_name_and_last_name_to_user.rb +6 -0
- data/db/migrate/20170621222902_introduce_settings_and_themes.rb +40 -0
- data/db/migrate/20170818185127_add_guide_slug_constraint.rb +5 -0
- data/db/migrate/20170830020507_change_invitation_expiration_date_type.rb +5 -0
- data/db/migrate/20171003204152_add_goal_to_exercise.rb +5 -0
- data/db/migrate/20171003204209_add_queries_to_assignment.rb +6 -0
- data/db/migrate/20171004134607_add_triable_to_language.rb +5 -0
- data/db/migrate/20171024182244_add_devicon_and_comment_type_to_language.rb +6 -0
- data/db/migrate/20171109181818_add_manual_evaluation_commend_and_submission_id_index_in_assignment.rb +6 -0
- data/db/migrate/20171229042201_add_assets_to_language.rb +9 -0
- data/db/migrate/20180117014110_add_custom_editor_assets_to_language.rb +13 -0
- data/db/migrate/20180123174410_add_initial_and_final_states_to_exercises.rb +6 -0
- data/db/migrate/20180123180836_add_accepts_reminders_to_users.rb +5 -0
- data/db/migrate/20180129142749_add_api_client.rb +11 -0
- data/db/migrate/20180130194923_add_last_reminded_date_to_users.rb +5 -0
- data/db/migrate/20180130204935_add_course.rb +16 -0
- data/db/migrate/20180307150148_add_failed_submissions_count_to_assignments.rb +5 -0
- data/db/migrate/20180323125804_remove_user_name.rb +5 -0
- data/db/migrate/20180323140943_remove_unused_omniauth_fields.rb +7 -0
- data/db/migrate/20180326224511_remove_book_ids.rb +5 -0
- data/db/migrate/20180402015405_remove_course_uid.rb +5 -0
- data/db/migrate/20180504173548_create_discussions.rb +12 -0
- data/db/migrate/20180504185845_add_discussion_id_to_message.rb +5 -0
- data/db/migrate/20180526141344_add_tips_rules_to_exercise.rb +5 -0
- data/db/migrate/20180605143727_add_submission_to_discussion.rb +16 -0
- data/db/migrate/20180611190239_add_randomizations_to_exercises.rb +5 -0
- data/db/migrate/20180619182555_create_subscriptions.rb +9 -0
- data/db/migrate/20180702153442_create_upvotes.rb +8 -0
- data/db/migrate/20180702175220_add_upvotes_count_to_discussions.rb +5 -0
- data/db/migrate/20180704150839_rename_assignment_status_to_submission_status.rb +5 -0
- data/db/migrate/20180725145801_add_submissions_caps_to_exams.rb +6 -0
- data/db/migrate/20180802190437_add_approved_to_messages.rb +5 -0
- data/db/migrate/20181004173216_add_free_form_editor_to_exercises.rb +5 -0
- data/db/migrate/20181014233438_remove_non_null_constraint_from_permissions.rb +5 -0
- data/db/migrate/20181016203853_add_test_extension_back.rb +5 -0
- data/db/migrate/20181021151505_add_id_format_back.rb +5 -0
- data/db/migrate/20181022043658_add_private_flag_for_guides.rb +5 -0
- data/db/migrate/20181022220518_add_teacher_info_to_guide.rb +6 -0
- data/db/migrate/20181101180652_add_unique_index_to_organizations_name.rb +5 -0
- data/db/migrate/20181105152420_remove_contact_email_from_book.rb +5 -0
- data/db/migrate/20181113183935_rename_guide_contributors_to_collaborators.rb +5 -0
- data/db/migrate/20181114201620_add_test_template_to_languages.rb +5 -0
- data/lib/mumuki/domain/engine.rb +15 -0
- data/lib/mumuki/domain/evaluation/automated.rb +5 -0
- data/lib/mumuki/domain/evaluation/manual.rb +5 -0
- data/lib/mumuki/domain/evaluation.rb +5 -0
- data/lib/mumuki/domain/exceptions/blocked_forum_error.rb +2 -0
- data/lib/mumuki/domain/exceptions/forbidden_error.rb +2 -0
- data/lib/mumuki/domain/exceptions/gone_error.rb +2 -0
- data/lib/mumuki/domain/exceptions/not_found_error.rb +2 -0
- data/lib/mumuki/domain/exceptions/unauthorized_error.rb +2 -0
- data/lib/mumuki/domain/exceptions.rb +5 -0
- data/lib/mumuki/domain/extensions/array.rb +11 -0
- data/lib/mumuki/domain/extensions/string.rb +29 -0
- data/lib/mumuki/domain/extensions.rb +2 -0
- data/lib/mumuki/domain/file.rb +18 -0
- data/lib/mumuki/domain/locales/activerecord.en.yml +21 -0
- data/lib/mumuki/domain/locales/activerecord.es.yml +50 -0
- data/lib/mumuki/domain/locales/narrator.en.yml +14 -0
- data/lib/mumuki/domain/locales/narrator.es.yml +14 -0
- data/lib/mumuki/domain/locales/narrator.pt.yml +14 -0
- data/lib/mumuki/domain/seed.rb +29 -0
- data/lib/mumuki/domain/status/discussion/closed.rb +15 -0
- data/lib/mumuki/domain/status/discussion/discussion.rb +44 -0
- data/lib/mumuki/domain/status/discussion/opened.rb +31 -0
- data/lib/mumuki/domain/status/discussion/pending_review.rb +15 -0
- data/lib/mumuki/domain/status/discussion/solved.rb +19 -0
- data/lib/mumuki/domain/status/submission/aborted.rb +11 -0
- data/lib/mumuki/domain/status/submission/errored.rb +19 -0
- data/lib/mumuki/domain/status/submission/failed.rb +15 -0
- data/lib/mumuki/domain/status/submission/manual_evaluation_pending.rb +15 -0
- data/lib/mumuki/domain/status/submission/passed.rb +11 -0
- data/lib/mumuki/domain/status/submission/passed_with_warnings.rb +15 -0
- data/lib/mumuki/domain/status/submission/pending.rb +11 -0
- data/lib/mumuki/domain/status/submission/running.rb +15 -0
- data/lib/mumuki/domain/status/submission/submission.rb +38 -0
- data/lib/mumuki/domain/status.rb +72 -0
- data/lib/mumuki/domain/submission/base.rb +56 -0
- data/lib/mumuki/domain/submission/confirmation.rb +9 -0
- data/lib/mumuki/domain/submission/console_submission.rb +13 -0
- data/lib/mumuki/domain/submission/persistent_submission.rb +7 -0
- data/lib/mumuki/domain/submission/query.rb +19 -0
- data/lib/mumuki/domain/submission/question.rb +14 -0
- data/lib/mumuki/domain/submission/solution.rb +7 -0
- data/lib/mumuki/domain/submission/try.rb +20 -0
- data/lib/mumuki/domain/submission.rb +18 -0
- data/lib/mumuki/domain/version.rb +5 -0
- data/lib/mumuki/domain.rb +50 -0
- metadata +572 -0
@@ -0,0 +1,10 @@
|
|
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
|
@@ -0,0 +1,47 @@
|
|
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
|
@@ -0,0 +1,47 @@
|
|
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
|
@@ -0,0 +1,52 @@
|
|
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 slug_parts
|
11
|
+
org, repo = slug.split('/')
|
12
|
+
{organization: org, repository: repo}
|
13
|
+
end
|
14
|
+
|
15
|
+
## Resource Protocol
|
16
|
+
|
17
|
+
def sync_key
|
18
|
+
Mumukit::Sync.key self.class.name.underscore.to_sym, slug
|
19
|
+
end
|
20
|
+
|
21
|
+
## Copy and Rebase
|
22
|
+
|
23
|
+
def rebase!(organization)
|
24
|
+
self.slug = self.slug.to_mumukit_slug.rebase(organization).to_s
|
25
|
+
end
|
26
|
+
|
27
|
+
def rebased_dup(organization)
|
28
|
+
dup.tap { |it| it.rebase! organization }
|
29
|
+
end
|
30
|
+
|
31
|
+
## Filtering
|
32
|
+
|
33
|
+
module ClassMethods
|
34
|
+
|
35
|
+
def allowed(permissions)
|
36
|
+
all.select { |it| permissions&.writer?(it.slug) }
|
37
|
+
end
|
38
|
+
|
39
|
+
def visible(permissions)
|
40
|
+
# FIXME no truly generic
|
41
|
+
all.select { |it| !it.private? || permissions&.writer?(it.slug) }
|
42
|
+
end
|
43
|
+
|
44
|
+
def by_slug_parts!(args)
|
45
|
+
find_by!(slug: "#{args[:organization]}/#{args[:repository]}")
|
46
|
+
end
|
47
|
+
|
48
|
+
def locate_resource(key)
|
49
|
+
find_or_initialize_by(slug: key)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,16 @@
|
|
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
|
@@ -0,0 +1,15 @@
|
|
1
|
+
class Content < ApplicationRecord
|
2
|
+
self.abstract_class = true
|
3
|
+
|
4
|
+
include WithDescription
|
5
|
+
include WithLocale
|
6
|
+
include WithSlug
|
7
|
+
include WithUsages
|
8
|
+
include WithName
|
9
|
+
|
10
|
+
def to_resource_h
|
11
|
+
as_json(only: [:name, :slug, :description, :locale]).symbolize_keys
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
15
|
+
|
@@ -0,0 +1,20 @@
|
|
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_resource_h!(resource_h)
|
9
|
+
json = Mumukit::Platform::Course::Helpers.slice_platform_json resource_h
|
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
|
@@ -0,0 +1,136 @@
|
|
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
|
data/app/models/event.rb
ADDED
data/app/models/exam.rb
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
class Exam < ApplicationRecord
|
2
|
+
include GuideContainer
|
3
|
+
include FriendlyName
|
4
|
+
|
5
|
+
validates_presence_of :start_time, :end_time
|
6
|
+
|
7
|
+
belongs_to :guide
|
8
|
+
belongs_to :organization
|
9
|
+
|
10
|
+
has_many :authorizations, class_name: 'ExamAuthorization', dependent: :delete_all
|
11
|
+
has_many :users, through: :authorizations
|
12
|
+
|
13
|
+
after_destroy { |record| Usage.destroy_usages_for record }
|
14
|
+
|
15
|
+
include TerminalNavigation
|
16
|
+
|
17
|
+
def used_in?(organization)
|
18
|
+
organization == self.organization
|
19
|
+
end
|
20
|
+
|
21
|
+
def enabled?
|
22
|
+
enabled_range.cover? DateTime.now
|
23
|
+
end
|
24
|
+
|
25
|
+
def enabled_range
|
26
|
+
start_time..end_time
|
27
|
+
end
|
28
|
+
|
29
|
+
def enabled_for?(user)
|
30
|
+
enabled_range_for(user).cover? DateTime.now
|
31
|
+
end
|
32
|
+
|
33
|
+
def in_progress_for?(user)
|
34
|
+
accessible_for?(user) && started?(user)
|
35
|
+
end
|
36
|
+
|
37
|
+
def validate_accessible_for!(user)
|
38
|
+
if user.present?
|
39
|
+
raise Mumuki::Domain::ForbiddenError unless authorized?(user)
|
40
|
+
raise Mumuki::Domain::GoneError unless enabled_for?(user)
|
41
|
+
else
|
42
|
+
raise Mumuki::Domain::UnauthorizedError
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def accessible_for?(user)
|
47
|
+
authorized?(user) && enabled_for?(user)
|
48
|
+
end
|
49
|
+
|
50
|
+
def timed?
|
51
|
+
duration.present?
|
52
|
+
end
|
53
|
+
|
54
|
+
def authorize!(user)
|
55
|
+
users << user unless authorized?(user)
|
56
|
+
end
|
57
|
+
|
58
|
+
def authorized?(user)
|
59
|
+
users.include? user
|
60
|
+
end
|
61
|
+
|
62
|
+
def enabled_range_for(user)
|
63
|
+
start_time..real_end_time(user)
|
64
|
+
end
|
65
|
+
|
66
|
+
def authorization_for(user)
|
67
|
+
authorizations.find_by(user_id: user.id)
|
68
|
+
end
|
69
|
+
|
70
|
+
def authorizations_for(users)
|
71
|
+
authorizations.where(user_id: users.map(&:id))
|
72
|
+
end
|
73
|
+
|
74
|
+
def start!(user)
|
75
|
+
authorization_for(user).start! unless user.teacher_here?
|
76
|
+
end
|
77
|
+
|
78
|
+
def started?(user)
|
79
|
+
authorization_for(user).try(:started?)
|
80
|
+
end
|
81
|
+
|
82
|
+
def real_end_time(user)
|
83
|
+
if duration.present? && started?(user)
|
84
|
+
[started_at(user) + duration.minutes, end_time].min
|
85
|
+
else
|
86
|
+
end_time
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
def started_at(user)
|
91
|
+
authorization_for(user).started_at
|
92
|
+
end
|
93
|
+
|
94
|
+
def process_users(users)
|
95
|
+
users.map { |user| authorize! user }
|
96
|
+
clean_authorizations users
|
97
|
+
end
|
98
|
+
|
99
|
+
def clean_authorizations(users)
|
100
|
+
authorizations.all_except(authorizations_for(users)).destroy_all
|
101
|
+
end
|
102
|
+
|
103
|
+
def self.import_from_resource_h!(json)
|
104
|
+
exam_data = json.with_indifferent_access
|
105
|
+
organization = Organization.find_by!(name: exam_data[:organization])
|
106
|
+
organization.switch!
|
107
|
+
adapt_json_values exam_data
|
108
|
+
remove_previous_version exam_data[:eid], exam_data[:guide_id]
|
109
|
+
exam = where(classroom_id: exam_data[:eid]).update_or_create!(whitelist_attributes(exam_data))
|
110
|
+
exam.process_users exam_data[:users]
|
111
|
+
exam.index_usage! organization
|
112
|
+
exam
|
113
|
+
end
|
114
|
+
|
115
|
+
def self.adapt_json_values(exam)
|
116
|
+
exam[:guide_id] = Guide.find_by(slug: exam[:slug]).id
|
117
|
+
exam[:organization_id] = Organization.current.id
|
118
|
+
exam[:users] = exam[:uids].map { |uid| User.find_by(uid: uid) }.compact
|
119
|
+
[:start_time, :end_time].each { |param| exam[param] = exam[param].to_time }
|
120
|
+
end
|
121
|
+
|
122
|
+
def self.remove_previous_version(eid, guide_id)
|
123
|
+
Rails.logger.info "Looking for"
|
124
|
+
where("guide_id=? and organization_id=? and classroom_id!=?", guide_id, Organization.current.id, eid).tap do |exams|
|
125
|
+
Rails.logger.info "Deleting exams with ORG_ID:#{Organization.current.id} - GUIDE_ID:#{guide_id} - CLASSROOM_ID:#{eid}"
|
126
|
+
exams.destroy_all
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
def attempts_left_for(assignment)
|
131
|
+
max_attempts_for(assignment.exercise) - (assignment.attempts_count || 0)
|
132
|
+
end
|
133
|
+
|
134
|
+
def limited_for?(exercise)
|
135
|
+
max_attempts_for(exercise).present?
|
136
|
+
end
|
137
|
+
|
138
|
+
def resettable?
|
139
|
+
false
|
140
|
+
end
|
141
|
+
|
142
|
+
private
|
143
|
+
|
144
|
+
def max_attempts_for(exercise)
|
145
|
+
exercise.choice? ? max_choice_submissions : max_problem_submissions
|
146
|
+
end
|
147
|
+
end
|