Class: Miteru::Kit

Inherits:
Service show all
Includes:
Concerns::UrlTruncatable
Defined in:
lib/miteru/kit.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Concerns::UrlTruncatable

#decoded_url, #defanged_truncated_url, #truncated_url

Methods inherited from Service

#call, call, #result, result

Constructor Details

#initialize(url, source:) ⇒ Kit

Returns a new instance of Kit.

Parameters:

  • url (String)
  • source (String)


29
30
31
32
33
34
35
36
37
38
39
# File 'lib/miteru/kit.rb', line 29

def initialize(url, source:)
  super()

  @url = url
  @source = source

  @content_length = nil
  @mime_type = nil
  @status = nil
  @headers = nil
end

Instance Attribute Details

#content_lengthInteger? (readonly)

Returns:

  • (Integer, nil)


17
18
19
# File 'lib/miteru/kit.rb', line 17

def content_length
  @content_length
end

#headersHash? (readonly)

Returns:

  • (Hash, nil)


23
24
25
# File 'lib/miteru/kit.rb', line 23

def headers
  @headers
end

#mime_typeString? (readonly)

Returns:

  • (String, nil)


20
21
22
# File 'lib/miteru/kit.rb', line 20

def mime_type
  @mime_type
end

#sourceString (readonly)

Returns:

  • (String)


11
12
13
# File 'lib/miteru/kit.rb', line 11

def source
  @source
end

#statusInteger? (readonly)

Returns:

  • (Integer, nil)


14
15
16
# File 'lib/miteru/kit.rb', line 14

def status
  @status
end

#urlString (readonly)

Returns:

  • (String)


8
9
10
# File 'lib/miteru/kit.rb', line 8

def url
  @url
end

Instance Method Details

#basenameObject



53
54
55
# File 'lib/miteru/kit.rb', line 53

def basename
  @basename ||= File.basename(url)
end

#downloaded?Boolean

Returns:

  • (Boolean)


65
66
67
# File 'lib/miteru/kit.rb', line 65

def downloaded?
  File.exist?(filepath_to_download)
end

#extnameObject



47
48
49
50
51
# File 'lib/miteru/kit.rb', line 47

def extname
  return ".tar.gz" if url.end_with?("tar.gz")

  File.extname(url)
end

#filenameObject



57
58
59
# File 'lib/miteru/kit.rb', line 57

def filename
  @filename ||= CGI.unescape(basename)
end

#filename_with_sizeObject



75
76
77
78
79
# File 'lib/miteru/kit.rb', line 75

def filename_with_size
  return filename unless filesize

  "#{filename} (#{Helpers.number_to_human_size(filesize)})"
end

#filepath_to_downloadObject



61
62
63
# File 'lib/miteru/kit.rb', line 61

def filepath_to_download
  "#{base_dir}/#{filename_to_download}"
end

#filesizeObject



69
70
71
72
73
# File 'lib/miteru/kit.rb', line 69

def filesize
  return nil unless downloaded?

  File.size filepath_to_download
end

#hostnameObject



85
86
87
# File 'lib/miteru/kit.rb', line 85

def hostname
  @hostname ||= URI(url).hostname
end

#idObject



81
82
83
# File 'lib/miteru/kit.rb', line 81

def id
  @id ||= UUIDTools::UUID.random_create.to_s
end

#valid?Boolean

Returns:

  • (Boolean)


41
42
43
44
45
# File 'lib/miteru/kit.rb', line 41

def valid?
  # make a HEAD request for the validation
  before_validation
  valid_ext? && reachable? && valid_mime_type? && valid_content_length?
end