takumi-server_list_ping 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: be23f0c948e352c9f29c6be8f86207bb06436dcb
4
+ data.tar.gz: d3e993d3005f535d995d4fe32adba22fe87aab7b
5
+ SHA512:
6
+ metadata.gz: 7b86359cef79dbf1a9f763290d8625189c28bb37d2e5059a098324f7c9a53aeb83e2002575fd079ee3a9c2327b708664d724893b43cccb6b43aa5a41cd9b9c91
7
+ data.tar.gz: 2f9a0e76401af75cc3fcce6716f87c41e63934a24be65759e79cd60ed2e8f2038c87197f68fe99efe8ede8beec371f052c13eafb32678463239ac9f4446ff943
data/.gitignore ADDED
@@ -0,0 +1,15 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
15
+ vendor/bundle
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in takumi-server_list_ping.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 block_given?
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,34 @@
1
+ # Takumi::ServerListPing
2
+
3
+ minecraft server list ping packet and tools.
4
+
5
+ Details: [Server List Ping - MinecraftCoalition](http://wiki.vg/Server_List_Ping)
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'takumi-server_list_ping'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install takumi-server_list_ping
22
+
23
+ ## Usage
24
+
25
+ $ bundle exec takumi-server_list_ping YOUR_SERVER_IP_ADDRESS_OR_HOSTNAME
26
+ {"description":"A Minecraft Server","players":{"max":20,"online":0},"version":{"name":"1.8","protocol":47}}
27
+
28
+ ## Contributing
29
+
30
+ 1. Fork it ( https://github.com/blockgiven/takumi-server_list_ping/fork )
31
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
32
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
33
+ 4. Push to the branch (`git push origin my-new-feature`)
34
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+ lib = File.expand_path('../lib', __dir__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ require "takumi/server_list_ping"
6
+
7
+ if ARGV[0]
8
+ server_address, port = ARGV[0].split(':')
9
+ end
10
+
11
+ handshake = Takumi::ServerListPing::Handshake.create({
12
+ server_address: server_address || 'localhost',
13
+ port: (port && port.to_i) || ::Takumi::ServerListPing::PORT
14
+ })
15
+ status_request = Takumi::ServerListPing::StatusRequest.create
16
+
17
+ socket = TCPSocket.open(handshake.server_address, handshake.port)
18
+ socket.write(handshake.to_s)
19
+ socket.write(status_request.to_s)
20
+
21
+ packets = socket.read
22
+ status_response = Takumi::ServerListPing::StatusResponse.decode(packets)
23
+ puts status_response.json
@@ -0,0 +1,13 @@
1
+ module Takumi
2
+ module ServerListPing
3
+ NEXT_STATUS = 1
4
+ PROTOCOL_VERSION = 4
5
+ PORT = 25565
6
+ end
7
+ end
8
+ require "takumi/packet"
9
+ require "takumi/server_list_ping/version"
10
+ require "takumi/server_list_ping/base"
11
+ require "takumi/server_list_ping/handshake"
12
+ require "takumi/server_list_ping/status_request"
13
+ require "takumi/server_list_ping/status_response"
@@ -0,0 +1,8 @@
1
+ require 'ostruct'
2
+
3
+ module Takumi
4
+ module ServerListPing
5
+ class Base < OpenStruct
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,27 @@
1
+ module Takumi
2
+ module ServerListPing
3
+ class Handshake < Base
4
+ include Takumi::Packet::Dsl
5
+
6
+ field :packet_id, :varint
7
+ field :version, :varint
8
+ field :server_address, :string
9
+ field :port, :ushort
10
+ field :next_state, :varint
11
+
12
+ def self.create(attrs = {})
13
+ new(default_attrs.merge(attrs))
14
+ end
15
+
16
+ def self.default_attrs
17
+ {
18
+ packet_id: 0,
19
+ version: Takumi::ServerListPing::PROTOCOL_VERSION,
20
+ server_address: 'localhost',
21
+ port: Takumi::ServerListPing::PORT,
22
+ next_state: Takumi::ServerListPing::NEXT_STATUS
23
+ }
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,17 @@
1
+ module Takumi
2
+ module ServerListPing
3
+ class StatusRequest < Base
4
+ include Takumi::Packet::Dsl
5
+
6
+ field :packet_id, :varint
7
+
8
+ def self.create(attrs = {})
9
+ new(default_attrs.merge(attrs))
10
+ end
11
+
12
+ def self.default_attrs
13
+ {packet_id: 0}
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,19 @@
1
+ require 'json'
2
+
3
+ module Takumi
4
+ module ServerListPing
5
+ class StatusResponse < Base
6
+ include Takumi::Packet::Dsl
7
+
8
+ field :packet_id, :varint
9
+ field :json, :string
10
+
11
+ def initialize(attrs)
12
+ super
13
+ if self[:json]
14
+ self.info = JSON.parse(self[:json])
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,5 @@
1
+ module Takumi
2
+ module ServerListPing
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'takumi/server_list_ping/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "takumi-server_list_ping"
8
+ spec.version = Takumi::ServerListPing::VERSION
9
+ spec.authors = ["block_given?"]
10
+ spec.email = ["block_given@outlook.com"]
11
+ spec.summary = %q{minecraft server list ping packet and tools.}
12
+ spec.homepage = "https://github.com/blockgiven/takumi-server_list_ping"
13
+ spec.license = "MIT"
14
+
15
+ spec.files = `git ls-files -z`.split("\x0")
16
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
18
+ spec.require_paths = ["lib"]
19
+
20
+ spec.executables << 'takumi-server_list_ping'
21
+
22
+ spec.add_runtime_dependency "takumi-packet"
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.7"
25
+ spec.add_development_dependency "rake", "~> 10.0"
26
+ end
metadata ADDED
@@ -0,0 +1,101 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: takumi-server_list_ping
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - block_given?
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-10-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: takumi-packet
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.7'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - block_given@outlook.com
58
+ executables:
59
+ - takumi-server_list_ping
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - Gemfile
65
+ - LICENSE.txt
66
+ - README.md
67
+ - Rakefile
68
+ - bin/takumi-server_list_ping
69
+ - lib/takumi/server_list_ping.rb
70
+ - lib/takumi/server_list_ping/base.rb
71
+ - lib/takumi/server_list_ping/handshake.rb
72
+ - lib/takumi/server_list_ping/status_request.rb
73
+ - lib/takumi/server_list_ping/status_response.rb
74
+ - lib/takumi/server_list_ping/version.rb
75
+ - takumi-server_list_ping.gemspec
76
+ homepage: https://github.com/blockgiven/takumi-server_list_ping
77
+ licenses:
78
+ - MIT
79
+ metadata: {}
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ requirements: []
95
+ rubyforge_project:
96
+ rubygems_version: 2.2.2
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: minecraft server list ping packet and tools.
100
+ test_files: []
101
+ has_rdoc: