x 0.15.0 → 0.15.2
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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/x/media_uploader.rb +3 -3
- data/lib/x/oauth_authenticator.rb +1 -1
- data/lib/x/redirect_handler.rb +4 -5
- data/lib/x/request_builder.rb +3 -1
- data/lib/x/version.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7cfab6bc6d2c061c2cbe6f9da48e613c369fd15b32e54a342524427c3c82fbb5
|
4
|
+
data.tar.gz: 06bd2eb46de55e43248988e8ccd4bccb2fd1c96e3728184f1ad91447bfe8e06c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '018190e33912b68cd56cf9fba8faffca851ec75b1e8201f6c20371388329c183be7d6a05ee189869d71e66d48b1eefc70ff3860eb8067914b6abe39f285d9b86'
|
7
|
+
data.tar.gz: c80967cefb5eadee6894614ee70de27412cfda613db79d5f30d836f40df6cf02234d97d1db45b11ef38ee71faebc239908acb139e3d32fc927fbbb38de61e625
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## [0.15.2] - 2025-03-28
|
2
|
+
* Use media_id instead of media_key to upload media (f1dd577)
|
3
|
+
|
4
|
+
## [0.15.1] - 2025-03-24
|
5
|
+
* Fix bug in MediaUploader#await_processing (136dff8)
|
6
|
+
* Refactor RedirectHandler#build_request (fd379c3)
|
7
|
+
* Escape space in query string as %20, not + (2d2df75)
|
8
|
+
* Don't escape commas in query parameters (e7d9056)
|
9
|
+
|
1
10
|
## [0.15.0] - 2025-02-06
|
2
11
|
* Change media upload to use the API v2 endpoints (eca2b88)
|
3
12
|
|
data/lib/x/media_uploader.rb
CHANGED
@@ -30,12 +30,12 @@ module X
|
|
30
30
|
media = init(client:, file_path:, media_type:, media_category:)
|
31
31
|
chunk_size = chunk_size_mb * BYTES_PER_MB
|
32
32
|
append(client:, file_paths: split(file_path, chunk_size), media:, media_type:, boundary:)
|
33
|
-
client.post("media/upload?command=FINALIZE&
|
33
|
+
client.post("media/upload?command=FINALIZE&media_id=#{media["id"]}")&.fetch("data")
|
34
34
|
end
|
35
35
|
|
36
36
|
def await_processing(client:, media:)
|
37
37
|
loop do
|
38
|
-
status = client.get("media/upload?command=STATUS&
|
38
|
+
status = client.get("media/upload?command=STATUS&media_id=#{media["id"]}")&.fetch("data")
|
39
39
|
return status if !status["processing_info"] || PROCESSING_INFO_STATES.include?(status["processing_info"]["state"])
|
40
40
|
|
41
41
|
sleep status["processing_info"]["check_after_secs"].to_i
|
@@ -85,7 +85,7 @@ module X
|
|
85
85
|
threads = file_paths.map.with_index do |file_path, index|
|
86
86
|
Thread.new do
|
87
87
|
upload_body = construct_upload_body(file_path:, media_type:, boundary:)
|
88
|
-
query = "command=APPEND&
|
88
|
+
query = "command=APPEND&media_id=#{media["id"]}&segment_index=#{index}"
|
89
89
|
headers = {"Content-Type" => "multipart/form-data, boundary=#{boundary}"}
|
90
90
|
upload_chunk(client:, query:, upload_body:, file_path:, headers:)
|
91
91
|
end
|
@@ -71,7 +71,7 @@ module X
|
|
71
71
|
end
|
72
72
|
|
73
73
|
def signature_base_string(method, url, params)
|
74
|
-
"#{method}&#{CGI.escapeURIComponent(url)}&#{CGI.escapeURIComponent(URI.encode_www_form(params.sort))}"
|
74
|
+
"#{method}&#{CGI.escapeURIComponent(url)}&#{CGI.escapeURIComponent(URI.encode_www_form(params.sort).gsub("+", "%20"))}"
|
75
75
|
end
|
76
76
|
|
77
77
|
def signing_key
|
data/lib/x/redirect_handler.rb
CHANGED
@@ -43,11 +43,10 @@ module X
|
|
43
43
|
end
|
44
44
|
|
45
45
|
def build_request(request, uri, response_code, authenticator)
|
46
|
-
http_method
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
[:get, nil]
|
46
|
+
http_method = :get
|
47
|
+
if [307, 308].include?(response_code)
|
48
|
+
http_method = request.method.downcase.to_sym
|
49
|
+
body = request.body
|
51
50
|
end
|
52
51
|
|
53
52
|
request_builder.build(http_method:, uri:, body:, authenticator:)
|
data/lib/x/request_builder.rb
CHANGED
@@ -50,7 +50,9 @@ module X
|
|
50
50
|
end
|
51
51
|
|
52
52
|
def escape_query_params(uri)
|
53
|
-
URI(uri).tap
|
53
|
+
URI(uri).tap do |u|
|
54
|
+
u.query = URI.encode_www_form(URI.decode_www_form(u.query)).gsub("%2C", ",") if u.query
|
55
|
+
end
|
54
56
|
end
|
55
57
|
end
|
56
58
|
end
|
data/lib/x/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: x
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.15.
|
4
|
+
version: 0.15.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Erik Berlin
|
8
|
+
autorequire:
|
8
9
|
bindir: exe
|
9
10
|
cert_chain: []
|
10
|
-
date: 2025-
|
11
|
+
date: 2025-03-27 00:00:00.000000000 Z
|
11
12
|
dependencies: []
|
13
|
+
description:
|
12
14
|
email:
|
13
15
|
- sferik@gmail.com
|
14
16
|
executables: []
|
@@ -64,6 +66,7 @@ metadata:
|
|
64
66
|
changelog_uri: https://github.com/sferik/x-ruby/blob/master/CHANGELOG.md
|
65
67
|
bug_tracker_uri: https://github.com/sferik/x-ruby/issues
|
66
68
|
documentation_uri: https://rubydoc.info/gems/x/
|
69
|
+
post_install_message:
|
67
70
|
rdoc_options: []
|
68
71
|
require_paths:
|
69
72
|
- lib
|
@@ -78,7 +81,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
78
81
|
- !ruby/object:Gem::Version
|
79
82
|
version: '0'
|
80
83
|
requirements: []
|
81
|
-
rubygems_version: 3.
|
84
|
+
rubygems_version: 3.4.19
|
85
|
+
signing_key:
|
82
86
|
specification_version: 4
|
83
87
|
summary: A Ruby interface to the X API.
|
84
88
|
test_files: []
|