thecore_ftp_helpers 1.1.26 → 2.1.0

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
- SHA1:
3
- metadata.gz: 86f3f808de7c9614e09b8f5b8ad5eca82a84fd37
4
- data.tar.gz: 0d74a48950ba89609c1a8a3b80e5a0d678bac9fc
2
+ SHA256:
3
+ metadata.gz: 4076d2bc89d0896f299a10ed7988d7de723e79724711300fbf58110e4870a59d
4
+ data.tar.gz: f04af6e32d521c8a3be0ec53a62291d849887546386c5ce03fd5a44395194eb1
5
5
  SHA512:
6
- metadata.gz: c0a5cefefdd8401111ee7ab31679bbca5f8a4aa3a5fdac63e69051a81fd10b4aacfdc8aaff5fcedce105c5e64d051f7e43f3342871e8ac6b3bf9b48c18764640
7
- data.tar.gz: b88488c200f3969f66aab1d63932d29aaefb808bd5c816913d1ebb0e441b716c91c389b51a5e3addea28d8af31bda6a35f5e5d0a067c12991448f763b5675246
6
+ metadata.gz: 541184cb5b0f5d59bcbbad9736158c679358f22d4349cb752e54b1a3c28c72722cb601179584fc8c497627c2251a9ad6e895437f2639ffe35a5f97ac341282fa
7
+ data.tar.gz: 9add1063528627f4900f7e810e9bd1a277a32e43e717c39241593352d1c351ae524d025b84f423a0fd177b88a2c5cd5406420b919b47433d59085bdc55bba7b2
@@ -1,6 +1,5 @@
1
1
 
2
2
  Rails.application.configure do
3
3
  config.after_initialize do
4
- require 'abilities_thecore_ftp_helpers_concern'
5
4
  end
6
5
  end
@@ -1,7 +1,7 @@
1
1
 
2
- require 'thecore'
2
+ # require 'thecore'
3
3
  require 'net/ftp'
4
- require 'thecore_servers'
4
+ require 'thecore_backend_commons'
5
5
  require "thecore_ftp_helpers/engine"
6
6
 
7
7
  module ThecoreFtpHelpers
@@ -11,30 +11,39 @@ module ThecoreFtpHelpers
11
11
  puts "Connecting to FTP"
12
12
  ftp = Net::FTP.open address, username, password
13
13
  # ftp.passive = false
14
- puts "Entering directory: #{directory}"
15
- ftp.chdir(directory)
14
+ # puts "Entering directory: #{directory}"
15
+ # ftp.chdir(directory)
16
16
  puts "Listing all files which respond to this pattern: #{pattern}"
17
17
  begin
18
- files = ftp.nlst(pattern)
18
+ # files = ftp.nlst(pattern)
19
+ files=ftp.mlsd directory
19
20
  rescue => exception
20
21
  # If we are here, maybe it's beacause of passive mode and the network too secure
21
22
  # let's switch to active mode and try again
22
23
  ftp.passive = false
23
- files = ftp.nlst(pattern)
24
+ files=ftp.mlsd directory
24
25
  end
25
26
 
26
27
  puts "Last import time: #{from.strftime('%Y-%m-%d %H:%M:%S.%N')}"
