trusty-cms 7.0.25 → 7.0.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 185eb1c3a53672bca444539bfcbb360549c22e9158be57c5463b404f0f705f57
4
- data.tar.gz: c45948714f364615ac757a3ae19784bd61e1e059e0617aedc012060b2606c054
3
+ metadata.gz: 94e21fe3c5c8a96301637f07c7a3520590884187a45d9e1f00aa39e81e129f5c
4
+ data.tar.gz: 769b855942bd1bb7ecdf193c062e47f45d77fe0561acc9b0b368f5a934e56408
5
5
  SHA512:
6
- metadata.gz: 2bba25302dd2febb18847d30e00daeeb45421e919cb191e64894ce09d0d328a426ac041e1a13f581ede3ff6aa936f90407190d9c3653858c56139a3342a49019
7
- data.tar.gz: 1d6e40435e549b2046440cff8aa1178057388b10e98a70b16fdfd42d3da4041b15f7ccb7059eafa66f7d47b09ff831040f9a73602718b1ebbdbe62cc04d3a598
6
+ metadata.gz: ec4b76f1b3009d3eb40fa9cd66f033967f9a3ebdeb022ccfbf04d60e88c11dfe7ee2a4dac88a879ecd57170903dd0de2705c8fb5ab50bb2426a34daf23065e37
7
+ data.tar.gz: 403fc527a1bf912a6498efc113082b360556df0fec15148f4cfeb7efdd213b62b04fa935d60f65f57134297f4685a2da0a1895c0957bb0b6a7719f1384635070
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- trusty-cms (7.0.25)
4
+ trusty-cms (7.0.27)
5
5
  RedCloth (= 4.3.3)
6
6
  activestorage-validator
7
7
  acts_as_list (>= 0.9.5, < 1.3.0)
data/README.md CHANGED
@@ -106,6 +106,11 @@ DEFAULT_PAGE_TYPE_ROUTES = %w[
106
106
  ].freeze
107
107
  ```
108
108
 
109
+ ### Save and View Draft Caching
110
+ To ensure that pages and drafts under development are not cached by the browser or content delivery networks (such as CloudFront), the CMS appends a `trusty-no-cache` URL parameter containing the current date and time when a user selects **Save and View Draft** or **Save and View Page**.
111
+
112
+ Because the `trusty-no-cache` parameter is always unique, it effectively bypasses caching mechanisms at both the CDN and browser levels, ensuring the user receives the most up-to-date version of the content with every request. Note that additional CDN configuration may be required to ensure query parameters are respected.
113
+
109
114
  ### Page Status Refresh Setup
110
115
 
111
116
  To ensure **Scheduled Pages** automatically update their status to **Published** after their designated **Publish Date & Time**, follow these steps to set up an automated refresh using **AWS Lambda** and **EventBridge**.
@@ -3,7 +3,6 @@ class Admin::PagesController < Admin::ResourceController
3
3
  before_action :count_deleted_pages, only: [:destroy]
4
4
  before_action :set_page, only: %i[edit restore]
5
5
  rescue_from ActiveRecord::RecordInvalid, with: :validation_error
6
- include Admin::NodeHelper
7
6
  include Admin::PagesHelper
8
7
  include Admin::UrlHelper
9
8
 
@@ -1,4 +1,6 @@
1
1
  module Admin::NodeHelper
2
+ include Admin::UrlHelper
3
+
2
4
  def render_nodes(page, starting_index, parent_index = nil, simple = false)
3
5
  @rendered_html = ''
4
6
  render_node page, starting_index, parent_index, simple
@@ -25,17 +27,6 @@ module Admin::NodeHelper
25
27
  page
26
28
  end
27
29
 
28
- def format_path(path)
29
- return '' if path.nil? || path.empty?
30
-
31
- parts = path.split('/').reject(&:empty?)
32
- return 'Root' if parts.size == 1
33
- return '/' if parts.size == 2
34
-
35
- formatted_path = parts[1..-2].join('/')
36
- formatted_path.empty? ? '/' : "/#{formatted_path}"
37
- end
38
-
39
30
  def homepage
40
31
  @homepage ||= Page.find_by_parent_id(nil)
41
32
  end
@@ -1,6 +1,18 @@
1
1
  module Admin::UrlHelper
2
2
  require 'uri'
3
3
 
4
+ def format_path(path)
5
+ return '' if path.to_s.empty?
6
+
7
+ parts = path.split('/').reject(&:empty?)
8
+ parts_size = parts.size
9
+ return 'Root' if parts_size == 1
10
+ return '/' if parts_size == 2
11
+
12
+ formatted_path = parts[1..-2].join('/')
13
+ formatted_path.empty? ? '/' : "/#{formatted_path}"
14
+ end
15
+
4
16
  def generate_page_url(url, page)
5
17
  base_url = extract_base_url(url)
6
18
  build_url(base_url, page)
data/app/models/page.rb CHANGED
@@ -121,7 +121,7 @@ class Page < ActiveRecord::Base
121
121
  def path
122
122
  return '' if slug.blank?
123
123
 
124
- parent? ? parent.child_path(self) : clean_path(slug)
124
+ parent.present? ? clean_path("#{parent.path}/#{slug}") : clean_path(slug)
125
125
  end
126
126
 
127
127
  alias_method :url, :path
@@ -83,13 +83,15 @@
83
83
  -# Opens a new tab with the page URL when "Save and View Page" is selected
84
84
  :javascript
85
85
  document.addEventListener("DOMContentLoaded", function() {
86
- let params = new URLSearchParams(window.location.search);
87
- let dataDiv = document.getElementById("view-page-url-data");
86
+ const params = new URLSearchParams(window.location.search);
87
+ const dataDiv = document.getElementById("view-page-url-data");
88
+ const baseUrl = dataDiv?.dataset?.url;
88
89
 
89
- if (params.get("view_page") === "true" && dataDiv) {
90
- let newTabUrl = dataDiv.dataset.url;
91
- if (newTabUrl) {
92
- window.open(newTabUrl, '_blank');
93
- }
90
+ if (params.get("view_page") === "true" && baseUrl) {
91
+ const now = new Date().toISOString();
92
+ const separator = baseUrl.includes("?") ? "&" : "?";
93
+ const newTabUrl = `${baseUrl}${separator}trusty-no-cache=${encodeURIComponent(now)}`;
94
+ window.open(newTabUrl, '_blank');
94
95
  }
95
96
  });
97
+
@@ -1,3 +1,3 @@
1
1
  module TrustyCms
2
- VERSION = '7.0.25'.freeze
2
+ VERSION = '7.0.27'.freeze
3
3
  end
@@ -36,10 +36,15 @@ module ShareLayouts
36
36
  end
37
37
 
38
38
  def find_page
39
- page = Page.find_by_path(request.path) rescue nil
39
+ page = Page.find_by_path(request.path, can_view_drafts?) rescue nil
40
40
  page.is_a?(RailsPage) ? page : RailsPage.new(:class_name => "RailsPage")
41
41
  end
42
-
42
+
43
+ private
44
+
45
+ def can_view_drafts?
46
+ user_signed_in? # CMS users can view drafts
47
+ end
43
48
  end
44
49
  end
45
50
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trusty-cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.25
4
+ version: 7.0.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - TrustyCms CMS dev team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-31 00:00:00.000000000 Z
11
+ date: 2025-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activestorage-validator