1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
require "http/client"
require "json"
require "pretty_print"
require "xml"
require "inotify"
home = Path["~/"].expand.to_s
access_token = File.read( home + ".config/twitch/access_token" ).chomp
client_id = File.read( home + ".config/twitch/client_id" ).chomp
channel = File.read( home + ".config/twitch/channel" ).chomp
channel_id = File.read( home + ".config/twitch/channel_id" ).chomp
voices = Hash(String, String).new
File.each_line( home + "voicelist" ) do |line|
voices[ line.downcase ] = line
end
#FIXME: cache twitch results
def twitch_name_to_uid( client_id, name )
twitchclient = HTTP::Client.new( "api.twitch.tv", port = 443, tls = true )
response = twitchclient.exec( "GET", "/helix/users?login=" + name, headers: HTTP::Headers{ "Client-ID" => client_id } )
puts response.status_code
json = JSON.parse( response.body )
uid = json["data"][0]["id"].to_s.match(/[0-9]+/).not_nil![0]
twitchclient.close
return uid
end
def twitch_uid_to_name( client_id, uid )
client = HTTP::Client.new( "api.twitch.tv", port = 443, tls = true )
response = client.exec( "GET", "/helix/users?id=" + uid, headers: HTTP::Headers{ "Client-ID" => client_id } )
puts response.status_code
json = JSON.parse( response.body )
name = json["data"][0]["login"].to_s.match(/[a-z0-9_]+/).not_nil![0]
client.close
return name
end
def twitch_v5_channel( client_id, uid )
client = HTTP::Client.new( "api.twitch.tv", port = 443, tls = true )
response = client.exec( "GET", "/kraken/channels?id=" + uid, headers: HTTP::Headers{ "Client-ID" => client_id, "Accept" => "application/vnd.twitchtv.v5+json" } )
puts response.status_code
json = JSON.parse( response.body )
client.close
ctime = json["channels"][0]["created_at"].to_s.match( /\d{4}-\d{2}-\d{2}/ ).not_nil![0]
return ctime
end
def commanderroot_changelog( uid )
client = HTTP::Client.new( "twitch-tools.rootonline.de", port = 443, tls = true )
response = client.exec( "GET", "/username_changelogs_search.php?q=" + uid )
client.close
puts response.status_code
document = XML.parse_html( response.body )
rows = document.xpath_nodes( "/html/body/div/table/tbody/tr" )
text = Array(String).new
rows.each do |row|
text.push( row.first_element_child.not_nil!.next_element.not_nil!.inner_text.chomp(" ").match(/[0-9a-z_]+/).not_nil![0] + " " + row.first_element_child.not_nil!.next_element.not_nil!.next_element.not_nil!.next_element.not_nil!.inner_text.chomp(" ").match(/\d{4}-\d{2}-\d{2}/).not_nil![0] )
end
text.reverse!
return text
end
log = File.open(home + "irclogs/twitch/#" + channel + ".log".to_s)
log.seek(log.size)
watcher = Inotify.watch(home + "irclogs/twitch/#" + channel + ".log".to_s) do | event |
if event.type.to_s == "MODIFY"
log.read_string( log.size - log.pos ).each_line do | string |
# FIXME: support old names? might get confusing with e.g. reverse5612
match = string.match(/^[0-9][0-9]:[0-9][0-9] <.([a-z0-9_]+)> !([a-z]+) ([a-zA-Z0-9_-]+)/) || next
if match[2] == "name"
begin
puts match[3]
arg = match[3]
if arg =~ /^[0-9]+$/
user_id = arg
name = twitch_uid_to_name( client_id, user_id ).to_s
else
name = arg
user_id = twitch_name_to_uid( client_id, name ).to_s
end
# FIXME: more specific exception handling
pp user_id
pp name
user_ctime = twitch_v5_channel( client_id, user_id )
history = commanderroot_changelog( user_id )
history.unshift( user_ctime )
history.unshift( user_id )
history.push( name )
puts history.join(" ")
sock = Socket.unix
sock.connect Socket::UNIXAddress.new( home + ".irssi/twitch-socket".to_s )
sock.puts( "#bungmonkey | " + history.join( " " ) )
sock.close
rescue
sock = Socket.unix
sock.connect Socket::UNIXAddress.new( home + ".irssi/twitch-socket".to_s )
sock.puts( "#bungmonkey | An error occurred" )
sock.close
end
end
if match[2] == "voice"
chatuser = match[1]
voice = match[3].downcase
if voices.has_key?( voice )
csvoice = voices[voice]
dir = home + ".cache/twitchtools/users/" + chatuser
File.directory?( dir ) || Dir.mkdir( dir )
File.write( dir + "/voice", csvoice )
pp dir
pp File.read( dir + "/voice" )
# TODO: make separate script to print streamelements URLs to client machine
end
end
end
end
end
sleep 300.seconds
watcher.close
log.close
|