activestorage 7.0.1 → 7.0.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activestorage might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/app/assets/javascripts/activestorage.esm.js +5 -17
- data/app/assets/javascripts/activestorage.js +5 -17
- data/app/controllers/active_storage/direct_uploads_controller.rb +1 -7
- data/app/javascript/activestorage/blob_record.js +3 -10
- data/app/javascript/activestorage/direct_upload.js +2 -4
- data/app/javascript/activestorage/direct_upload_controller.js +1 -9
- data/lib/active_storage/analyzer/audio_analyzer.rb +1 -1
- data/lib/active_storage/analyzer/video_analyzer.rb +1 -1
- data/lib/active_storage/engine.rb +5 -2
- data/lib/active_storage/errors.rb +0 -3
- data/lib/active_storage/gem_version.rb +1 -1
- data/lib/active_storage.rb +0 -1
- metadata +13 -14
- data/lib/active_storage/direct_upload_token.rb +0 -59
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ab056321e5ad3074d28fa196691793edd912bffe3f7a721f8312d5c84929bfd
|
4
|
+
data.tar.gz: 993579ce52686c9fe560dc2585aac8c9b5e92caed7a739f09bd9a897321abf0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f9d94aecf0795bb5b3a69b64468b6d3ae818dff4aed350884b1752f8ed424c5ca23438a54e38ad661271758b127bedbd1e3c54a2223764f065644308f16f56c
|
7
|
+
data.tar.gz: 3038c5c72e2bbcf911207bc03108788760e1754eb363a42cae28d2a2194825c0fe0684e5e40d7cb6fb93ef82fba8337fe12d06a6dd5771898500bbd545ae6a22
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
## Rails 7.0.2 (February 08, 2022) ##
|
2
|
+
|
3
|
+
* Revert the ability to pass `service_name` param to `DirectUploadsController` which was introduced
|
4
|
+
in 7.0.0.
|
5
|
+
|
6
|
+
That change caused a lot of problems to upgrade Rails applications so we decided to remove it
|
7
|
+
while in work in a more backwards compatible implementation.
|
8
|
+
|
9
|
+
*Gannon McGibbon*
|
10
|
+
|
11
|
+
* Allow applications to opt out of precompiling Active Storage JavaScript assets.
|
12
|
+
|
13
|
+
*jlestavel*
|
14
|
+
|
15
|
+
|
1
16
|
## Rails 7.0.1 (January 06, 2022) ##
|
2
17
|
|
3
18
|
* No changes.
|
@@ -508,7 +508,7 @@ function toArray(value) {
|
|
508
508
|
}
|
509
509
|
|
510
510
|
class BlobRecord {
|
511
|
-
constructor(file, checksum, url
|
511
|
+
constructor(file, checksum, url) {
|
512
512
|
this.file = file;
|
513
513
|
this.attributes = {
|
514
514
|
filename: file.name,
|
@@ -516,8 +516,6 @@ class BlobRecord {
|
|
516
516
|
byte_size: file.size,
|
517
517
|
checksum: checksum
|
518
518
|
};
|
519
|
-
this.directUploadToken = directUploadToken;
|
520
|
-
this.attachmentName = attachmentName;
|
521
519
|
this.xhr = new XMLHttpRequest;
|
522
520
|
this.xhr.open("POST", url, true);
|
523
521
|
this.xhr.responseType = "json";
|
@@ -545,9 +543,7 @@ class BlobRecord {
|
|
545
543
|
create(callback) {
|
546
544
|
this.callback = callback;
|
547
545
|
this.xhr.send(JSON.stringify({
|
548
|
-
blob: this.attributes
|
549
|
-
direct_upload_token: this.directUploadToken,
|
550
|
-
attachment_name: this.attachmentName
|
546
|
+
blob: this.attributes
|
551
547
|
}));
|
552
548
|
}
|
553
549
|
requestDidLoad(event) {
|
@@ -608,12 +604,10 @@ class BlobUpload {
|
|
608
604
|
let id = 0;
|
609
605
|
|
610
606
|
class DirectUpload {
|
611
|
-
constructor(file, url,
|
607
|
+
constructor(file, url, delegate) {
|
612
608
|
this.id = ++id;
|
613
609
|
this.file = file;
|
614
610
|
this.url = url;
|
615
|
-
this.serviceName = serviceName;
|
616
|
-
this.attachmentName = attachmentName;
|
617
611
|
this.delegate = delegate;
|
618
612
|
}
|
619
613
|
create(callback) {
|
@@ -622,7 +616,7 @@ class DirectUpload {
|
|
622
616
|
callback(error);
|
623
617
|
return;
|
624
618
|
}
|
625
|
-
const blob = new BlobRecord(this.file, checksum, this.url
|
619
|
+
const blob = new BlobRecord(this.file, checksum, this.url);
|
626
620
|
notify(this.delegate, "directUploadWillCreateBlobWithXHR", blob.xhr);
|
627
621
|
blob.create((error => {
|
628
622
|
if (error) {
|
@@ -653,7 +647,7 @@ class DirectUploadController {
|
|
653
647
|
constructor(input, file) {
|
654
648
|
this.input = input;
|
655
649
|
this.file = file;
|
656
|
-
this.directUpload = new DirectUpload(this.file, this.url, this
|
650
|
+
this.directUpload = new DirectUpload(this.file, this.url, this);
|
657
651
|
this.dispatch("initialize");
|
658
652
|
}
|
659
653
|
start(callback) {
|
@@ -684,12 +678,6 @@ class DirectUploadController {
|
|
684
678
|
get url() {
|
685
679
|
return this.input.getAttribute("data-direct-upload-url");
|
686
680
|
}
|
687
|
-
get directUploadToken() {
|
688
|
-
return this.input.getAttribute("data-direct-upload-token");
|
689
|
-
}
|
690
|
-
get attachmentName() {
|
691
|
-
return this.input.getAttribute("data-direct-upload-attachment-name");
|
692
|
-
}
|
693
681
|
dispatch(name, detail = {}) {
|
694
682
|
detail.file = this.file;
|
695
683
|
detail.id = this.directUpload.id;
|
@@ -503,7 +503,7 @@
|
|
503
503
|
}
|
504
504
|
}
|
505
505
|
class BlobRecord {
|
506
|
-
constructor(file, checksum, url
|
506
|
+
constructor(file, checksum, url) {
|
507
507
|
this.file = file;
|
508
508
|
this.attributes = {
|
509
509
|
filename: file.name,
|
@@ -511,8 +511,6 @@
|
|
511
511
|
byte_size: file.size,
|
512
512
|
checksum: checksum
|
513
513
|
};
|
514
|
-
this.directUploadToken = directUploadToken;
|
515
|
-
this.attachmentName = attachmentName;
|
516
514
|
this.xhr = new XMLHttpRequest;
|
517
515
|
this.xhr.open("POST", url, true);
|
518
516
|
this.xhr.responseType = "json";
|
@@ -540,9 +538,7 @@
|
|
540
538
|
create(callback) {
|
541
539
|
this.callback = callback;
|
542
540
|
this.xhr.send(JSON.stringify({
|
543
|
-
blob: this.attributes
|
544
|
-
direct_upload_token: this.directUploadToken,
|
545
|
-
attachment_name: this.attachmentName
|
541
|
+
blob: this.attributes
|
546
542
|
}));
|
547
543
|
}
|
548
544
|
requestDidLoad(event) {
|
@@ -600,12 +596,10 @@
|
|
600
596
|
}
|
601
597
|
let id = 0;
|
602
598
|
class DirectUpload {
|
603
|
-
constructor(file, url,
|
599
|
+
constructor(file, url, delegate) {
|
604
600
|
this.id = ++id;
|
605
601
|
this.file = file;
|
606
602
|
this.url = url;
|
607
|
-
this.serviceName = serviceName;
|
608
|
-
this.attachmentName = attachmentName;
|
609
603
|
this.delegate = delegate;
|
610
604
|
}
|
611
605
|
create(callback) {
|
@@ -614,7 +608,7 @@
|
|
614
608
|
callback(error);
|
615
609
|
return;
|
616
610
|
}
|
617
|
-
const blob = new BlobRecord(this.file, checksum, this.url
|
611
|
+
const blob = new BlobRecord(this.file, checksum, this.url);
|
618
612
|
notify(this.delegate, "directUploadWillCreateBlobWithXHR", blob.xhr);
|
619
613
|
blob.create((error => {
|
620
614
|
if (error) {
|
@@ -643,7 +637,7 @@
|
|
643
637
|
constructor(input, file) {
|
644
638
|
this.input = input;
|
645
639
|
this.file = file;
|
646
|
-
this.directUpload = new DirectUpload(this.file, this.url, this
|
640
|
+
this.directUpload = new DirectUpload(this.file, this.url, this);
|
647
641
|
this.dispatch("initialize");
|
648
642
|
}
|
649
643
|
start(callback) {
|
@@ -674,12 +668,6 @@
|
|
674
668
|
get url() {
|
675
669
|
return this.input.getAttribute("data-direct-upload-url");
|
676
670
|
}
|
677
|
-
get directUploadToken() {
|
678
|
-
return this.input.getAttribute("data-direct-upload-token");
|
679
|
-
}
|
680
|
-
get attachmentName() {
|
681
|
-
return this.input.getAttribute("data-direct-upload-attachment-name");
|
682
|
-
}
|
683
671
|
dispatch(name, detail = {}) {
|
684
672
|
detail.file = this.file;
|
685
673
|
detail.id = this.directUpload.id;
|
@@ -4,10 +4,8 @@
|
|
4
4
|
# When the client-side upload is completed, the signed_blob_id can be submitted as part of the form to reference
|
5
5
|
# the blob that was created up front.
|
6
6
|
class ActiveStorage::DirectUploadsController < ActiveStorage::BaseController
|
7
|
-
include ActiveStorage::DirectUploadToken
|
8
|
-
|
9
7
|
def create
|
10
|
-
blob = ActiveStorage::Blob.create_before_direct_upload!(**blob_args
|
8
|
+
blob = ActiveStorage::Blob.create_before_direct_upload!(**blob_args)
|
11
9
|
render json: direct_upload_json(blob)
|
12
10
|
end
|
13
11
|
|
@@ -16,10 +14,6 @@ class ActiveStorage::DirectUploadsController < ActiveStorage::BaseController
|
|
16
14
|
params.require(:blob).permit(:filename, :byte_size, :checksum, :content_type, metadata: {}).to_h.symbolize_keys
|
17
15
|
end
|
18
16
|
|
19
|
-
def verified_service_name
|
20
|
-
ActiveStorage::DirectUploadToken.verify_direct_upload_token(params[:direct_upload_token], params[:attachment_name], session)
|
21
|
-
end
|
22
|
-
|
23
17
|
def direct_upload_json(blob)
|
24
18
|
blob.as_json(root: false, methods: :signed_id).merge(direct_upload: {
|
25
19
|
url: blob.service_url_for_direct_upload,
|
@@ -1,19 +1,16 @@
|
|
1
1
|
import { getMetaValue } from "./helpers"
|
2
2
|
|
3
3
|
export class BlobRecord {
|
4
|
-
constructor(file, checksum, url
|
4
|
+
constructor(file, checksum, url) {
|
5
5
|
this.file = file
|
6
6
|
|
7
7
|
this.attributes = {
|
8
8
|
filename: file.name,
|
9
9
|
content_type: file.type || "application/octet-stream",
|
10
10
|
byte_size: file.size,
|
11
|
-
checksum: checksum
|
11
|
+
checksum: checksum
|
12
12
|
}
|
13
13
|
|
14
|
-
this.directUploadToken = directUploadToken
|
15
|
-
this.attachmentName = attachmentName
|
16
|
-
|
17
14
|
this.xhr = new XMLHttpRequest
|
18
15
|
this.xhr.open("POST", url, true)
|
19
16
|
this.xhr.responseType = "json"
|
@@ -46,11 +43,7 @@ export class BlobRecord {
|
|
46
43
|
|
47
44
|
create(callback) {
|
48
45
|
this.callback = callback
|
49
|
-
this.xhr.send(JSON.stringify({
|
50
|
-
blob: this.attributes,
|
51
|
-
direct_upload_token: this.directUploadToken,
|
52
|
-
attachment_name: this.attachmentName
|
53
|
-
}))
|
46
|
+
this.xhr.send(JSON.stringify({ blob: this.attributes }))
|
54
47
|
}
|
55
48
|
|
56
49
|
requestDidLoad(event) {
|
@@ -5,12 +5,10 @@ import { BlobUpload } from "./blob_upload"
|
|
5
5
|
let id = 0
|
6
6
|
|
7
7
|
export class DirectUpload {
|
8
|
-
constructor(file, url,
|
8
|
+
constructor(file, url, delegate) {
|
9
9
|
this.id = ++id
|
10
10
|
this.file = file
|
11
11
|
this.url = url
|
12
|
-
this.serviceName = serviceName
|
13
|
-
this.attachmentName = attachmentName
|
14
12
|
this.delegate = delegate
|
15
13
|
}
|
16
14
|
|
@@ -21,7 +19,7 @@ export class DirectUpload {
|
|
21
19
|
return
|
22
20
|
}
|
23
21
|
|
24
|
-
const blob = new BlobRecord(this.file, checksum, this.url
|
22
|
+
const blob = new BlobRecord(this.file, checksum, this.url)
|
25
23
|
notify(this.delegate, "directUploadWillCreateBlobWithXHR", blob.xhr)
|
26
24
|
|
27
25
|
blob.create(error => {
|
@@ -5,7 +5,7 @@ export class DirectUploadController {
|
|
5
5
|
constructor(input, file) {
|
6
6
|
this.input = input
|
7
7
|
this.file = file
|
8
|
-
this.directUpload = new DirectUpload(this.file, this.url, this
|
8
|
+
this.directUpload = new DirectUpload(this.file, this.url, this)
|
9
9
|
this.dispatch("initialize")
|
10
10
|
}
|
11
11
|
|
@@ -41,14 +41,6 @@ export class DirectUploadController {
|
|
41
41
|
return this.input.getAttribute("data-direct-upload-url")
|
42
42
|
}
|
43
43
|
|
44
|
-
get directUploadToken() {
|
45
|
-
return this.input.getAttribute("data-direct-upload-token")
|
46
|
-
}
|
47
|
-
|
48
|
-
get attachmentName() {
|
49
|
-
return this.input.getAttribute("data-direct-upload-attachment-name")
|
50
|
-
}
|
51
|
-
|
52
44
|
dispatch(name, detail = {}) {
|
53
45
|
detail.file = this.file
|
54
46
|
detail.id = this.directUpload.id
|
@@ -30,6 +30,7 @@ module ActiveStorage
|
|
30
30
|
config.active_storage.analyzers = [ ActiveStorage::Analyzer::ImageAnalyzer::Vips, ActiveStorage::Analyzer::ImageAnalyzer::ImageMagick, ActiveStorage::Analyzer::VideoAnalyzer, ActiveStorage::Analyzer::AudioAnalyzer ]
|
31
31
|
config.active_storage.paths = ActiveSupport::OrderedOptions.new
|
32
32
|
config.active_storage.queues = ActiveSupport::InheritableOptions.new
|
33
|
+
config.active_storage.precompile_assets = true
|
33
34
|
|
34
35
|
config.active_storage.variable_content_types = %w(
|
35
36
|
image/png
|
@@ -167,8 +168,10 @@ module ActiveStorage
|
|
167
168
|
end
|
168
169
|
|
169
170
|
initializer "active_storage.asset" do
|
170
|
-
|
171
|
-
|
171
|
+
config.after_initialize do |app|
|
172
|
+
if app.config.respond_to?(:assets) && app.config.active_storage.precompile_assets
|
173
|
+
app.config.assets.precompile += %w( activestorage activestorage.esm )
|
174
|
+
end
|
172
175
|
end
|
173
176
|
end
|
174
177
|
|
data/lib/active_storage.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activestorage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0.
|
4
|
+
version: 7.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -16,56 +16,56 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 7.0.
|
19
|
+
version: 7.0.2
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 7.0.
|
26
|
+
version: 7.0.2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: actionpack
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 7.0.
|
33
|
+
version: 7.0.2
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 7.0.
|
40
|
+
version: 7.0.2
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: activejob
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 7.0.
|
47
|
+
version: 7.0.2
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 7.0.
|
54
|
+
version: 7.0.2
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: activerecord
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 7.0.
|
61
|
+
version: 7.0.2
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 7.0.
|
68
|
+
version: 7.0.2
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: marcel
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -170,7 +170,6 @@ files:
|
|
170
170
|
- lib/active_storage/attached/many.rb
|
171
171
|
- lib/active_storage/attached/model.rb
|
172
172
|
- lib/active_storage/attached/one.rb
|
173
|
-
- lib/active_storage/direct_upload_token.rb
|
174
173
|
- lib/active_storage/downloader.rb
|
175
174
|
- lib/active_storage/engine.rb
|
176
175
|
- lib/active_storage/errors.rb
|
@@ -199,10 +198,10 @@ licenses:
|
|
199
198
|
- MIT
|
200
199
|
metadata:
|
201
200
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
202
|
-
changelog_uri: https://github.com/rails/rails/blob/v7.0.
|
203
|
-
documentation_uri: https://api.rubyonrails.org/v7.0.
|
201
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.0.2/activestorage/CHANGELOG.md
|
202
|
+
documentation_uri: https://api.rubyonrails.org/v7.0.2/
|
204
203
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
205
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.0.
|
204
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.0.2/activestorage
|
206
205
|
rubygems_mfa_required: 'true'
|
207
206
|
post_install_message:
|
208
207
|
rdoc_options: []
|
@@ -1,59 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module ActiveStorage
|
4
|
-
module DirectUploadToken
|
5
|
-
extend self
|
6
|
-
|
7
|
-
SEPARATOR = "."
|
8
|
-
DIRECT_UPLOAD_TOKEN_LENGTH = 32
|
9
|
-
|
10
|
-
def generate_direct_upload_token(attachment_name, service_name, session)
|
11
|
-
token = direct_upload_token(session, attachment_name)
|
12
|
-
encode_direct_upload_token([service_name, token].join(SEPARATOR))
|
13
|
-
end
|
14
|
-
|
15
|
-
def verify_direct_upload_token(token, attachment_name, session)
|
16
|
-
raise ActiveStorage::InvalidDirectUploadTokenError if token.nil?
|
17
|
-
|
18
|
-
service_name, *token_components = decode_token(token).split(SEPARATOR)
|
19
|
-
decoded_token = token_components.join(SEPARATOR)
|
20
|
-
|
21
|
-
return service_name if valid_direct_upload_token?(decoded_token, attachment_name, session)
|
22
|
-
|
23
|
-
raise ActiveStorage::InvalidDirectUploadTokenError
|
24
|
-
end
|
25
|
-
|
26
|
-
private
|
27
|
-
def direct_upload_token(session, attachment_name) # :doc:
|
28
|
-
direct_upload_token_hmac(session, "direct_upload##{attachment_name}")
|
29
|
-
end
|
30
|
-
|
31
|
-
def valid_direct_upload_token?(token, attachment_name, session) # :doc:
|
32
|
-
correct_token = direct_upload_token(session, attachment_name)
|
33
|
-
ActiveSupport::SecurityUtils.fixed_length_secure_compare(token, correct_token)
|
34
|
-
rescue ArgumentError
|
35
|
-
raise ActiveStorage::InvalidDirectUploadTokenError
|
36
|
-
end
|
37
|
-
|
38
|
-
def direct_upload_token_hmac(session, identifier) # :doc:
|
39
|
-
OpenSSL::HMAC.digest(
|
40
|
-
OpenSSL::Digest::SHA256.new,
|
41
|
-
real_direct_upload_token(session),
|
42
|
-
identifier
|
43
|
-
)
|
44
|
-
end
|
45
|
-
|
46
|
-
def real_direct_upload_token(session) # :doc:
|
47
|
-
session[:_direct_upload_token] ||= SecureRandom.urlsafe_base64(DIRECT_UPLOAD_TOKEN_LENGTH, padding: false)
|
48
|
-
encode_direct_upload_token(session[:_direct_upload_token])
|
49
|
-
end
|
50
|
-
|
51
|
-
def decode_token(encoded_token) # :nodoc:
|
52
|
-
Base64.urlsafe_decode64(encoded_token)
|
53
|
-
end
|
54
|
-
|
55
|
-
def encode_direct_upload_token(raw_token) # :nodoc:
|
56
|
-
Base64.urlsafe_encode64(raw_token)
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|