webloc 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/README.md +8 -3
- data/lib/webloc/version.rb +1 -1
- data/lib/webloc.rb +30 -5
- data/test/webloc_test.rb +9 -4
- data/webloc.gemspec +4 -4
- metadata +7 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e8ff9f7c12df7756811c14678b08b8ab6e42839dbb687b802ad37addf372f82d
|
4
|
+
data.tar.gz: 71f8eec3e245afe13e755127b519999255547829f3903f7d70b90099434a7493
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82233db761cc8a120f29e0f98f6a285cf2184f3ec9c865feaef060deb1b6021682a604dc1f352ea9af3b9d81fc2dd7fab04a3d3f18e8b923e0f310eeb3e680ae
|
7
|
+
data.tar.gz: ce6d621dda047bd22bbc68353f031bcc91d579f3a46c0c2e049606bf9f778fbcb9d3a0ee03d87eef5c4ac3699ba351eb2be99d60a06500c9cef3cd95c036f2d7
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2011-2024 Peter Cooper
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# webloc
|
2
2
|
|
3
|
-
*webloc* is a Ruby library that can read from and write to <tt>.webloc</tt> files as used on macOS.
|
3
|
+
*webloc* is a Ruby library that can read from and write to <tt>.webloc</tt> files as used on macOS. These are a variant of 'plist' format files, specifically used for storing links to URLs.
|
4
4
|
|
5
|
-
It works on Ruby
|
5
|
+
It works on Ruby 2.7 and up, including Ruby 3.x, and supports URLs of up to 255 characters in length.
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
@@ -18,8 +18,13 @@ Writing to a .webloc file:
|
|
18
18
|
|
19
19
|
Webloc.new('https://rubyweekly.com/').save('rubyweekly.webloc')
|
20
20
|
|
21
|
+
## Thanks
|
22
|
+
|
23
|
+
Thanks is due to Christos Karaiskos for [this article](https://medium.com/@karaiskc/understanding-apples-binary-property-list-format-281e6da00dbd
|
24
|
+
) which helped me understand the plist format a bit more when fixing a bug in 2024.
|
25
|
+
|
21
26
|
## License
|
22
27
|
|
23
|
-
Copyright (C) 2011-
|
28
|
+
Copyright (C) 2011-2024 Peter Cooper
|
24
29
|
|
25
30
|
webloc is licensed under the terms of the MIT License
|
data/lib/webloc/version.rb
CHANGED
data/lib/webloc.rb
CHANGED
@@ -25,11 +25,36 @@ class Webloc
|
|
25
25
|
end
|
26
26
|
|
27
27
|
def data
|
28
|
-
|
29
|
-
@data
|
30
|
-
|
31
|
-
|
32
|
-
@data +=
|
28
|
+
# PLIST HEADER
|
29
|
+
@data = "bplist\x30\x30".bytes
|
30
|
+
|
31
|
+
# PLIST OBJECT TABLE
|
32
|
+
@data += "\xD1\x01\x02".bytes # object 1 is a dictionary
|
33
|
+
@data += "\x53URL".bytes # object 2 is an ASCII string of length 3
|
34
|
+
@data += "\x5f\x10".bytes # object 3 is an ASCII string with a variable length length encoding (I know..)
|
35
|
+
# .. the '0' in \x10 denotes the length can be encoded within 2**0 bytes (i.e. 1!)
|
36
|
+
@data += @url.length.chr.bytes # and here is that one byte..
|
37
|
+
@data += @url.bytes # and finally the URL itself
|
38
|
+
|
39
|
+
# This is the offset table
|
40
|
+
@data += "\x08\x0B\x0F".bytes # so objects at 0x08, 0x0b and 0x0f
|
41
|
+
|
42
|
+
# PLIST TRAILER
|
43
|
+
# Bytes 0-4 are unused
|
44
|
+
@data += "\x00\x00\x00\x00\x00".bytes
|
45
|
+
# Byte 5 is the sort version
|
46
|
+
@data += "\x00".bytes
|
47
|
+
# Byte 6 is how many bytes are needed for each offset table offset
|
48
|
+
@data += "\x01".bytes
|
49
|
+
@data += "\x01".bytes
|
50
|
+
# Bytes 8-15 are how many objects are contained in the plist
|
51
|
+
@data += "\x00\x00\x00\x00\x00\x00\x00\x03".bytes
|
52
|
+
# Bytes 16-23 are for an offset from the offset table
|
53
|
+
@data += "\x00\x00\x00\x00\x00\x00\x00\x00".bytes
|
54
|
+
# Bytes 24-31 denote the position of the offset table from the start of the file
|
55
|
+
@data += "\x00\x00\x00\x00\x00\x00\x00".bytes + (@url.length + 18).chr.bytes
|
56
|
+
|
57
|
+
@data = @data.pack('C*')
|
33
58
|
end
|
34
59
|
|
35
60
|
def save(filename)
|
data/test/webloc_test.rb
CHANGED
@@ -20,18 +20,23 @@ class WeblocTest < Test::Unit::TestCase
|
|
20
20
|
end
|
21
21
|
|
22
22
|
def test_webloc_generates_valid_data
|
23
|
-
data = File.read(File.dirname(__FILE__) + '/oldstyle.webloc')
|
23
|
+
data = File.read(File.dirname(__FILE__) + '/oldstyle.webloc').b
|
24
24
|
assert_equal data, Webloc.new('https://github.com/peterc/webloc').data
|
25
25
|
end
|
26
26
|
|
27
|
+
def test_webloc_can_handle_long_urls
|
28
|
+
url = "http://example.com/this-is-a-very-long-url-indeed-it-should-easily-go-over-110-characters-for-our-testing-purposes"
|
29
|
+
assert_nothing_raised { Webloc.new(url).data }
|
30
|
+
end
|
31
|
+
|
27
32
|
def test_webloc_can_write_file
|
28
33
|
file = Tempfile.new('test-webloc')
|
29
34
|
begin
|
30
35
|
Webloc.new('https://github.com/peterc/webloc').save(file.path)
|
31
|
-
assert_equal Webloc.new('https://github.com/peterc/webloc').data, File.read(file.path)
|
36
|
+
assert_equal Webloc.new('https://github.com/peterc/webloc').data, File.read(file.path).b
|
32
37
|
ensure
|
33
|
-
|
34
|
-
|
38
|
+
file.close
|
39
|
+
file.unlink
|
35
40
|
end
|
36
41
|
end
|
37
42
|
end
|
data/webloc.gemspec
CHANGED
@@ -7,10 +7,10 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = Webloc::VERSION
|
8
8
|
s.platform = Gem::Platform::RUBY
|
9
9
|
s.authors = ["Peter Cooper"]
|
10
|
-
s.email = ["
|
11
|
-
s.homepage = "
|
12
|
-
s.summary = %q{Reads and writes .webloc files on
|
13
|
-
s.description = %q{Webloc reads and writes .webloc files on
|
10
|
+
s.email = ["git@peterc.org"]
|
11
|
+
s.homepage = "https://github.com/peterc/webloc"
|
12
|
+
s.summary = %q{Reads and writes .webloc files on macOS}
|
13
|
+
s.description = %q{Webloc reads and writes .webloc files on macOS}
|
14
14
|
|
15
15
|
s.rubyforge_project = "webloc"
|
16
16
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: webloc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Cooper
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: plist
|
@@ -24,15 +24,16 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
-
description: Webloc reads and writes .webloc files on
|
27
|
+
description: Webloc reads and writes .webloc files on macOS
|
28
28
|
email:
|
29
|
-
-
|
29
|
+
- git@peterc.org
|
30
30
|
executables: []
|
31
31
|
extensions: []
|
32
32
|
extra_rdoc_files: []
|
33
33
|
files:
|
34
34
|
- ".gitignore"
|
35
35
|
- Gemfile
|
36
|
+
- LICENSE
|
36
37
|
- README.md
|
37
38
|
- Rakefile
|
38
39
|
- lib/webloc.rb
|
@@ -41,7 +42,7 @@ files:
|
|
41
42
|
- test/pliststyle.webloc
|
42
43
|
- test/webloc_test.rb
|
43
44
|
- webloc.gemspec
|
44
|
-
homepage:
|
45
|
+
homepage: https://github.com/peterc/webloc
|
45
46
|
licenses: []
|
46
47
|
metadata: {}
|
47
48
|
post_install_message:
|
@@ -62,7 +63,7 @@ requirements: []
|
|
62
63
|
rubygems_version: 3.2.22
|
63
64
|
signing_key:
|
64
65
|
specification_version: 4
|
65
|
-
summary: Reads and writes .webloc files on
|
66
|
+
summary: Reads and writes .webloc files on macOS
|
66
67
|
test_files:
|
67
68
|
- test/oldstyle.webloc
|
68
69
|
- test/pliststyle.webloc
|