rotulus 0.2.2 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c74625ece0961a25549797386fa66abb146564211b4dc1640abd92ac4c0e2a0
4
- data.tar.gz: 567562c553bbe914cdf5740e4262bd76b59ef04493658a68c69bd420e3109283
3
+ metadata.gz: dabab916c4cd609c84cf4dea85172a337df2501f846d3747e072ddc4c2ea5995
4
+ data.tar.gz: acd18440bd31048eec4cc7aa7afefb4609265a6bbe6002d6e3bea65ebc331eec
5
5
  SHA512:
6
- metadata.gz: 9e1380f553f3a0756b36b21f2a6193ee7031fe29bc8b3478ec349f6c35d2b9292ed5afd295b6b5250b2dc4498e1d86b66d13d639ea5e3d36db78fc8868fb4e9f
7
- data.tar.gz: 625359b428c792c30a2a2ee2b6b702a2c7270e495111c284c82a1d1433eddf5d0ac485d6d5ae961128006f161c4cb01b8fa76f7ab3bd14d63cb761306a9392f6
6
+ metadata.gz: c951e3a06482187d8d340d1f66f67b71b8aadf955a48fa4f190fb1edeb921615c7ec47977faf57019c645ca27c3eb66dc31e9b5b4e57aac61323e0a356fdc875
7
+ data.tar.gz: fc5ba3d91f64aff2aa0a9594beffe646c99955ef369f590de1f538cc31e31ef6903a3321f4e7adaa1ad62f3e47db3c8a6e7450f97a7a5209d2784d5286ad5f3b
data/CHANGELOG.md CHANGED
@@ -5,4 +5,10 @@
5
5
  - Drop unnecessary ORDER BY columns following a non-nullable and distinct column.
6
6
 
7
7
  ## 0.2.2
8
- - Raise error when there is no non-nullable and distinct column in the configured order definition.
8
+ - Raise error when there is no non-nullable and distinct column in the configured order definition.
9
+
10
+ ## 0.2.3
11
+ - Replace any existing order defined on the given ar_relation
12
+
13
+ ## 0.2.4
14
+ - Allow changing limit param
data/README.md CHANGED
@@ -19,7 +19,7 @@ Some advantages of this approach are:
19
19
  * `NULLS FIRST`/`NULLS LAST` handling
20
20
  * Allows custom cursor format
21
21
  * Built-in cursor token expiration
22
- * Built-in cursor integrity check
22
+ * Built-in cursor integrity checking
23
23
  * Supports **MySQL**, **PostgreSQL**, and **SQLite**
24
24
  * Supports **Rails 4.2** and above
25
25
 
@@ -45,8 +45,7 @@ gem install rotulus
45
45
  ```
46
46
 
47
47
  ## Configuration
48
- At the very least you only need to set the environment variable `ROTULUS_SECRET` to a random string(e.g. generate via `rails secret`).
49
- For more configuration options:
48
+ Setting the environment variable `ROTULUS_SECRET` to a random string value(e.g. generate via `rails secret`) is the minimum required setup needed. But for more configuration options:
50
49
 
51
50
  #### Create an initializer `config/initializers/rotulus.rb`:
52
51
 
@@ -79,20 +78,19 @@ end
79
78
  ```ruby
80
79
  users = User.where('age > ?', 16)
81
80
 
82
- page = Rotulus::Page.new(users, order: { first_name: :asc, last_name: :desc }, limit: 3)
81
+ page = Rotulus::Page.new(users, order: { id: :asc })
82
+ # OR just
83
+ page = Rotulus::Page.new(users)
83
84
  ```
84
- Example above will automatically add the table's PK(`users.id`) in the generated SQL query as tie-breaker if the PK isn't included in the `:order` column config yet.
85
-
86
85
 
87
- ###### Example with `ORDER BY users.id asc` only:
86
+ ###### Example when sorting with multiple columns and `:limit`:
88
87
 
89
88
  ```ruby
90
- page = Rotulus::Page.new(users, order: { id: :asc } limit: 3)
91
-
92
- # OR
93
89
 
94
- page = Rotulus::Page.new(users, limit: 3)
90
+ page = Rotulus::Page.new(users, order: { first_name: :asc, last_name: :desc }, limit: 3)
95
91
  ```
92
+ With the example above, the gem will automatically add the table's PK(`users.id`) in the generated SQL query as the tie-breaker column to ensure stable sorting and pagination.
93
+
96
94
 
97
95
  #### Access the page records
98
96
 
@@ -295,7 +293,7 @@ page = Rotulus::Page.new(items, order: order_by, limit: 2)
295
293
 
296
294
  | Class | Description |
297
295
  | ----------- | ----------- |
298
- | `Rotulus::InvalidCursor` | Cursor token received is invalid e.g., unrecognized token, token data has been tampered/updated, base ActiveRecord relation filter/sorting/limit is no longer consistent to the token. |
296
+ | `Rotulus::InvalidCursor` | Cursor token received is invalid e.g., unrecognized token, token data has been tampered/updated, base ActiveRecord relation filter/sorting is no longer consistent to the token. |
299
297
  | `Rotulus::Expired` | Cursor token received has expired based on the configured `token_expires_in` |
300
298
  | `Rotulus::InvalidLimit` | Limit set to Rotulus::Page is not valid. e.g., exceeds the configured limit. see `config.page_max_limit` |
301
299
  | `Rotulus::CursorError` | Generic error for cursor related validations |
@@ -380,8 +378,8 @@ To navigate between pages, a cursor is used. The cursor token is a Base64 encode
380
378
  ```
