thecore_ftp_helpers 1.1.27 → 2.1.1

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: b211e396c4ec16906907e31889d517e7ff41c9724cbacd3b8e79e0df47ec859f
4
- data.tar.gz: 13bb91c9e02e63fdbcd245dd80b4eaab4ba9cb948a86ab3cf97d530ce0fbaac3
3
+ metadata.gz: a28501bef33086b0c38474507b263d7aa0d878a109415b6f035869191bc2e51c
4
+ data.tar.gz: 159e4d12d29fe620843868cb21a5cd32f8d398f2a3946efb75bc2ebb14caa513
5
5
  SHA512:
6
- metadata.gz: 10ad1ad23beec36d26ed4e9519d63604d6ee41f83e42bfd04b88fd0bbed3b9aa656f08af5d3d38f69a08c25e41c6fcb3d28cf070a99484e61a1ec73cb7910a35
7
- data.tar.gz: a0c80588dced4cebfc05eb478f87b7e9c0ceed143e34d841395f771dacd9419c1552b36b519b541d06178f38bdb5aa63e972ada0741b805291f4bb1db9c1b9a5
6
+ metadata.gz: ccb7625cebbc96389c1e583e6f964aba0112a19791d1db41a4117b969fd6bca2acd150b41e0d62ec1213417c25005d667f663eb288888f2870c108cc210b7850
7
+ data.tar.gz: 4cd343fbb0a66aa132bb2865fd6bd9946a2d4e78cf11338ab4d34d5dda9a46ddc26acd127409a9bc8811b835e4806befdd4556662bbe2fac8e7176ab1a6853c3
@@ -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,4 +1,3 @@
1
- require 'thecore'
2
1
  module ThecoreFtpHelpers
3
2
  class Engine < ::Rails::Engine
4
3
 
@@ -1,3 +1,3 @@
1
1
  module ThecoreFtpHelpers
2
- VERSION = '1.1.27'.freeze
2
+ VERSION = '2.1.1'.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.27
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-30 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,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
60
  - !ruby/object:Gem::Version
62
61
  version: '0'
63
62
  requirements: []
64
- rubygems_version: 3.0.1
63
+ rubygems_version: 3.0.3
65
64
  signing_key:
66
65
  specification_version: 4
67
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)