27
- files = files.select {|f|
28
- puts "For file: #{f}"
29
- puts "Filetime: #{ftp.mtime(f).strftime('%Y-%m-%d %H:%M:%S.%N')}"
30
- puts "File chosen? #{ftp.mtime(f).to_f > from.to_f}"
31
- ftp.mtime(f).to_f > from.to_f
28
+ most_recent = nil
29
+ # puts "SELECTING FILES"
30
+ files = files.select {|f|
31
+ f.pathname.starts_with?(pattern) && f.modify.to_f > from.to_f
32
32
  } unless from.blank?
33
- puts "Chosen files: #{files.inspect}"
34
- most_recent = files.sort_by{|f| ftp.mtime(f).to_f}.last
33
+ # puts "SELECTED FILES: #{files.inspect}"
34
+ most_recent = files.sort_by{|f| f.modify.to_f}.last.pathname
35
+ # puts "MOST RECENT IS: #{most_recent}"
36
+ # files.select {|f|
37
+ # puts "For file: #{f}"
38
+ # puts "Filetime: #{ftp.mtime(f).strftime('%Y-%m-%d %H:%M:%S.%N')}"
39
+ # puts "File chosen? #{ftp.mtime(f).to_f > from.to_f}"
40
+ # ftp.mtime(f).to_f > from.to_f
41
+ # } unless from.blank?
42
+ # puts "Chosen files: #{files.inspect}"
43
+ # most_recent = files.sort_by{|f| ftp.mtime(f).to_f}.last
35
44
  puts "Opening File: #{most_recent || "No file has been chosen."}"
36
45
  ftp.close if close
37
- [most_recent, ftp]
46
+ ["#{directory}/#{most_recent}", ftp]
38
47
  end
39
48
 
40
49
  # If destination is nil, the file will just be downloaded to RAM
@@ -1,9 +1,8 @@
1
- require 'thecore'
2
1
  module ThecoreFtpHelpers
3
2
  class Engine < ::Rails::Engine
4
3
 
5
4
  initializer 'thecore_ftp_helpers.add_to_migrations' do |app|
6
- unless app.root.to_s == root.to_s
5
+ unless app.root.to_s.match root.to_s
7
6
  # APPEND TO MAIN APP MIGRATIONS FROM THIS GEM
8
7
  config.paths['db/migrate'].expanded.each do |expanded_path|
9
8
  app.config.paths['db/migrate'] << expanded_path
@@ -1,3 +1,3 @@
1
1
  module ThecoreFtpHelpers
2
- VERSION = '1.1.26'
2
+ VERSION = '2.1.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,29 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thecore_ftp_helpers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.26
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-03 00:00:00.000000000 Z
11
+ date: 2020-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: thecore_servers
14
+ name: thecore_backend_commons
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.0'
19
+ version: '2.3'
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: '1.0'
26
+ version: '2.3'
27
27
  description: Thecorized thecore_ftp_helpers full description.
28
28
  email:
29
29
  - gabriele.tassoni@gmail.com
@@ -37,7 +37,6 @@ files:
37
37
  - app/assets/config/thecore_ftp_helpers_manifest.js
38
38
  - config/initializers/thecore_ftp_helpers_after_initialize.rb
39
39
  - config/routes.rb
40
- - lib/abilities_thecore_ftp_helpers_concern.rb
41
40
  - lib/tasks/thecore_ftp_helpers_tasks.rake
42
41
  - lib/thecore_ftp_helpers.rb
43
42
  - lib/thecore_ftp_helpers/engine.rb
@@ -61,8 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
60
  - !ruby/object:Gem::Version
62
61
  version: '0'
63
62
  requirements: []
64
- rubyforge_project:
65
- rubygems_version: 2.6.14
63
+ rubygems_version: 3.0.3
66
64
  signing_key:
67
65
  specification_version: 4
68
66
  summary: Thecorized thecore_ftp_helpers
@@ -1,23 +0,0 @@
1
-
2
- require 'active_support/concern'
3
-
4
- module ThecoreFtpHelperAbilitiesConcern
5
- extend ActiveSupport::Concern
6
- included do
7
- def thecore_ftp_helpers_abilities user
8
- if user
9
- # if the user is logged in, it can do certain tasks regardless his role
10
- if user.admin?
11
- # if the user is an admin, it can do a lot of things, usually
12
- end
13
-
14
- if user.has_role? :role
15
- # a specific role, brings specific powers
16
- end
17
- end
18
- end
19
- end
20
- end
21
-
22
- # include the extension
23
- TheCoreAbilities.send(:include, ThecoreFtpHelperAbilitiesConcern)