eivid 1.1.3 → 1.1.5

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: 44d8733cec02c2d822a758903661c03b348ec6797a8cdcb817ffa4790094aeb1
4
- data.tar.gz: b1c1b3ac06bb695ce76b72db220e18b74db69960f4ce0131d4f00289e3fc5e34
3
+ metadata.gz: 24ee978f547944d6c9468eeebfe0d4a8e196c2dc273118139255b30349487e4e
4
+ data.tar.gz: b619bca48a02939b349535d99e273eff04731ecf5efcdfebf9c2364cec9d172f
5
5
  SHA512:
6
- metadata.gz: a83022e2807549aeaee50017ece932101a8d973a9a4e878b702afb762b5939a45f72479f30f6300cb38e89223f69bb2fc51a7619bc3662f7ea98c3ef6504b980
7
- data.tar.gz: 141aa446b58902cb6c4106b3489abeaad47ac68d492651b112fa9e3463fc38082201d174b38b6161ec8e0807b8b09e51be0c5f71eb9fbfe1aefa7920c4d0f3cb
6
+ metadata.gz: 53d3bf0598eb180fb6e0c11087de04db614da1f9ab9bab9fe37cb9ca96c192936854960a1e1713fae9bdad8f0c7df6ed7e4deb398a5da216886dcf592f288faa
7
+ data.tar.gz: 72fd598c3d9f2e89c378eaff5e37ab91899ac453bbd3435dfdc2cd9599d0fbf1532a47f5194c4661766ea1a119b25cdff93934333f4623349099f0088fff3cbf
@@ -2,54 +2,20 @@ module Eivid
2
2
  class UploadVimeoJob < ApplicationJob
3
3
 
4
4
  def perform(video_record:, video_path:)
5
- @video_record = video_record
6
- @video_path = video_path
7
- @video_file = File.open(video_path).read
5
+ # Upload video
6
+ uploaded_data = Eivid::RequestService.upload_video(video_path:)
7
+ vimeo_id, vimeo_url = uploaded_data.values_at(:vimeo_id, :vimeo_url)
8
8
 
9
- upload_to_vimeo
10
- set_attributes
11
- update_record
12
- add_to_folder
13
-
14
- notify_front
15
- check_status
16
- end
17
-
18
- private
9
+ # Update records
10
+ video_record.update(url_embedded: vimeo_url, vimeo_id:)
11
+ Eivid::RequestService.add_video_to_folder(video_record:)
19
12
 
20
- def upload_to_vimeo
21
- @response = Eivid::RequestService.upload_video(video_path: @video_path)
22
- end
23
-
24
- def set_attributes
25
- set_vimeo_url
26
- set_vimeo_id
27
- end
28
-
29
- def set_vimeo_url
30
- @vimeo_url = @response.dig(:link)
31
- end
32
-
33
- def set_vimeo_id
34
- @vimeo_id = @vimeo_url.split('/').last
35
- end
36
-
37
- def update_record
38
- @video_record.update(url_embedded: @vimeo_url, vimeo_id: @vimeo_id)
39
- end
40
-
41
- def add_to_folder
42
- Eivid::RequestService.add_video_to_folder(video_record: @video_record)
43
- end
44
-
45
- def check_status
46
- CheckVimeoStatusJob.perform_later(video_record: @video_record)
47
- end
48
-
49
- def notify_front
50
- data = { video: @video_record.slice(:id, :user_id), progress: { percentage: 33, step: "The video has been uploaded to Vimeo." } }
13
+ # Communicate status to the front-end
14
+ data = { video: video_record.slice(:id, :user_id), progress: { percentage: 33, step: "The video has been uploaded to Vimeo." } }
51
15
  NotifyFrontService.progress('notify_method_on_upload', data)
16
+ CheckVimeoStatusJob.perform_later(video_record:)
52
17
  end
53
18
 
19
+
54
20
  end
55
21
  end
@@ -2,30 +2,72 @@ module Eivid::Concerns::RequestService::UploadVideo
2
2
  extend ActiveSupport::Concern
3
3
 
4
4
  def upload_video(video_path:)
5
- @file = File.open(video_path)
6
- @request = HTTParty.post Eivid::RequestService::VIDEOS_URL, **upload_params
7
- @response = JSON.parse(@request).deep_symbolize_keys
8
- @upload_link = @response.dig(:upload, :upload_link)
5
+ file = File.open(video_path)
6
+ data = retrieve_upload_link(file: file)
7
+ upload_link, response = data.values_at(:upload_link, :response)
8
+ vimeo_url = response.dig(:link)
9
+ vimeo_id = vimeo_url.split('/').last
9
10
 
10
- tus_upload_to_vimeo
11
- @response
11
+ tus_upload_to_vimeo(file:, upload_link:)
12
+ {vimeo_id:, vimeo_url:}
12
13
  end
13
14
 
14
15
  private
15
16
 
16
- def tus_upload_to_vimeo
17
- HTTParty.patch @upload_link, body: @file.read, headers: tus_headers
17
+ def retrieve_upload_link(file:)
18
+ efforts = 0
19
+ max_efforts = 180
20
+ sleep_time = 1
21
+ upload_link = nil
22
+
23
+ while upload_link.blank? && efforts < max_efforts do
24
+
25
+ puts "Trying to retrieve upload link from Vimeo... try #{efforts}/#{max_efforts} with #{sleep_time} seconds sleep in between..."
26
+
27
+ request = HTTParty.post Eivid::RequestService::VIDEOS_URL, **upload_params(file)
28
+ response = JSON.parse(request).deep_symbolize_keys
29
+ upload_link = response.dig(:upload, :upload_link)
30
+
31
+ if upload_link.blank?
32
+ sleep sleep_time
33
+ efforts += 1
34
+ else
35
+ puts "successfully retrieved the Vimeo upload link!"
36
+ return {response: response, upload_link: upload_link}
37
+ end
38
+ end
39
+ end
40
+
41
+ def tus_upload_to_vimeo(file:, upload_link:)
42
+ efforts = 0
43
+ max_efforts = 10
44
+ sleep_time = 30
45
+ successful = false
46
+
47
+ while !successful && efforts < max_efforts
48
+
49
+ puts "Trying to upload the video to Vimeo... try #{efforts}/#{max_efforts} with #{sleep_time} seconds sleep in between..."
50
+ response = HTTParty.patch upload_link, body: file.read, headers: tus_headers
51
+
52
+ if response.code >= 500
53
+ sleep sleep_time
54
+ efforts += 1
55
+ else
56
+ successful = true
57
+ puts "successfully uploaded the video to Vimeo!"
58
+ end
59
+ end
18
60
  end
19
61
 
20
- def upload_params
62
+ def upload_params(file)
21
63
  body = {
22
64
  "upload" => {
23
65
  "approach" => "tus",
24
- "size" => @file.size.to_s,
66
+ "size" => file.size.to_s,
25
67
  }
26
68
  }
27
69
 
28
70
  { body: body.to_json, headers: default_headers }
29
71
  end
30
72
 
31
- end
73
+ end
data/lib/eivid/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Eivid
2
- VERSION = '1.1.3'
2
+ VERSION = '1.1.5'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eivid
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jurriaan Schrofer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-01 00:00:00.000000000 Z
11
+ date: 2024-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -143,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
143
143
  - !ruby/object:Gem::Version
144
144
  version: '0'
145
145
  requirements: []
146
- rubygems_version: 3.0.9
146
+ rubygems_version: 3.5.9
147
147
  signing_key:
148
148
  specification_version: 4
149
149
  summary: Eivid because we can.