381
379
  1. `f` - contains the record values from the last record of the current page. Only the columns included in the `ORDER BY` are included. Note also that the unique column `users.id` is included as a tie-breaker.
382
380
  2. `d` - the pagination direction. `next` or `prev` set of records from the reference values in "f".
383
- 3. `s` - the cursor state needed for integrity check so we can detect whether the base ActiveRecord relation filter/sorting is no longer consistent(e.g. API request params changed) with the cursor token. Additionally, to restrict clients/third-parties from generating their own (unsafe)tokens or to tamper the data of an existing token. The gem requires a secret key configured for this through the `ROTULUS_SECRET` environment variable or the `config.secret` configuration. see [Configuration](#configuration) section.
384
- 4. `c` - the time when this cursor was generated.
381
+ 3. `s` - the cursor state needed for integrity checking so we can detect whether the base ActiveRecord relation filter(initial `WHERE` conditions) are no longer consistent with the cursor (e.g., API parameters have changed). Additionally, to restrict clients/third-parties from generating their own (unsafe)tokens or from tampering the data of an existing token. The gem requires a secret key configured for this through the `ROTULUS_SECRET` environment variable or the `config.secret` configuration. see [Configuration](#configuration) section.
382
+ 4. `c` - cursor token issuance time.
385
383
 
386
384
  A condition generated from the cursor above would look like:
387
385
 
@@ -10,7 +10,7 @@ module Rotulus
10
10
  # @return [Cursor] Cursor
11
11
  #
12
12
  # @raise [InvalidCursor] if the cursor is no longer consistent to the page's ActiveRecord
13
- # relation filters, sorting, limit, or if the encoded cursor data was tampered.
13
+ # relation filters, sorting, or if the encoded cursor data was tampered.
14
14
  def for_page_and_token!(page, token)
15
15
  data = decode(token)
16
16
  reference_record = Record.new(page, data[:f])
@@ -21,7 +21,7 @@ module Rotulus
21
21
  cursor = new(reference_record, direction, created_at: created_at)
22
22
 
23
23
  if cursor.state != state
24
- raise InvalidCursor.new('Invalid cursor possibly due to filter, order, or limit changed')
24
+ raise InvalidCursor.new('Invalid cursor possibly due to filter or sorting changed')
25
25
  end
26
26
 
27
27
  cursor
@@ -99,7 +99,7 @@ module Rotulus
99
99
  alias to_s to_token
100
100
 
101
101
  # Generate a 'state' string so we can detect whether the cursor data is no longer consistent to
102
- # the AR filter, limit, or order definition. This also provides a mechanism to detect if
102
+ # the AR filter or order definition. This also provides a mechanism to detect if
103
103
  # any token data was tampered.
104
104
  #
105
105
  # @return [String] the hashed state
data/lib/rotulus/page.rb CHANGED
@@ -176,12 +176,12 @@ module Rotulus
176
176
  }.delete_if { |_, token| token.nil? }
177
177
  end
178
178
 
179
- # Return Hashed value of this page's state so we can check whether the ar_relation's filter,
180
- # order definition, and limit are still consistent to the cursor. see Cursor.state_valid?.
179
+ # Return Hashed value of this page's state so we can check whether the ar_relation's filter and
180
+ # order definition are still consistent to the cursor. see Cursor.state_valid?.
181
181
  #
182
182
  # @return [String] the hashed state
183
183
  def state
184
- Digest::MD5.hexdigest("#{ar_relation.to_sql}~#{order.state}~#{limit}")
184
+ Digest::MD5.hexdigest("#{ar_relation.to_sql}~#{order.state}")
185
185
  end
186
186
 
187
187
  # Returns a string showing the page's records in table form with the ordered columns
@@ -209,7 +209,7 @@ module Rotulus
209
209
  return @loaded_records unless @loaded_records.nil?
210
210
 
211
211
  @loaded_records = ar_relation.where(cursor&.sql)
212
- .order(order_by_sql)
212
+ .reorder(order_by_sql)
213
213
  .limit(limit + 1)
214
214
  .select(*select_columns)
215
215
  return @loaded_records.to_a unless paged_back?
@@ -1,3 +1,3 @@
1
1
  module Rotulus
2
- VERSION = '0.2.2'
2
+ VERSION = '0.2.4'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rotulus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Uy Jayson B
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-23 00:00:00.000000000 Z
11
+ date: 2023-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -64,8 +64,8 @@ dependencies:
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
66
  version: '0'
67
- description: Cursor-based pagination for apps built on Rails/ActiveRecord with sort
68
- by multiple columns support for a more stable and predictable pagination.
67
+ description: Cursor-based pagination for Rails/ActiveRecord apps with multiple column
68
+ sort and custom cursor format support for a more stable and predictable pagination.
69
69
  email:
70
70
  - uy.json.dev@gmail.com
71
71
  executables: []
@@ -116,6 +116,6 @@ requirements: []
116
116
  rubygems_version: 3.1.4
117
117
  signing_key:
118
118
  specification_version: 4
119
- summary: Cursor-based pagination for apps built on Rails/ActiveRecord with sort by
120
- multiple columns support.
119
+ summary: Cursor-based Rails/ActiveRecord pagination with multiple column sort and
120
+ custom cursor token format support.
121
121
  test_files: []