steam-condenser 1.3.5 → 1.3.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +228 -0
- data/CONTRIBUTING.md +59 -0
- data/Gemfile.lock +12 -13
- data/README.md +9 -4
- data/lib/steam-condenser/version.rb +1 -1
- data/lib/steam/community/alien_swarm/alien_swarm_mission.rb +10 -9
- data/lib/steam/community/alien_swarm/alien_swarm_stats.rb +74 -72
- data/lib/steam/community/css/css_map.rb +2 -2
- data/lib/steam/community/css/css_stats.rb +54 -56
- data/lib/steam/community/css/css_weapon.rb +4 -4
- data/lib/steam/community/game_item.rb +2 -3
- data/lib/steam/community/game_leaderboard.rb +22 -15
- data/lib/steam/community/l4d/abstract_l4d_stats.rb +64 -61
- data/lib/steam/community/l4d/l4d2_stats.rb +26 -21
- data/lib/steam/community/steam_id.rb +8 -11
- data/lib/steam/community/web_api.rb +19 -14
- data/lib/steam/packets/s2a_info2_packet.rb +16 -14
- data/lib/steam/packets/s2a_info_detailed_packet.rb +24 -19
- data/lib/steam/packets/steam_packet_factory.rb +7 -2
- data/lib/steam/servers/game_server.rb +3 -2
- data/lib/steam/servers/master_server.rb +1 -1
- data/lib/steam/sockets/source_socket.rb +4 -9
- data/pkg/steam-condenser-1.3.5.gem +0 -0
- data/pkg/steam-condenser-1.3.5/Gemfile +7 -0
- data/pkg/steam-condenser-1.3.5/Gemfile.lock +45 -0
- data/pkg/steam-condenser-1.3.5/LICENSE +25 -0
- data/pkg/steam-condenser-1.3.5/README.md +70 -0
- data/pkg/steam-condenser-1.3.5/Rakefile +46 -0
- data/pkg/steam-condenser-1.3.5/lib/core_ext/stringio.rb +91 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/packet_format_error.rb +13 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/rcon_ban_error.rb +22 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/rcon_no_auth_error.rb +21 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/steam_condenser_error.rb +26 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/timeout_error.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/errors/web_api_error.rb +57 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser.rb +18 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser/community.rb +24 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser/servers.rb +24 -0
- data/pkg/steam-condenser-1.3.5/lib/steam-condenser/version.rb +11 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_mission.rb +119 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_stats.rb +186 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/alien_swarm/alien_swarm_weapon.rb +49 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/app_news.rb +133 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/cacheable.rb +199 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_map.rb +61 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_stats.rb +142 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/css/css_weapon.rb +69 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/defense_grid/defense_grid_stats.rb +238 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_class.rb +90 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_stats.rb +62 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dods/dods_weapon.rb +67 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_beta_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/dota2/dota2_item.rb +33 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_achievement.rb +109 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_class.rb +22 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_inventory.rb +171 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_item.rb +156 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_item_schema.rb +131 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_leaderboard.rb +205 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_leaderboard_entry.rb +43 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_stats.rb +175 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/game_weapon.rb +41 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/abstract_l4d_stats.rb +185 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/abstract_l4d_weapon.rb +56 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_map.rb +90 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_stats.rb +174 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d2_weapon.rb +38 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_explosive.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_map.rb +65 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_stats.rb +73 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/l4d/l4d_weapon.rb +26 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_item.rb +55 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/portal2/portal2_stats.rb +33 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_game.rb +193 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_group.rb +129 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/steam_id.rb +498 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_beta_inventory.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_class.rb +92 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_class_factory.rb +40 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_engineer.rb +43 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_golden_wrench.rb +70 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_inventory.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_item.rb +55 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_medic.rb +35 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_sniper.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_spy.rb +41 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/tf2/tf2_stats.rb +77 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/web_api.rb +130 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/community/xml_data.rb +27 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2m_get_servers_batch2_packet.rb +59 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_info_packet.rb +24 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_player_packet.rb +31 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_rules_packet.rb +32 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/a2s_serverquery_getchallenge_packet.rb +25 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/c2m_checkmd5_packet.rb +31 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2a_server_batch_packet.rb +52 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2c_isvalidmd5_packet.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/m2s_requestrestart_packet.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_auth_request.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_auth_response.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_exec_request.rb +28 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_exec_response.rb +37 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_goldsrc_request.rb +35 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_goldsrc_response.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_packet.rb +57 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_packet_factory.rb +43 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/rcon/rcon_terminator.rb +29 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/request_with_challenge.rb +19 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info2_packet.rb +74 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info_base_packet.rb +25 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_info_detailed_packet.rb +59 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_logstring_packet.rb +30 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_player_packet.rb +44 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2a_rules_packet.rb +48 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2c_challenge_packet.rb +35 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/s2m_heartbeat2_packet.rb +72 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/steam_packet.rb +52 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/packets/steam_packet_factory.rb +108 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/game_server.rb +392 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/goldsrc_server.rb +74 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/master_server.rb +188 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/server.rb +115 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/servers/source_server.rb +117 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/goldsrc_socket.rb +142 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/master_server_socket.rb +34 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/rcon_socket.rb +103 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/source_socket.rb +78 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/sockets/steam_socket.rb +91 -0
- data/pkg/steam-condenser-1.3.5/lib/steam/steam_player.rb +143 -0
- data/pkg/steam-condenser-1.3.5/steam-condenser.gemspec +26 -0
- data/pkg/steam-condenser-1.3.5/test/core_ext/test_stringio.rb +59 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/invalid.xml +2 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/sonofthor.xml +882 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/status_goldsrc +3 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/status_source +3 -0
- data/pkg/steam-condenser-1.3.5/test/fixtures/valve-members.xml +231 -0
- data/pkg/steam-condenser-1.3.5/test/helper.rb +48 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_cacheable.rb +100 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_steam_group.rb +83 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_steam_id.rb +144 -0
- data/pkg/steam-condenser-1.3.5/test/steam/community/test_web_api.rb +98 -0
- data/pkg/steam-condenser-1.3.5/test/steam/packets/test_steam_packet.rb +37 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_game_server.rb +296 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_goldsrc_server.rb +59 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_master_server.rb +131 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_server.rb +72 -0
- data/pkg/steam-condenser-1.3.5/test/steam/servers/test_source_server.rb +134 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_goldsrc_socket.rb +127 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_master_server_socket.rb +42 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_rcon_socket.rb +118 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_source_socket.rb +77 -0
- data/pkg/steam-condenser-1.3.5/test/steam/sockets/test_steam_socket.rb +97 -0
- data/steam-condenser.gemspec +2 -3
- data/test/steam/community/test_cacheable.rb +3 -0
- data/test/steam/community/test_web_api.rb +15 -2
- data/test/steam/packets/test_steam_packet.rb +1 -1
- data/test/steam/sockets/test_source_socket.rb +1 -1
- metadata +151 -27
@@ -0,0 +1,52 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'errors/packet_format_error'
|
7
|
+
require 'steam/packets/steam_packet'
|
8
|
+
|
9
|
+
# This packet class represents a M2A_SERVER_BATCH response replied by a master
|
10
|
+
# server
|
11
|
+
#
|
12
|
+
# It contains a list of IP addresses and ports of game servers matching the
|
13
|
+
# requested criteria.
|
14
|
+
#
|
15
|
+
# @author Sebastian Staudt
|
16
|
+
# @see MasterServer#servers
|
17
|
+
class M2A_SERVER_BATCH_Packet
|
18
|
+
|
19
|
+
include SteamPacket
|
20
|
+
|
21
|
+
# Returns the list of servers returned from the server in this packet
|
22
|
+
#
|
23
|
+
# @return [Array<String>] An array of server addresses (i.e. IP addresses +
|
24
|
+
# port numbers)
|
25
|
+
attr_reader :servers
|
26
|
+
|
27
|
+
# Creates a new M2A_SERVER_BATCH response object based on the given data
|
28
|
+
#
|
29
|
+
# @param [String] data The raw packet data replied from the server
|
30
|
+
# @raise [PacketFormatError] if the packet data is not well formatted
|
31
|
+
def initialize(data)
|
32
|
+
super M2A_SERVER_BATCH_HEADER, data
|
33
|
+
|
34
|
+
unless @content_data.byte == 0x0A
|
35
|
+
raise PacketFormatError, 'Master query response is missing additional 0x0A byte.'
|
36
|
+
end
|
37
|
+
|
38
|
+
@servers = []
|
39
|
+
|
40
|
+
begin
|
41
|
+
first_octet = @content_data.byte
|
42
|
+
second_octet = @content_data.byte
|
43
|
+
third_octet = @content_data.byte
|
44
|
+
fourth_octet = @content_data.byte
|
45
|
+
port_number = @content_data.short
|
46
|
+
port_number = ((port_number & 0xFF) << 8) + (port_number >> 8)
|
47
|
+
|
48
|
+
@servers << "#{first_octet}.#{second_octet}.#{third_octet}.#{fourth_octet}:#{port_number}"
|
49
|
+
end while @content_data.remaining > 0
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/packets/steam_packet'
|
7
|
+
|
8
|
+
# This packet class represents a M2S_ISVALIDMD5 response replied by a master
|
9
|
+
# server
|
10
|
+
#
|
11
|
+
# It is used to provide a challenge number to a game server
|
12
|
+
#
|
13
|
+
# @author Sebastian Staudt
|
14
|
+
# @see MasterServer#challenge
|
15
|
+
class M2C_ISVALIDMD5_Packet
|
16
|
+
|
17
|
+
include SteamPacket
|
18
|
+
|
19
|
+
# Returns the challenge number to use for master server communication
|
20
|
+
#
|
21
|
+
# @return [Fixnum] The challenge number
|
22
|
+
attr_reader :challenge
|
23
|
+
|
24
|
+
# Creates a new M2S_ISVALIDMD5 response object based on the given data
|
25
|
+
#
|
26
|
+
# @param [String] data The raw packet data replied from the server
|
27
|
+
def initialize(data)
|
28
|
+
super M2C_ISVALIDMD5_HEADER, data
|
29
|
+
|
30
|
+
@content_data.byte
|
31
|
+
@challenge = @content_data.long
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/packets/steam_packet'
|
7
|
+
|
8
|
+
# This packet class represent a M2S_REQUESTRESTART response replied from a
|
9
|
+
# master server
|
10
|
+
#
|
11
|
+
# It is used to request a game server restart, e.g. when the server is
|
12
|
+
# outdated.
|
13
|
+
#
|
14
|
+
# @author Sebastian Staudt
|
15
|
+
# @see MasterServer#send_heartbeat
|
16
|
+
class M2S_REQUESTRESTART_Packet
|
17
|
+
|
18
|
+
include SteamPacket
|
19
|
+
|
20
|
+
# Returns the challenge number used for master server communication
|
21
|
+
#
|
22
|
+
# @return [Fixnum] The challenge number
|
23
|
+
attr_reader :challenge
|
24
|
+
|
25
|
+
# Creates a new M2S_REQUESTRESTART response object based on the given data
|
26
|
+
#
|
27
|
+
# @param [String] data The raw packet data replied from the server
|
28
|
+
def initialize(data)
|
29
|
+
super M2S_REQUESTRESTART_HEADER, data
|
30
|
+
|
31
|
+
@challenge = @content_data.long
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/packets/rcon/rcon_packet'
|
7
|
+
|
8
|
+
# This packet class represents a SERVERDATA_AUTH request sent to a Source
|
9
|
+
# server
|
10
|
+
#
|
11
|
+
# It is used to authenticate the client for RCON communication.
|
12
|
+
#
|
13
|
+
# @author Sebastian Staudt
|
14
|
+
# @see SourceServer#rcon_auth
|
15
|
+
class RCONAuthRequest
|
16
|
+
|
17
|
+
include RCONPacket
|
18
|
+
|
19
|
+
# Creates a RCON authentication request for the given request ID and RCON
|
20
|
+
# password
|
21
|
+
#
|
22
|
+
# @param [Fixnum] request_id The request ID of the RCON connection
|
23
|
+
# @param [String] rcon_password The RCON password of the server
|
24
|
+
def initialize(request_id, rcon_password)
|
25
|
+
super request_id, SERVERDATA_AUTH, rcon_password
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/packets/rcon/rcon_packet'
|
7
|
+
|
8
|
+
# This packet class represents a SERVERDATA_AUTH_RESPONSE packet sent by a
|
9
|
+
# Source server
|
10
|
+
#
|
11
|
+
# It is used to indicate the success or failure of an authentication attempt
|
12
|
+
# of a client for RCON communication.
|
13
|
+
#
|
14
|
+
# @author Sebastian Staudt
|
15
|
+
# @see SourceServer#rcon_auth
|
16
|
+
class RCONAuthResponse
|
17
|
+
|
18
|
+
include RCONPacket
|
19
|
+
|
20
|
+
# Creates a RCON authentication response for the given request ID
|
21
|
+
#
|
22
|
+
# The request ID of the packet will match the client's request if
|
23
|
+
# authentication was successful
|
24
|
+
#
|
25
|
+
# @param [Fixnum] request_id The request ID of the RCON connection
|
26
|
+
def initialize(request_id)
|
27
|
+
super request_id, SERVERDATA_AUTH_RESPONSE, ''
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/packets/rcon/rcon_packet'
|
7
|
+
|
8
|
+
# This packet class represents a SERVERDATA_EXECCOMMAND packet sent to a
|
9
|
+
# Source server
|
10
|
+
#
|
11
|
+
# It is used to request a command execution on the server.
|
12
|
+
#
|
13
|
+
# @author Sebastian Staudt
|
14
|
+
# @see SourceServer#rcon_exec
|
15
|
+
class RCONExecRequest
|
16
|
+
|
17
|
+
include RCONPacket
|
18
|
+
|
19
|
+
# Creates a RCON command execution request for the given request ID and
|
20
|
+
# command
|
21
|
+
#
|
22
|
+
# @param [Fixnum] request_id The request ID of the RCON connection
|
23
|
+
# @param [String] rcon_command The command to execute on the server
|
24
|
+
def initialize(request_id, rcon_command)
|
25
|
+
super request_id, SERVERDATA_EXECCOMMAND, rcon_command
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/packets/rcon/rcon_packet'
|
7
|
+
|
8
|
+
# This packet class represents a SERVERDATA_RESPONSE_VALUE packet sent by a
|
9
|
+
# Source server
|
10
|
+
#
|
11
|
+
# It is used to transport the output of a command from the server to the client
|
12
|
+
# which requested the command execution.
|
13
|
+
#
|
14
|
+
# @author Sebastian Staudt
|
15
|
+
# @see SourceServer#rcon_exec
|
16
|
+
class RCONExecResponse
|
17
|
+
|
18
|
+
include RCONPacket
|
19
|
+
|
20
|
+
# Creates a RCON command response for the given request ID and command
|
21
|
+
# output
|
22
|
+
#
|
23
|
+
# @param [Fixnum] request_id The request ID of the RCON connection
|
24
|
+
# @param [String] command_response The output of the command executed on the
|
25
|
+
# server
|
26
|
+
def initialize(request_id, command_response)
|
27
|
+
super request_id, SERVERDATA_RESPONSE_VALUE, command_response
|
28
|
+
end
|
29
|
+
|
30
|
+
# Returns the output of the command execution
|
31
|
+
#
|
32
|
+
# @return [String] The output of the command
|
33
|
+
def response
|
34
|
+
@content_data.string[0..-3]
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/packets/steam_packet'
|
7
|
+
|
8
|
+
# This packet class represents a RCON request packet sent to a GoldSrc server
|
9
|
+
#
|
10
|
+
# It is used to request a command execution on the server.
|
11
|
+
#
|
12
|
+
# @author Sebastian Staudt
|
13
|
+
# @see GoldSrcServer#rcon_exec
|
14
|
+
class RCONGoldSrcRequest
|
15
|
+
|
16
|
+
include SteamPacket
|
17
|
+
|
18
|
+
# Creates a request for the given request string
|
19
|
+
#
|
20
|
+
# The request string has the form `rcon {challenge number} {RCON password}
|
21
|
+
# {command}`.
|
22
|
+
#
|
23
|
+
# @param [String] request The request string to send to the server
|
24
|
+
def initialize(request)
|
25
|
+
super 0x00, request
|
26
|
+
end
|
27
|
+
|
28
|
+
# Returns the raw data representing this packet
|
29
|
+
#
|
30
|
+
# @return [String] A string containing the raw data of this request packet
|
31
|
+
def to_s
|
32
|
+
[0xFFFFFFFF, @content_data.string].pack('Va*')
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/packets/steam_packet'
|
7
|
+
|
8
|
+
# This packet class represents a RCON response packet sent by a GoldSrc server
|
9
|
+
#
|
10
|
+
# It is used to transport the output of a command from the server to the client
|
11
|
+
# which requested the command execution.
|
12
|
+
#
|
13
|
+
# @author Sebastian Staudt
|
14
|
+
# @see GoldSrcServer#rcon_exec
|
15
|
+
class RCONGoldSrcResponse
|
16
|
+
|
17
|
+
include SteamPacket
|
18
|
+
|
19
|
+
# Creates a RCON command response for the given command output
|
20
|
+
#
|
21
|
+
# @param [String] command_response The output of the command executed on the
|
22
|
+
# server
|
23
|
+
def initialize(command_response)
|
24
|
+
super RCON_GOLDSRC_RESPONSE_HEADER, command_response
|
25
|
+
end
|
26
|
+
|
27
|
+
# Returns the output of the command execution
|
28
|
+
#
|
29
|
+
# @return [String] The output of the command
|
30
|
+
def response
|
31
|
+
@content_data.string[0..-3]
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/packets/steam_packet'
|
7
|
+
|
8
|
+
# This module is included by all classes representing a packet used by Source's
|
9
|
+
# RCON protocol
|
10
|
+
#
|
11
|
+
# It provides a basic implementation for initializing and serializing such a
|
12
|
+
# packet.
|
13
|
+
#
|
14
|
+
# @author Sebastian Staudt
|
15
|
+
# @see RCONPacketFactory
|
16
|
+
module RCONPacket
|
17
|
+
|
18
|
+
include SteamPacket
|
19
|
+
|
20
|
+
# Header for authentication requests
|
21
|
+
SERVERDATA_AUTH = 3
|
22
|
+
|
23
|
+
# Header for replies to authentication attempts
|
24
|
+
SERVERDATA_AUTH_RESPONSE = 2
|
25
|
+
|
26
|
+
# Header for command execution requests
|
27
|
+
SERVERDATA_EXECCOMMAND = 2
|
28
|
+
|
29
|
+
# Header for packets with the output of a command execution
|
30
|
+
SERVERDATA_RESPONSE_VALUE = 0
|
31
|
+
|
32
|
+
# Returns the request ID used to identify the RCON communication
|
33
|
+
#
|
34
|
+
# @return [Fixnum] The request ID used to identify the RCON communication
|
35
|
+
attr_reader :request_id
|
36
|
+
|
37
|
+
# Creates a new RCON packet object with the given request ID, type and
|
38
|
+
# content data
|
39
|
+
#
|
40
|
+
# @param [Fixnum] request_id The request ID for the current RCON
|
41
|
+
# communication
|
42
|
+
# @param [Fixnum] rcon_header The header for the packet type
|
43
|
+
# @param [String] rcon_data The raw packet data
|
44
|
+
def initialize(request_id, rcon_header, rcon_data)
|
45
|
+
super rcon_header, "#{rcon_data}\0\0"
|
46
|
+
|
47
|
+
@request_id = request_id
|
48
|
+
end
|
49
|
+
|
50
|
+
# Returns the raw data representing this packet
|
51
|
+
#
|
52
|
+
# @return [String] A string containing the raw data of this RCON packet
|
53
|
+
def to_s
|
54
|
+
[@content_data.length + 8, @request_id, @header_data, @content_data.string].pack('V3a*')
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2008-2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'core_ext/stringio'
|
7
|
+
require 'errors/packet_format_error'
|
8
|
+
require 'steam/packets/steam_packet_factory'
|
9
|
+
require 'steam/packets/rcon/rcon_auth_response'
|
10
|
+
require 'steam/packets/rcon/rcon_exec_response'
|
11
|
+
|
12
|
+
# This module provides functionality to handle raw packet data for Source RCON
|
13
|
+
#
|
14
|
+
# It's is used to transform data bytes into packet objects for RCON
|
15
|
+
# communication with Source servers.
|
16
|
+
#
|
17
|
+
# @author Sebastian Staudt
|
18
|
+
# @see RCONPacket
|
19
|
+
module RCONPacketFactory
|
20
|
+
|
21
|
+
# Creates a new packet object based on the header byte of the given raw data
|
22
|
+
#
|
23
|
+
# @param [String] raw_data The raw data of the packet
|
24
|
+
# @raise [PacketFormatError] if the packet header is not recognized
|
25
|
+
# @return [RCONPacket] The packet object generated from the packet data
|
26
|
+
def self.packet_from_data(raw_data)
|
27
|
+
byte_buffer = StringIO.new raw_data
|
28
|
+
|
29
|
+
request_id = byte_buffer.long
|
30
|
+
header = byte_buffer.long
|
31
|
+
data = byte_buffer.cstring
|
32
|
+
|
33
|
+
case header
|
34
|
+
when RCONPacket::SERVERDATA_AUTH_RESPONSE then
|
35
|
+
return RCONAuthResponse.new(request_id)
|
36
|
+
when RCONPacket::SERVERDATA_RESPONSE_VALUE then
|
37
|
+
return RCONExecResponse.new(request_id, data)
|
38
|
+
else
|
39
|
+
raise PacketFormatError, "Unknown packet with header #{header.to_s(16)} received."
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# This code is free software; you can redistribute it and/or modify it under
|
2
|
+
# the terms of the new BSD License.
|
3
|
+
#
|
4
|
+
# Copyright (c) 2011, Sebastian Staudt
|
5
|
+
|
6
|
+
require 'steam/packets/rcon/rcon_packet'
|
7
|
+
|
8
|
+
# This packet class represents a special SERVERDATA_RESPONSE_VALUE packet which
|
9
|
+
# is sent to the server
|
10
|
+
#
|
11
|
+
# It is used to determine the end of a RCON response from Source servers.
|
12
|
+
# Packets of this type are sent after the actual RCON command and the empty
|
13
|
+
# response packet from the server will indicate the end of the response.
|
14
|
+
#
|
15
|
+
# @author Sebastian Staudt
|
16
|
+
# @see SourceServer#rcon_exec
|
17
|
+
class RCONTerminator
|
18
|
+
|
19
|
+
include RCONPacket
|
20
|
+
|
21
|
+
# Creates a new RCON terminator packet instance for the given request ID
|
22
|
+
#
|
23
|
+
# @param [Fixnum] request_id The request ID for the current RCON
|
24
|
+
# communication
|
25
|
+
def initialize(request_id)
|
26
|
+
super request_id, SERVERDATA_RESPONSE_VALUE, nil
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|