card 1.16.6 → 1.16.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardoc/checksums +234 -49
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/VERSION +1 -1
- data/config/initializers/mime_types.rb +3 -3
- data/config/initializers/notification.rb +1 -1
- data/db/migrate/20121118115000_update_link_type.rb +8 -8
- data/db/migrate/20130411210957_update_codenames.rb +2 -2
- data/db/migrate/20140822073704_create_new_revision_tables.rb +12 -13
- data/db/migrate/20141001105348_move_revisions_to_actions.rb +16 -16
- data/db/migrate/20141121172918_rename_card_migration_table.rb +4 -4
- data/db/migrate_core_cards/20130419215612_import_help_text.rb +3 -3
- data/db/migrate_core_cards/20130823192433_add_style_cards.rb +45 -47
- data/db/migrate_core_cards/20130910183318_move_styles_to_content.rb +1 -1
- data/db/migrate_core_cards/20130920214038_jsonize_tinymce.rb +3 -3
- data/db/migrate_core_cards/20130920291703_update_stylesheets.rb +3 -3
- data/db/migrate_core_cards/20130927191728_account_events.rb +6 -6
- data/db/migrate_core_cards/20131016172445_common_css_patch.rb +1 -1
- data/db/migrate_core_cards/20140110193325_reset_account_request_type.rb +1 -1
- data/db/migrate_core_cards/20140307231621_user_data_to_cards.rb +19 -19
- data/db/migrate_core_cards/20140317035504_account_requests_to_signups.rb +11 -12
- data/db/migrate_core_cards/20140512155840_add_script_cards.rb +35 -36
- data/db/migrate_core_cards/20140629222005_add_email_cards.rb +55 -55
- data/db/migrate_core_cards/20140725180118_config_card_updates.rb +1 -1
- data/db/migrate_core_cards/20141111083921_delete_machine_output.rb +2 -2
- data/db/migrate_core_cards/20141115034214_config_descriptions_etc.rb +3 -3
- data/db/migrate_core_cards/20141120120605_fix_notification_html_message.rb +2 -2
- data/db/migrate_core_cards/20141204061304_watchers_to_following.rb +8 -8
- data/db/migrate_core_cards/20141208162106_add_ace_script.rb +2 -2
- data/db/migrate_core_cards/20141216155251_add_more_following_cards.rb +16 -16
- data/db/migrate_core_cards/20141230204340_uri_codename.rb +1 -1
- data/db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb +19 -19
- data/db/migrate_core_cards/20150220134731_following_to_follow_rule.rb +3 -3
- data/db/migrate_core_cards/20150317162412_bootstrap_themes.rb +15 -15
- data/db/migrate_core_cards/20150326205655_bootswatch_themes.rb +11 -11
- data/db/migrate_core_cards/20150331135745_new_card_menu.rb +1 -1
- data/db/migrate_core_cards/20150429090551_search_card_context.rb +1 -1
- data/db/migrate_core_cards/20150508212032_menu_compatibility.rb +3 -3
- data/db/migrate_core_cards/20150510031118_fix_skin_images.rb +1 -1
- data/db/migrate_core_cards/20150528084659_add_session_cardtype.rb +4 -4
- data/db/migrate_core_cards/20150601133433_add_recent_setting_session_card.rb +5 -5
- data/db/migrate_core_cards/20150605115802_add_performance_log_card.rb +1 -1
- data/db/migrate_core_cards/20150610171702_add_debugger_session_card.rb +2 -2
- data/db/migrate_core_cards/20150611203506_rails_inflection_updates.rb +5 -5
- data/db/migrate_core_cards/20150627205133_fix_script_bootstrap_card_type.rb +1 -1
- data/db/migrate_core_cards/20150702130543_remove_edit_toolbar_pinned.rb +1 -1
- data/db/migrate_core_cards/20150724123438_update_file_and_image_cards.rb +5 -5
- data/db/migrate_core_cards/20150807205221_create_references_for_search_cards.rb +1 -1
- data/db/migrate_core_cards/20150824135418_update_file_history.rb +3 -3
- data/db/migrate_core_cards/20150903130006_attachment_upload_cards.rb +2 -2
- data/db/migrate_core_cards/20150910085603_remove_performance_log_card.rb +1 -1
- data/lib/card.rb +4 -4
- data/lib/card/active_record_ext.rb +8 -8
- data/lib/card/auth.rb +6 -6
- data/lib/card/cache.rb +1 -1
- data/lib/card/chunk.rb +1 -1
- data/lib/card/content.rb +1 -1
- data/lib/card/diff.rb +10 -10
- data/lib/card/env.rb +1 -1
- data/lib/card/format.rb +12 -12
- data/lib/card/loader.rb +1 -1
- data/lib/card/migration.rb +1 -1
- data/lib/card/name.rb +4 -4
- data/lib/card/query.rb +255 -61
- data/lib/card/query/attributes.rb +310 -0
- data/lib/card/query/clause.rb +12 -15
- data/lib/card/query/join.rb +73 -0
- data/lib/card/query/reference.rb +51 -0
- data/lib/card/query/sql_statement.rb +228 -0
- data/lib/card/query/value.rb +66 -0
- data/lib/card/reference.rb +6 -6
- data/lib/card/set.rb +12 -12
- data/lib/card/set_pattern.rb +9 -9
- data/lib/card/spec_helper.rb +5 -5
- data/lib/card/success.rb +1 -1
- data/lib/cardio.rb +7 -7
- data/lib/generators/card/format/format_generator.rb +3 -3
- data/lib/generators/card/migration/migration_generator.rb +5 -5
- data/lib/generators/card/set/set_generator.rb +4 -4
- data/mod/01_core/chunk/include.rb +4 -4
- data/mod/01_core/chunk/link.rb +5 -5
- data/mod/01_core/chunk/literal.rb +2 -2
- data/mod/01_core/chunk/query_reference.rb +8 -8
- data/mod/01_core/chunk/uri.rb +18 -18
- data/mod/01_core/format/html_format.rb +4 -4
- data/mod/01_core/set/all/active_card.rb +2 -2
- data/mod/01_core/set/all/collection.rb +21 -26
- data/mod/01_core/set/all/content.rb +2 -2
- data/mod/01_core/set/all/fetch.rb +6 -6
- data/mod/01_core/set/all/initialize.rb +4 -4
- data/mod/01_core/set/all/location_history.rb +2 -2
- data/mod/01_core/set/all/name.rb +14 -14
- data/mod/01_core/set/all/pattern.rb +1 -1
- data/mod/01_core/set/all/permissions.rb +12 -12
- data/mod/01_core/set/all/phases.rb +29 -12
- data/mod/01_core/set/all/references.rb +14 -14
- data/mod/01_core/set/all/rules.rb +8 -8
- data/mod/01_core/set/all/templating.rb +10 -9
- data/mod/01_core/set/all/tracked_attributes.rb +7 -7
- data/mod/01_core/set/all/trash.rb +6 -6
- data/mod/01_core/set/all/type.rb +7 -7
- data/mod/01_core/set/all/utils.rb +4 -4
- data/mod/01_core/set/all/view_cache.rb +1 -1
- data/mod/01_core/set_pattern/02_all_plus.rb +2 -2
- data/mod/01_core/set_pattern/03_type.rb +1 -1
- data/mod/01_core/set_pattern/04_star.rb +1 -1
- data/mod/01_core/set_pattern/05_rstar.rb +2 -2
- data/mod/01_core/set_pattern/06_right.rb +4 -4
- data/mod/01_core/set_pattern/07_type_plus_right.rb +4 -4
- data/mod/01_core/set_pattern/08_self.rb +1 -1
- data/mod/01_core/spec/chunk/uri_spec.rb +73 -73
- data/mod/01_core/spec/format/html_format_spec.rb +5 -5
- data/mod/01_core/spec/set/all/attribute_tracking_spec.rb +1 -1
- data/mod/01_core/spec/set/all/collection_spec.rb +22 -22
- data/mod/01_core/spec/set/all/content_spec.rb +1 -1
- data/mod/01_core/spec/set/all/fetch_spec.rb +24 -24
- data/mod/01_core/spec/set/all/initialize_spec.rb +9 -9
- data/mod/01_core/spec/set/all/name_spec.rb +8 -8
- data/mod/01_core/spec/set/all/pattern_spec.rb +10 -10
- data/mod/01_core/spec/set/all/permissions_spec.rb +45 -45
- data/mod/01_core/spec/set/all/references_spec.rb +1 -1
- data/mod/01_core/spec/set/all/rules2_spec.rb +15 -15
- data/mod/01_core/spec/set/all/rules_spec.rb +37 -37
- data/mod/01_core/spec/set/all/templating_spec.rb +21 -21
- data/mod/01_core/spec/set/all/tracked_attributes_spec.rb +55 -55
- data/mod/01_core/spec/set/all/trash_spec.rb +4 -4
- data/mod/01_core/spec/set/all/type_spec.rb +15 -15
- data/mod/01_history/lib/card/act.rb +2 -2
- data/mod/01_history/lib/card/action.rb +22 -22
- data/mod/01_history/lib/card/change.rb +1 -1
- data/mod/01_history/set/all/actions.rb +2 -2
- data/mod/01_history/set/all/content_history.rb +4 -4
- data/mod/01_history/set/all/history.rb +46 -46
- data/mod/02_basic_types/set/all/all_css.rb +10 -10
- data/mod/02_basic_types/set/all/all_csv.rb +7 -7
- data/mod/02_basic_types/set/all/base.rb +25 -25
- data/mod/02_basic_types/set/all/json.rb +16 -16
- data/mod/02_basic_types/set/all/rss.rb +7 -7
- data/mod/02_basic_types/set/type/html.rb +2 -2
- data/mod/02_basic_types/set/type/plain_text.rb +1 -1
- data/mod/02_basic_types/set/type/pointer.rb +39 -31
- data/mod/02_basic_types/spec/set/all/all_css_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/all/all_csv_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/all/base_spec.rb +18 -18
- data/mod/02_basic_types/spec/set/all/json_spec.rb +4 -4
- data/mod/02_basic_types/spec/set/all/rss_spec.rb +8 -2
- data/mod/02_basic_types/spec/set/type/plain_text_spec.rb +1 -1
- data/mod/02_basic_types/spec/set/type/pointer_spec.rb +54 -44
- data/mod/03_machines/lib/card/machine.rb +46 -29
- data/mod/03_machines/lib/card/machine_input.rb +34 -10
- data/mod/03_machines/set/type/coffee_script.rb +3 -3
- data/mod/03_machines/set/type/css.rb +8 -8
- data/mod/03_machines/set/type/java_script.rb +4 -4
- data/mod/03_machines/set/type/scss.rb +2 -2
- data/mod/03_machines/set/type/skin.rb +1 -1
- data/mod/03_machines/spec/lib/shared_machine_examples.rb +27 -27
- data/mod/03_machines/spec/lib/shared_machine_input_examples.rb +8 -8
- data/mod/03_machines/spec/set/type/coffeescript_spec.rb +6 -6
- data/mod/03_machines/spec/set/type/css_spec.rb +9 -9
- data/mod/03_machines/spec/set/type/javascript_spec.rb +6 -6
- data/mod/03_machines/spec/set/type/scss_spec.rb +5 -5
- data/mod/03_machines/spec/set/type/skin_spec.rb +25 -25
- data/mod/04_settings/lib/card/setting.rb +11 -11
- data/mod/04_settings/set/abstract/permission.rb +9 -9
- data/mod/04_settings/set/right/script.rb +1 -1
- data/mod/04_settings/set/right/structure.rb +0 -5
- data/mod/04_settings/set/right/style.rb +2 -2
- data/mod/04_settings/set/self/accountable.rb +1 -1
- data/mod/04_settings/set/self/add_help.rb +1 -1
- data/mod/04_settings/set/self/autoname.rb +1 -1
- data/mod/04_settings/set/self/captcha.rb +1 -1
- data/mod/04_settings/set/self/create.rb +1 -1
- data/mod/04_settings/set/self/default.rb +1 -1
- data/mod/04_settings/set/self/delete.rb +1 -1
- data/mod/04_settings/set/self/help.rb +1 -1
- data/mod/04_settings/set/self/input.rb +1 -1
- data/mod/04_settings/set/self/layout.rb +1 -1
- data/mod/04_settings/set/self/on_create.rb +1 -1
- data/mod/04_settings/set/self/on_delete.rb +1 -1
- data/mod/04_settings/set/self/on_update.rb +1 -1
- data/mod/04_settings/set/self/options.rb +1 -1
- data/mod/04_settings/set/self/options_label.rb +1 -1
- data/mod/04_settings/set/self/read.rb +1 -1
- data/mod/04_settings/set/self/script.rb +1 -1
- data/mod/04_settings/set/self/structure.rb +1 -1
- data/mod/04_settings/set/self/style.rb +1 -1
- data/mod/04_settings/set/self/table_of_contents.rb +1 -1
- data/mod/04_settings/set/self/thanks.rb +1 -1
- data/mod/04_settings/set/self/update.rb +1 -1
- data/mod/04_settings/set/type/setting.rb +14 -14
- data/mod/04_settings/spec/set/right/comment_spec.rb +5 -5
- data/mod/04_settings/spec/set/right/create_spec.rb +1 -1
- data/mod/04_settings/spec/set/right/script_spec.rb +5 -5
- data/mod/04_settings/spec/set/right/structure_spec.rb +4 -2
- data/mod/04_settings/spec/set/right/style_spec.rb +7 -7
- data/mod/04_settings/spec/set/type/setting_spec.rb +2 -2
- data/mod/05_email/lib/card/follow_option.rb +24 -24
- data/mod/05_email/set/all/follow.rb +24 -16
- data/mod/05_email/set/all/notify.rb +25 -23
- data/mod/05_email/set/all/observer.rb +5 -5
- data/mod/05_email/set/right/bcc.rb +8 -8
- data/mod/05_email/set/right/follow.rb +44 -17
- data/mod/05_email/set/right/follow_fields.rb +1 -1
- data/mod/05_email/set/right/following.rb +49 -40
- data/mod/05_email/set/self/always.rb +2 -2
- data/mod/05_email/set/self/created.rb +1 -1
- data/mod/05_email/set/self/edited.rb +4 -4
- data/mod/05_email/set/self/follow.rb +1 -1
- data/mod/05_email/set/self/follow_defaults.rb +9 -9
- data/mod/05_email/set/self/never.rb +1 -1
- data/mod/05_email/set/type/email_template.rb +9 -9
- data/mod/05_email/set/type_plus_right/user/follow.rb +16 -16
- data/mod/05_email/spec/set/all/follow_spec.rb +10 -10
- data/mod/05_email/spec/set/all/notify_spec.rb +82 -82
- data/mod/05_email/spec/set/all/observer_spec.rb +16 -16
- data/mod/05_email/spec/set/right/followers_spec.rb +6 -6
- data/mod/05_email/spec/set/self/follow_defaults_spec.rb +2 -2
- data/mod/05_standard/lib/carrier_wave/cardmount.rb +5 -5
- data/mod/05_standard/lib/image_uploader.rb +8 -8
- data/mod/05_standard/set/abstract/attachment.rb +18 -18
- data/mod/05_standard/set/all/account.rb +5 -5
- data/mod/05_standard/set/all/comment.rb +7 -7
- data/mod/05_standard/set/all/error.rb +25 -25
- data/mod/05_standard/set/all/event_viz.rb +1 -1
- data/mod/05_standard/set/all/links.rb +9 -9
- data/mod/05_standard/set/all/rich_html/content.rb +34 -34
- data/mod/05_standard/set/all/rich_html/editing.rb +35 -35
- data/mod/05_standard/set/all/rich_html/form.rb +20 -20
- data/mod/05_standard/set/all/rich_html/header.rb +8 -8
- data/mod/05_standard/set/all/rich_html/menu.rb +33 -33
- data/mod/05_standard/set/all/rich_html/modal.rb +16 -16
- data/mod/05_standard/set/all/rich_html/toolbar.rb +63 -63
- data/mod/05_standard/set/all/rich_html/wrapper.rb +8 -8
- data/mod/05_standard/set/right/account.rb +27 -27
- data/mod/05_standard/set/right/email.rb +5 -5
- data/mod/05_standard/set/right/password.rb +5 -5
- data/mod/05_standard/set/rstar/rules.rb +52 -52
- data/mod/05_standard/set/self/account_links.rb +27 -27
- data/mod/05_standard/set/self/all.rb +1 -1
- data/mod/05_standard/set/self/head.rb +5 -5
- data/mod/05_standard/set/self/navbox.rb +11 -11
- data/mod/05_standard/set/self/recent.rb +2 -2
- data/mod/05_standard/set/self/search.rb +13 -13
- data/mod/05_standard/set/self/signin.rb +19 -19
- data/mod/05_standard/set/self/stats.rb +2 -2
- data/mod/05_standard/set/type/basic.rb +1 -1
- data/mod/05_standard/set/type/cardtype.rb +5 -5
- data/mod/05_standard/set/type/date.rb +1 -1
- data/mod/05_standard/set/type/file.rb +7 -7
- data/mod/05_standard/set/type/image.rb +8 -8
- data/mod/05_standard/set/type/number.rb +2 -2
- data/mod/05_standard/set/type/phrase.rb +1 -1
- data/mod/05_standard/set/type/search_type.rb +27 -21
- data/mod/05_standard/set/type/session.rb +2 -2
- data/mod/05_standard/set/type/set.rb +37 -37
- data/mod/05_standard/set/type/signup.rb +25 -25
- data/mod/05_standard/set/type/uri.rb +1 -1
- data/mod/05_standard/set/type/user.rb +21 -21
- data/mod/05_standard/spec/chunk/include_spec.rb +16 -16
- data/mod/05_standard/spec/chunk/link_spec.rb +18 -18
- data/mod/05_standard/spec/chunk/query_reference_spec.rb +1 -1
- data/mod/05_standard/spec/set/all/account_spec.rb +7 -7
- data/mod/05_standard/spec/set/all/email_html_spec.rb +3 -3
- data/mod/05_standard/spec/set/all/history_spec.rb +14 -14
- data/mod/05_standard/spec/set/all/rich_html/editing_spec.rb +1 -1
- data/mod/05_standard/spec/set/all/rich_html/form_spec.rb +2 -2
- data/mod/05_standard/spec/set/right/account_spec.rb +9 -9
- data/mod/05_standard/spec/set/right/email_spec.rb +8 -8
- data/mod/05_standard/spec/set/right/password_spec.rb +9 -9
- data/mod/05_standard/spec/set/right/stats_spec.rb +1 -1
- data/mod/05_standard/spec/set/right/when_created_spec.rb +1 -1
- data/mod/05_standard/spec/set/right/when_last_edited_spec.rb +1 -1
- data/mod/05_standard/spec/set/rstar/rules_spec.rb +2 -2
- data/mod/05_standard/spec/set/self/account_links_spec.rb +2 -2
- data/mod/05_standard/spec/set/self/all_spec.rb +8 -11
- data/mod/05_standard/spec/set/self/head_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/navbox_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/now_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/stats_spec.rb +1 -1
- data/mod/05_standard/spec/set/self/version_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/email_template_spec.rb +25 -25
- data/mod/05_standard/spec/set/type/file_spec.rb +4 -4
- data/mod/05_standard/spec/set/type/html_spec.rb +3 -3
- data/mod/05_standard/spec/set/type/image_spec.rb +6 -6
- data/mod/05_standard/spec/set/type/layout_type_spec.rb +1 -1
- data/mod/05_standard/spec/set/type/search_type_spec.rb +10 -10
- data/mod/05_standard/spec/set/type/signup_spec.rb +11 -11
- data/mod/05_standard/spec/set/type/toggle_spec.rb +2 -2
- data/mod/05_standard/spec/set/type/uri_spec.rb +9 -9
- data/mod/06_bootstrap/set/all/bootstrap/helper.rb +10 -10
- data/mod/06_bootstrap/set/all/bootstrap/wrapper.rb +4 -4
- data/mod/06_bootstrap/set/all/rich_bootstrap.rb +1 -1
- data/spec/lib/card/action_spec.rb +2 -2
- data/spec/lib/card/cache_spec.rb +7 -7
- data/spec/lib/card/content_spec.rb +31 -37
- data/spec/lib/card/diff_spec.rb +56 -56
- data/spec/lib/card/format_spec.rb +11 -11
- data/spec/lib/card/query_spec.rb +382 -265
- data/spec/lib/card/reference_spec.rb +133 -140
- data/spec/lib/card/set_pattern_spec.rb +10 -9
- data/spec/lib/card/set_spec.rb +11 -11
- data/spec/lib/card/success_spec.rb +16 -8
- data/spec/mailers/mailer_spec.rb +5 -5
- data/spec/models/card/cardtype_spec.rb +20 -20
- data/spec/models/card/create_spec.rb +6 -6
- data/spec/models/card/trash_spec.rb +20 -20
- data/spec/models/card/type_transition_spec.rb +3 -3
- data/spec/models/card/validation_spec.rb +5 -5
- data/spec/models/card_spec.rb +24 -24
- data/spec/spec_helper.rb +5 -5
- data/tmpsets/set/mod001-01_core/all/active_card.rb +2 -2
- data/tmpsets/set/mod001-01_core/all/collection.rb +23 -26
- data/tmpsets/set/mod001-01_core/all/content.rb +2 -2
- data/tmpsets/set/mod001-01_core/all/fetch.rb +6 -6
- data/tmpsets/set/mod001-01_core/all/initialize.rb +8 -4
- data/tmpsets/set/mod001-01_core/all/name.rb +14 -14
- data/tmpsets/set/mod001-01_core/all/pattern.rb +1 -1
- data/tmpsets/set/mod001-01_core/all/permissions.rb +12 -12
- data/tmpsets/set/mod001-01_core/all/phases.rb +31 -13
- data/tmpsets/set/mod001-01_core/all/references.rb +14 -14
- data/tmpsets/set/mod001-01_core/all/rules.rb +8 -10
- data/tmpsets/set/mod001-01_core/all/templating.rb +10 -9
- data/tmpsets/set/mod001-01_core/all/tracked_attributes.rb +7 -7
- data/tmpsets/set/mod001-01_core/all/trash.rb +9 -8
- data/tmpsets/set/mod001-01_core/all/type.rb +7 -7
- data/tmpsets/set/mod001-01_core/all/utils.rb +16 -4
- data/tmpsets/set/mod001-01_core/all/view_cache.rb +1 -1
- data/tmpsets/set/mod002-01_history/all/actions.rb +2 -2
- data/tmpsets/set/mod002-01_history/all/content_history.rb +11 -7
- data/tmpsets/set/mod002-01_history/all/history.rb +46 -46
- data/tmpsets/set/mod003-02_basic_types/all/all_css.rb +10 -10
- data/tmpsets/set/mod003-02_basic_types/all/all_csv.rb +7 -7
- data/tmpsets/set/mod003-02_basic_types/all/base.rb +25 -25
- data/tmpsets/set/mod003-02_basic_types/all/json.rb +16 -16
- data/tmpsets/set/mod003-02_basic_types/all/rss.rb +7 -7
- data/tmpsets/set/mod003-02_basic_types/type/html.rb +2 -2
- data/tmpsets/set/mod003-02_basic_types/type/plain_text.rb +1 -1
- data/tmpsets/set/mod003-02_basic_types/type/pointer.rb +38 -31
- data/tmpsets/set/mod004-03_machines/right/machine_output.rb +4 -0
- data/tmpsets/set/mod004-03_machines/type/coffee_script.rb +3 -3
- data/tmpsets/set/mod004-03_machines/type/css.rb +8 -8
- data/tmpsets/set/mod004-03_machines/type/java_script.rb +4 -4
- data/tmpsets/set/mod004-03_machines/type/scss.rb +2 -2
- data/tmpsets/set/mod004-03_machines/type/skin.rb +1 -1
- data/tmpsets/set/mod005-04_settings/abstract/permission.rb +9 -9
- data/tmpsets/set/mod005-04_settings/right/script.rb +1 -1
- data/tmpsets/set/mod005-04_settings/right/structure.rb +0 -5
- data/tmpsets/set/mod005-04_settings/right/style.rb +2 -2
- data/tmpsets/set/mod005-04_settings/self/accountable.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/add_help.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/autoname.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/captcha.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/create.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/default.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/delete.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/help.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/input.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/layout.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_create.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_delete.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/on_update.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/options.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/options_label.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/read.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/script.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/structure.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/style.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/table_of_contents.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/thanks.rb +1 -1
- data/tmpsets/set/mod005-04_settings/self/update.rb +1 -1
- data/tmpsets/set/mod005-04_settings/type/setting.rb +14 -14
- data/tmpsets/set/mod006-05_email/all/follow.rb +24 -16
- data/tmpsets/set/mod006-05_email/all/notify.rb +25 -23
- data/tmpsets/set/mod006-05_email/all/observer.rb +8 -8
- data/tmpsets/set/mod006-05_email/right/bcc.rb +8 -8
- data/tmpsets/set/mod006-05_email/right/follow.rb +44 -17
- data/tmpsets/set/mod006-05_email/right/follow_fields.rb +1 -1
- data/tmpsets/set/mod006-05_email/right/following.rb +49 -40
- data/tmpsets/set/mod006-05_email/self/always.rb +2 -2
- data/tmpsets/set/mod006-05_email/self/created.rb +1 -1
- data/tmpsets/set/mod006-05_email/self/edited.rb +4 -4
- data/tmpsets/set/mod006-05_email/self/follow.rb +1 -1
- data/tmpsets/set/mod006-05_email/self/follow_defaults.rb +9 -9
- data/tmpsets/set/mod006-05_email/self/never.rb +1 -1
- data/tmpsets/set/mod006-05_email/type/email_template.rb +9 -9
- data/tmpsets/set/mod006-05_email/type_plus_right/user/follow.rb +17 -17
- data/tmpsets/set/mod007-05_standard/abstract/attachment.rb +98 -46
- data/tmpsets/set/mod007-05_standard/all/account.rb +5 -5
- data/tmpsets/set/mod007-05_standard/all/comment.rb +7 -7
- data/tmpsets/set/mod007-05_standard/all/error.rb +26 -26
- data/tmpsets/set/mod007-05_standard/all/event_viz.rb +1 -1
- data/tmpsets/set/mod007-05_standard/all/links.rb +10 -9
- data/tmpsets/set/mod007-05_standard/all/rich_html/content.rb +34 -34
- data/tmpsets/set/mod007-05_standard/all/rich_html/editing.rb +35 -35
- data/tmpsets/set/mod007-05_standard/all/rich_html/form.rb +20 -20
- data/tmpsets/set/mod007-05_standard/all/rich_html/header.rb +8 -8
- data/tmpsets/set/mod007-05_standard/all/rich_html/menu.rb +33 -33
- data/tmpsets/set/mod007-05_standard/all/rich_html/modal.rb +16 -16
- data/tmpsets/set/mod007-05_standard/all/rich_html/toolbar.rb +63 -63
- data/tmpsets/set/mod007-05_standard/all/rich_html/wrapper.rb +8 -8
- data/tmpsets/set/mod007-05_standard/right/account.rb +27 -27
- data/tmpsets/set/mod007-05_standard/right/email.rb +5 -5
- data/tmpsets/set/mod007-05_standard/right/password.rb +5 -5
- data/tmpsets/set/mod007-05_standard/rstar/rules.rb +52 -52
- data/tmpsets/set/mod007-05_standard/self/account_links.rb +27 -27
- data/tmpsets/set/mod007-05_standard/self/all.rb +1 -1
- data/tmpsets/set/mod007-05_standard/self/head.rb +5 -5
- data/tmpsets/set/mod007-05_standard/self/navbox.rb +11 -11
- data/tmpsets/set/mod007-05_standard/self/recent.rb +2 -2
- data/tmpsets/set/mod007-05_standard/self/search.rb +13 -13
- data/tmpsets/set/mod007-05_standard/self/signin.rb +19 -19
- data/tmpsets/set/mod007-05_standard/self/stats.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/basic.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/cardtype.rb +5 -5
- data/tmpsets/set/mod007-05_standard/type/date.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/file.rb +23 -8
- data/tmpsets/set/mod007-05_standard/type/image.rb +10 -8
- data/tmpsets/set/mod007-05_standard/type/number.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/phrase.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/search_type.rb +21 -19
- data/tmpsets/set/mod007-05_standard/type/session.rb +2 -2
- data/tmpsets/set/mod007-05_standard/type/set.rb +37 -37
- data/tmpsets/set/mod007-05_standard/type/signup.rb +25 -25
- data/tmpsets/set/mod007-05_standard/type/uri.rb +1 -1
- data/tmpsets/set/mod007-05_standard/type/user.rb +21 -21
- data/tmpsets/set/mod008-06_bootstrap/all/bootstrap/helper.rb +10 -10
- data/tmpsets/set/mod008-06_bootstrap/all/bootstrap/wrapper.rb +4 -4
- data/tmpsets/set/mod008-06_bootstrap/all/rich_bootstrap.rb +1 -1
- data/tmpsets/set_pattern/101-all_plus.rb +2 -2
- data/tmpsets/set_pattern/102-type.rb +1 -1
- data/tmpsets/set_pattern/103-star.rb +1 -1
- data/tmpsets/set_pattern/104-rstar.rb +2 -2
- data/tmpsets/set_pattern/105-right.rb +4 -4
- data/tmpsets/set_pattern/106-type_plus_right.rb +4 -4
- data/tmpsets/set_pattern/107-self.rb +1 -1
- metadata +7 -5
- data/lib/card/query/card_clause.rb +0 -528
- data/lib/card/query/ref_clause.rb +0 -47
- data/lib/card/query/value_clause.rb +0 -65
@@ -0,0 +1,310 @@
|
|
1
|
+
|
2
|
+
class Card
|
3
|
+
class Query
|
4
|
+
module Attributes
|
5
|
+
SORT_JOIN_TO_ITEM_MAP = { left: 'left_id', right: 'right_id' }
|
6
|
+
|
7
|
+
# ~~~~~~ RELATIONAL
|
8
|
+
|
9
|
+
def type val
|
10
|
+
restrict :type_id, val
|
11
|
+
end
|
12
|
+
|
13
|
+
def part val
|
14
|
+
right_val = val.is_a?(Integer) ? val : val.clone
|
15
|
+
any(left: val, right: right_val)
|
16
|
+
end
|
17
|
+
|
18
|
+
def left val
|
19
|
+
restrict :left_id, val
|
20
|
+
end
|
21
|
+
|
22
|
+
def right val
|
23
|
+
restrict :right_id, val
|
24
|
+
end
|
25
|
+
|
26
|
+
def editor_of val
|
27
|
+
act_join = Join.new(
|
28
|
+
from: self,
|
29
|
+
to: ['card_acts', "a#{table_id force=true}", 'actor_id']
|
30
|
+
)
|
31
|
+
joins << act_join
|
32
|
+
action_join = Join.new(
|
33
|
+
from: act_join,
|
34
|
+
to: ['card_actions', "an#{table_id force=true}", 'card_act_id'],
|
35
|
+
superjoin: act_join
|
36
|
+
)
|
37
|
+
join_cards val, from: action_join, from_field: 'card_id'
|
38
|
+
end
|
39
|
+
|
40
|
+
def edited_by val
|
41
|
+
action_join = Join.new(
|
42
|
+
from: self,
|
43
|
+
to: ['card_actions', "an#{table_id force=true}", 'card_id']
|
44
|
+
)
|
45
|
+
joins << action_join
|
46
|
+
act_join = Join.new(
|
47
|
+
from: action_join,
|
48
|
+
from_field: 'card_act_id',
|
49
|
+
to: ['card_acts', "a#{table_id force=true}"]
|
50
|
+
)
|
51
|
+
join_cards val, from: act_join, from_field: 'actor_id'
|
52
|
+
end
|
53
|
+
|
54
|
+
def last_editor_of val
|
55
|
+
join_cards val, to_field: 'updater_id'
|
56
|
+
end
|
57
|
+
|
58
|
+
def last_edited_by val
|
59
|
+
restrict :updater_id, val
|
60
|
+
end
|
61
|
+
|
62
|
+
def creator_of val
|
63
|
+
join_cards val, to_field: 'creator_id'
|
64
|
+
end
|
65
|
+
|
66
|
+
def created_by val
|
67
|
+
restrict :creator_id, val
|
68
|
+
end
|
69
|
+
|
70
|
+
def member_of val
|
71
|
+
interpret right_plus: [RolesID, refer_to: val]
|
72
|
+
end
|
73
|
+
|
74
|
+
def member val
|
75
|
+
interpret referred_to_by: { left: val, right: RolesID }
|
76
|
+
end
|
77
|
+
|
78
|
+
# ~~~~~~ PLUS RELATIONAL
|
79
|
+
|
80
|
+
def left_plus val
|
81
|
+
junction val, :left, :right_id
|
82
|
+
end
|
83
|
+
|
84
|
+
def right_plus val
|
85
|
+
junction val, :right, :left_id
|
86
|
+
end
|
87
|
+
|
88
|
+
def plus val
|
89
|
+
any(left_plus: val, right_plus: val.deep_clone)
|
90
|
+
end
|
91
|
+
|
92
|
+
def junction val, side, to_field
|
93
|
+
part_clause, junction_clause = val.is_a?(Array) ? val : [val, {}]
|
94
|
+
junction_val = clause_to_hash(junction_clause).merge side => part_clause
|
95
|
+
join_cards junction_val, to_field: to_field
|
96
|
+
end
|
97
|
+
|
98
|
+
# ~~~~~~ SPECIAL
|
99
|
+
|
100
|
+
def found_by val
|
101
|
+
found_by_cards(val).compact.each do |c|
|
102
|
+
if c && [SearchTypeID, SetID].include?(c.type_id)
|
103
|
+
#FIXME - move this check to set mods!
|
104
|
+
|
105
|
+
subquery(
|
106
|
+
c.get_query.merge unjoined: true, context: c.name
|
107
|
+
)
|
108
|
+
else
|
109
|
+
raise BadQuery,
|
110
|
+
'"found_by" value must be valid Search, ' +
|
111
|
+
"but #{c.name} is a #{c.type_name}"
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
|
117
|
+
def found_by_cards val
|
118
|
+
if Hash===val
|
119
|
+
Query.run val
|
120
|
+
else
|
121
|
+
Array.wrap(val).map do |v|
|
122
|
+
Card.fetch val.to_name.to_absolute(context), :new=>{}
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
end
|
127
|
+
|
128
|
+
def match(val)
|
129
|
+
cxn, val = match_prep val
|
130
|
+
val.gsub! /[^#{Card::Name::OK4KEY_RE}]+/, ' '
|
131
|
+
return nil if val.strip.empty?
|
132
|
+
|
133
|
+
val_list = val.split(/\s+/).map do |v|
|
134
|
+
name_or_content = [
|
135
|
+
"replace(#{self.table_alias}.name,'+',' ')",
|
136
|
+
"#{self.table_alias}.db_content"
|
137
|
+
].map do |field|
|
138
|
+
%{#{field} #{ cxn.match quote("[[:<:]]#{v}[[:>:]]") }}
|
139
|
+
end
|
140
|
+
"(#{name_or_content.join ' OR '})"
|
141
|
+
end
|
142
|
+
add_condition "(#{val_list.join ' AND '})"
|
143
|
+
end
|
144
|
+
|
145
|
+
|
146
|
+
def complete(val)
|
147
|
+
no_plus_card = (val =~ /\+/ ? '' : "and right_id is null")
|
148
|
+
# FIXME -- this should really be more nuanced --
|
149
|
+
# it breaks down after one plus
|
150
|
+
|
151
|
+
add_condition(
|
152
|
+
" lower(name) LIKE lower(#{quote(val.to_s+'%')}) #{no_plus_card}"
|
153
|
+
)
|
154
|
+
end
|
155
|
+
|
156
|
+
def extension_type val
|
157
|
+
# DEPRECATED LONG AGO!!!
|
158
|
+
Rails.logger.info "using DEPRECATED extension_type in WQL"
|
159
|
+
interpret :right_plus => AccountID
|
160
|
+
end
|
161
|
+
|
162
|
+
|
163
|
+
# ATTRIBUTE HELPERS
|
164
|
+
|
165
|
+
|
166
|
+
def join_references key, val
|
167
|
+
r = Reference.new( key, val, self )
|
168
|
+
refjoin = Join.new(:from=>self, :to=>r, :to_field=>r.infield)
|
169
|
+
joins << refjoin
|
170
|
+
if r.cardquery
|
171
|
+
join_cards r.cardquery, from: refjoin, from_field: r.outfield
|
172
|
+
end
|
173
|
+
r.conditions.each do |condition|
|
174
|
+
refjoin.conditions << "#{r.table_alias}.#{condition}"
|
175
|
+
end
|
176
|
+
end
|
177
|
+
|
178
|
+
def conjunction val
|
179
|
+
return unless [String, Symbol].member? val.class
|
180
|
+
CONJUNCTIONS[val.to_sym]
|
181
|
+
end
|
182
|
+
|
183
|
+
def sort val
|
184
|
+
return nil if @superquery
|
185
|
+
sort_field = val[:return] || 'db_content'
|
186
|
+
item = val.delete(:item) || 'left'
|
187
|
+
|
188
|
+
if sort_field == 'count'
|
189
|
+
sort_by_count val, item
|
190
|
+
else
|
191
|
+
if join_field = SORT_JOIN_TO_ITEM_MAP[item.to_sym]
|
192
|
+
sq = join_cards val,
|
193
|
+
to_field: join_field,
|
194
|
+
side: 'LEFT',
|
195
|
+
conditions_on_join: true
|
196
|
+
@mods[:sort] ||= "#{sq.table_alias}.#{sort_field}"
|
197
|
+
else
|
198
|
+
raise BadQuery, "sort item: #{item} not yet implemented"
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
end
|
203
|
+
|
204
|
+
# EXPERIMENTAL!
|
205
|
+
def sort_by_count val, item
|
206
|
+
if item == 'referred_to'
|
207
|
+
@mods[:sort] = "coalesce(count,0)" # needed for postgres
|
208
|
+
cs = Query.new(
|
209
|
+
:return=>'coalesce(count(*), 0) as count',
|
210
|
+
:group=>'sort_join_field',
|
211
|
+
:superquery=>self
|
212
|
+
)
|
213
|
+
subselect = Query.new(val.merge return: 'id', superquery: self)
|
214
|
+
cs.add_condition "referer_id in (#{subselect.sql})"
|
215
|
+
# FIXME - SQL generated before SQL phase
|
216
|
+
cs.joins << Join.new(
|
217
|
+
from: cs,
|
218
|
+
to:['card_references', 'wr', 'referee_id']
|
219
|
+
)
|
220
|
+
cs.mods[:sort_join_field] = "#{cs.table_alias}.id as sort_join_field"
|
221
|
+
#HACK!
|
222
|
+
|
223
|
+
joins << Join.new(
|
224
|
+
from: self,
|
225
|
+
to: [cs, 'srtbl', 'sort_join_field']
|
226
|
+
)
|
227
|
+
else
|
228
|
+
raise BadQuery, "count with item: #{item} not yet implemented"
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
232
|
+
def table_alias
|
233
|
+
@table_alias ||= begin
|
234
|
+
if @unjoined
|
235
|
+
@superquery.table_alias
|
236
|
+
else
|
237
|
+
"c#{table_id}"
|
238
|
+
end
|
239
|
+
end
|
240
|
+
end
|
241
|
+
|
242
|
+
def table_id force=false
|
243
|
+
if force
|
244
|
+
tick_table_seq!
|
245
|
+
else
|
246
|
+
@table_id ||= tick_table_seq!
|
247
|
+
end
|
248
|
+
end
|
249
|
+
|
250
|
+
def tick_table_seq!
|
251
|
+
root.table_seq = root.table_seq.to_i + 1
|
252
|
+
end
|
253
|
+
|
254
|
+
def join_cards val, opts={}
|
255
|
+
conditions_on_join = opts.delete :conditions_on_join
|
256
|
+
s = subquery
|
257
|
+
card_join = Join.new({ from: self, to: s }.merge opts)
|
258
|
+
joins << card_join unless opts[:from].is_a? Join
|
259
|
+
s.conditions_on_join = card_join if conditions_on_join
|
260
|
+
s.interpret val
|
261
|
+
s
|
262
|
+
end
|
263
|
+
|
264
|
+
|
265
|
+
#~~~~~~~ CONJUNCTION
|
266
|
+
|
267
|
+
def all val
|
268
|
+
conjoin val, :and
|
269
|
+
end
|
270
|
+
alias :and :all
|
271
|
+
|
272
|
+
def any val
|
273
|
+
conjoin val, :or
|
274
|
+
end
|
275
|
+
alias_method :or, :any
|
276
|
+
alias_method :in, :any
|
277
|
+
|
278
|
+
def conjoin val, conj
|
279
|
+
sq = subquery( unjoined: true, conj: conj )
|
280
|
+
unless Array===val
|
281
|
+
val = clause_to_hash(val).map { |key, value| { key => value } }
|
282
|
+
end
|
283
|
+
val.each do |val_item|
|
284
|
+
sq.interpret val_item
|
285
|
+
end
|
286
|
+
end
|
287
|
+
|
288
|
+
def not val
|
289
|
+
notjoin = join_cards val, conditions_on_join: true, side: 'LEFT'
|
290
|
+
add_condition "#{notjoin.table_alias}.id is null"
|
291
|
+
end
|
292
|
+
|
293
|
+
def restrict id_field, val
|
294
|
+
if id = id_from_val(val)
|
295
|
+
interpret id_field => id
|
296
|
+
else
|
297
|
+
join_cards val, from_field: id_field
|
298
|
+
end
|
299
|
+
end
|
300
|
+
|
301
|
+
def id_from_val val
|
302
|
+
case val
|
303
|
+
when Integer ; val
|
304
|
+
when String ; Card.fetch_id(val)
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
308
|
+
end
|
309
|
+
end
|
310
|
+
end
|
data/lib/card/query/clause.rb
CHANGED
@@ -1,21 +1,18 @@
|
|
1
1
|
|
2
|
-
|
3
|
-
|
2
|
+
module Card::Query::Clause
|
3
|
+
# attr_accessor :clause
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
5
|
+
def safe_sql(txt)
|
6
|
+
txt = txt.to_s
|
7
|
+
txt.match( /[^\w\*\(\)\s\.\,]/ ) ? raise( "WQL contains disallowed characters: #{txt}" ) : txt
|
8
|
+
end
|
9
9
|
|
10
|
-
|
10
|
+
def quote(v) ActiveRecord::Base.connection.quote(v) end
|
11
|
+
|
12
|
+
def match_prep(v)
|
13
|
+
cxn ||= ActiveRecord::Base.connection
|
14
|
+
[cxn, v]
|
15
|
+
end
|
11
16
|
|
12
|
-
def match_prep(v)
|
13
|
-
cxn ||= ActiveRecord::Base.connection
|
14
|
-
[cxn, v]
|
15
|
-
end
|
16
17
|
|
17
|
-
def cast_type(type)
|
18
|
-
cxn ||= ActiveRecord::Base.connection
|
19
|
-
(val = cxn.cast_types[type.to_sym]) ? val[:name] : safe_sql(type)
|
20
|
-
end
|
21
18
|
end
|
@@ -0,0 +1,73 @@
|
|
1
|
+
class Card
|
2
|
+
class Query
|
3
|
+
class Join
|
4
|
+
attr_accessor :conditions, :side,
|
5
|
+
:from, :to,
|
6
|
+
:from_table, :to_table,
|
7
|
+
:from_alias, :to_alias,
|
8
|
+
:from_field, :to_field,
|
9
|
+
:superjoin, :subjoins
|
10
|
+
|
11
|
+
def initialize opts={}
|
12
|
+
from_and_to opts
|
13
|
+
opts.each do |key, value|
|
14
|
+
send "#{key}=", value if value.present?
|
15
|
+
end
|
16
|
+
@from_field ||= :id
|
17
|
+
@to_field ||= :id
|
18
|
+
@conditions = []
|
19
|
+
@subjoins = []
|
20
|
+
if @from.is_a? Join
|
21
|
+
@superjoin = @from
|
22
|
+
@superjoin.subjoins << self
|
23
|
+
end
|
24
|
+
self
|
25
|
+
end
|
26
|
+
|
27
|
+
def from_and_to opts
|
28
|
+
[:from, :to].each do |side|
|
29
|
+
object = opts[side]
|
30
|
+
case object
|
31
|
+
when nil; next
|
32
|
+
when Array
|
33
|
+
{ table: object.shift, alias: object.shift, field: object.shift }
|
34
|
+
when Card::Query
|
35
|
+
{ table: 'cards', alias: object.table_alias }
|
36
|
+
when Card::Query::Reference
|
37
|
+
{ table: 'card_references', alias: object.table_alias }
|
38
|
+
when Card::Query::Join
|
39
|
+
fail "to: cannot be Join" if side == :to
|
40
|
+
{ table: object.to_table, alias: object.to_alias }
|
41
|
+
else
|
42
|
+
raise "invalid #{side} option: #{object}"
|
43
|
+
end.map do |key, value|
|
44
|
+
opts[:"#{side}_#{key}"] ||= value
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
def side
|
50
|
+
if !@side.nil?
|
51
|
+
@side
|
52
|
+
else
|
53
|
+
in_or = from && from.is_a?(Card::Query) && from.mods[:conj] == 'or'
|
54
|
+
@side = in_or ? 'LEFT' : nil
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def left?
|
59
|
+
side == 'LEFT'
|
60
|
+
end
|
61
|
+
|
62
|
+
def in_left?
|
63
|
+
if !@in_left.nil?
|
64
|
+
@in_left
|
65
|
+
else
|
66
|
+
@in_left = left? || (!@superjoin.nil? && @superjoin.in_left?)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
@@ -0,0 +1,51 @@
|
|
1
|
+
class Card::Query
|
2
|
+
class Reference
|
3
|
+
|
4
|
+
DEFINITIONS = {
|
5
|
+
# syntax:
|
6
|
+
# wql query key => [ direction, {reference_type} ]
|
7
|
+
# direction = :out | :in
|
8
|
+
# reference_type = 'L' | 'I' | 'P'
|
9
|
+
|
10
|
+
refer_to: [ :out, 'L','I' ], referred_to_by: [ :in, 'L','I' ],
|
11
|
+
link_to: [ :out, 'L' ], linked_to_by: [ :in, 'L' ],
|
12
|
+
include: [ :out, 'I' ], included_by: [ :in, 'I' ]
|
13
|
+
}
|
14
|
+
|
15
|
+
FIELDMAP = {
|
16
|
+
out: [ :referer_id, :referee_id ],
|
17
|
+
in: [ :referee_id, :referer_id ]
|
18
|
+
}
|
19
|
+
|
20
|
+
attr_accessor :conditions, :cardquery, :infield, :outfield
|
21
|
+
|
22
|
+
def table_alias
|
23
|
+
@table_alias ||= "cr#{@parent.table_id force=true}"
|
24
|
+
end
|
25
|
+
|
26
|
+
|
27
|
+
def initialize key, val, parent
|
28
|
+
key, val, @parent = key, val, parent
|
29
|
+
@conditions = []
|
30
|
+
|
31
|
+
direction, *reftype = DEFINITIONS[ key.to_sym ]
|
32
|
+
@infield, @outfield = FIELDMAP[ direction ]
|
33
|
+
|
34
|
+
if reftype.present?
|
35
|
+
operator = (reftype.size==1 ? '=' : 'IN')
|
36
|
+
quoted_letters = reftype.map { |letter| "'#{letter}'" } * ', '
|
37
|
+
@conditions << "ref_type #{operator} (#{quoted_letters})"
|
38
|
+
end
|
39
|
+
|
40
|
+
if val == '_none'
|
41
|
+
@conditions << "present = 0"
|
42
|
+
else
|
43
|
+
@cardquery = val
|
44
|
+
end
|
45
|
+
|
46
|
+
self
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
|