tcpfiletransfer 0.1.1 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8e0a0809c3a57508d72d20251e9add6bfc72b8817eefd27fca7b91b934b478d3
4
- data.tar.gz: fabdf4f66b9f720e6ff0eaeeef9de12eb7866637155e7b2b6c4917ee962666dc
3
+ metadata.gz: 2de1a3d36bc1c06cbf4dbc3e1363ccb19b69c606362c2588d16f864960f776aa
4
+ data.tar.gz: 3d56cb509fa6ec3dd2bb8bb57c9b039b4fcbbf02d11d711b21b83e61e04c2c95
5
5
  SHA512:
6
- metadata.gz: 26982483ee4507c81bdd955eee74a57a60db263febb8dedcd2ea4ec3484257f52008886c817028c5497ff8dfa774b47ef181950ca4424467765f961544a9c9e2
7
- data.tar.gz: d998a476a2782b5c17ddb06e6f59890f2192b1be64063764c06c0ccc59e61b02447f8c71492e4eb5659d002a8fdba3eb21666166be6d2c2ca7deaf51b43101cb
6
+ metadata.gz: cc398dcce8433cb22c8e14e665352e914552b9fd5189023321461b7655273e1ef69973879668a2d0f5292bb831e9ba65ffca2726dc451715fa35e3940e34b4f0
7
+ data.tar.gz: 607e6be18fcb08eb70c392dc131009d96e2222613ea24590d0d36fa2c18fd154f87586f6bf0686655362a374ad887d216623250963808fa7527982204eb0ab9d
data/bin/sendfile CHANGED
@@ -5,14 +5,16 @@ require "socket"
5
5
  originalpath = ARGV[0] || `zenity --file-selection --title='Send File'`.chomp
6
6
  exit(1) if (!ARGV[0] && $?.exitstatus == 1)
7
7
 
8
+ if File.directory?(originalpath)
9
+ name = originalpath.split("/").last.gsub(" ", "_")
10
+ newpath = "/tmp/#{name}.zip"
11
+ `cd #{File.dirname(originalpath)}; zip "#{newpath}" "#{name}" -r`
12
+ originalpath = newpath
13
+ end
14
+
8
15
  path = File.expand_path(originalpath).gsub(" ", "`")
9
16
  name = originalpath.split("/").last.gsub(" ", "_")
10
17
 
11
- if File.directory?(path)
12
- `zenity --error --text="Error: #{path} is a folder." --no-wrap --title="Send File"`
13
- exit(1)
14
- end
15
-
16
18
  recipient = ""
17
19
  loop do
18
20
  recipient = ARGV[1] || `zenity --text="Recipient\\n(Leave blank to search for available recipients)" --entry --title='Send File'`.chomp
@@ -1,15 +1,15 @@
1
1
  module FileTransfer
2
2
  module Notifier
3
3
  def self.file_transfer_notification(filename:, source:, filesize:, accept_link:)
4
- notification_title = "Incoming file transfer from #{source}"
5
- fileinfo = "Name: #{filename}\nSize: #{filesize}"
6
- notification_body = "#{fileinfo}\nWould you like to accept?"
7
- notification_command = "notify-send '#{notification_title}' \"#{notification_body}\""
4
+ notification_title = "Incoming file transfer from #{source}".gsub("\"", "")
5
+ fileinfo = "Name: #{filename}\nSize: #{filesize}".gsub("\"", "")
6
+ notification_body = "#{fileinfo}\nWould you like to accept?".gsub("\"", "")
7
+ notification_command = "notify-send '#{notification_title}' \"#{notification_body}\"".gsub("\"", "")
8
8
  #system(notification_command)
9
9
 
10
10
  x=system("zenity --question --icon-name=document-save-symbolic.symbolic --no-wrap --text=\"#{notification_body}\" --title='#{notification_title}'")
11
11
  if x
12
- file_location = `zenity --title="Save file" --file-selection --save --filename=#{filename.chomp}`.chomp
12
+ file_location = `zenity --title="Save file" --file-selection --save --filename=#{filename.chomp.gsub("\"", "")}`.chomp
13
13
  if file_location == ""
14
14
  f=open(accept_link + "/decline")
15
15
  f.read
data/lib/filetransfer.rb CHANGED
@@ -5,7 +5,7 @@ module FileTransfer
5
5
  @@files = ['server.rb', 'notifier.rb', 'httpserver.rb', 'ftserver.rb']
6
6
 
7
7
  def self.version
8
- "0.1.1"
8
+ "0.1.2"
9
9
  end
10
10
 
11
11
  def self.file_paths(relative:false)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tcpfiletransfer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthias Lee
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-10 00:00:00.000000000 Z
11
+ date: 2023-09-04 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: An easy way to transfer files over TCP between linux computers
14
14
  email: matthias@matthiasclee.com