-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathplugin.rb
118 lines (101 loc) · 4.03 KB
/
plugin.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# frozen_string_literal: true
# name: discourse-landing-pages
# about: Adds landing pages to Discourse
# version: 0.4.0
# authors: Angus McLeod, Pablo Cabido
# url: https://github.com/paviliondev/discourse-landing-pages
register_asset "stylesheets/landing-pages-admin.scss"
register_asset "stylesheets/landing-pages.scss"
register_asset "stylesheets/page/page.scss"
if respond_to?(:register_svg_icon)
register_svg_icon "floppy-disk"
register_svg_icon "code-branch"
register_svg_icon "code-commit"
end
add_admin_route "admin.landing_pages.title", "landing-pages"
extend_content_security_policy(script_src: ["https://ajax.googleapis.com"])
after_initialize do
%w[
../lib/landing_pages/engine.rb
../lib/landing_pages/exceptions.rb
../lib/landing_pages/menu.rb
../lib/landing_pages/asset.rb
../lib/landing_pages/page.rb
../lib/landing_pages/post.rb
../lib/landing_pages/global.rb
../lib/landing_pages/remote.rb
../lib/landing_pages/updater.rb
../lib/landing_pages/import_export/git_importer.rb
../lib/landing_pages/import_export/zip_exporter.rb
../lib/landing_pages/import_export/zip_importer.rb
../lib/landing_pages/importer.rb
../lib/landing_pages/cache.rb
../lib/landing_email_renderer.rb
../lib/landing_page_constraint.rb
../config/routes.rb
../app/controllers/landing_pages/concerns/landing_helper.rb
../app/serializers/landing_pages/basic_page.rb
../app/serializers/landing_pages/page.rb
../app/serializers/landing_pages/menu.rb
../app/serializers/landing_pages/remote.rb
../app/serializers/landing_pages/global.rb
../app/controllers/landing_pages/landing.rb
../app/controllers/landing_pages/admin/admin.rb
../app/controllers/landing_pages/admin/page.rb
../app/controllers/landing_pages/admin/remote.rb
../app/controllers/landing_pages/admin/global.rb
../app/jobs/send_contact_email.rb
../app/mailers/contact_mailer.rb
../extensions/content_security_policy.rb
../extensions/upload_validator.rb
../extensions/upload_creator.rb
../extensions/user_notifications.rb
../extensions/user_email_job.rb
].each { |path| require_relative File.expand_path(path, __FILE__) }
add_to_class(:site, :landing_paths) { ::LandingPages.paths }
add_to_serializer(:site, :landing_paths) { object.landing_paths }
::ContentSecurityPolicy::Extension.singleton_class.prepend ContentSecurityPolicyLandingPagesExtension
::Upload.attr_accessor :for_landing_page
::UploadValidator.prepend UploadValidatorLandingPagesExtension
::UploadCreator.prepend UploadCreatorLandingPagesExtension
::UserNotifications.prepend UserNotificationsLandingPagesExtension
::Jobs::UserEmail.prepend UserEmailJobLandingPagesExtension
TopicQuery.add_custom_filter(:definitions_only) do |topics, query|
if query.options[:category_id] && query.options[:definitions_only]
topics =
topics.where(
"
topics.id in (SELECT topic_id FROM categories WHERE categories.id in (?))
",
Category.subcategory_ids(query.options[:category_id]),
)
end
topics
end
TopicQuery.add_custom_filter(:filter_categories) do |topics, query|
if query.options[:filter_categories].present?
topics = topics.where("topics.category_id not in (?)", query.options[:filter_categories])
end
topics
end
full_path = "#{Rails.root}/plugins/discourse-landing-pages/assets/stylesheets/page/page.scss"
Stylesheet::Importer.plugin_assets["landing_page"] = Set[full_path]
add_to_class(:category, :landing_page_id) do
(LandingPages::Cache.new(LandingPages::CATEGORY_IDS_KEY).read || {}).transform_keys(&:to_i)[
self.id
]
end
add_to_class(:topic, :landing_page_url) do
return nil if !category
if category.landing_page_id && page = LandingPages::Page.find(category.landing_page_id)
page.path + "/#{slug}"
else
nil
end
end
add_to_serializer(
:topic_view,
:landing_page_url,
include_condition: -> { object.topic.landing_page_url.present? },
) { object.topic.landing_page_url }
end