-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
165 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
# import jaraco.logging | ||
# import irc.client | ||
|
||
# links = None | ||
|
||
|
||
""" | ||
class IRCCat(irc.client.SimpleIRCClient): | ||
def __init__(self, target): | ||
irc.client.SimpleIRCClient.__init__(self) | ||
self.target = target | ||
def on_welcome(self, connection, event): | ||
if irc.client.is_channel(self.target): | ||
connection.join(self.target) | ||
else: | ||
self.send_it() | ||
def on_join(self, connection, event): | ||
self.send_it() | ||
def on_disconnect(self, connection, event): | ||
sys.exit(0) | ||
def send_it(self): | ||
while 1: | ||
line = sys.stdin.readline().strip() | ||
if not line: | ||
break | ||
self.connection.privmsg(self.target, line) | ||
self.connection.quit("Using irc.client.py") | ||
def on_connect(connection, event): | ||
sys.stdout.write("\nGetting links...") | ||
sys.stdout.flush() | ||
connection.links() | ||
def on_passwdmismatch(connection, event): | ||
print("Password required.") | ||
sys.exit(1) | ||
def on_links(connection, event): | ||
global links | ||
links.append((event.arguments[0], event.arguments[1], event.arguments[2])) | ||
def on_endoflinks(connection, event): | ||
global links | ||
print("\n") | ||
m = {} | ||
for (to_node, from_node, desc) in links: | ||
if from_node != to_node: | ||
m[from_node] = m.get(from_node, []) + [to_node] | ||
if connection.get_server_name() in m: | ||
if len(m[connection.get_server_name()]) == 1: | ||
hubs = len(m) - 1 | ||
else: | ||
hubs = len(m) | ||
else: | ||
hubs = 0 | ||
print( | ||
"%d servers (%d leaves and %d hubs)\n" % (len(links), len(links) - hubs, hubs) | ||
) | ||
print_tree(0, [], connection.get_server_name(), m) | ||
connection.quit("Using irc.client.py") | ||
def on_disconnect(connection, event): | ||
sys.exit(0) | ||
def indent_string(level, active_levels, last): | ||
if level == 0: | ||
return "" | ||
s = "" | ||
for i in range(level - 1): | ||
if i in active_levels: | ||
s = s + "| " | ||
else: | ||
s = s + " " | ||
if last: | ||
s = s + "`-" | ||
else: | ||
s = s + "|-" | ||
return s | ||
def print_tree(level, active_levels, root, map, last=0): | ||
sys.stdout.write(indent_string(level, active_levels, last) + root + "\n") | ||
if root in map: | ||
list = map[root] | ||
for r in list[:-1]: | ||
print_tree(level + 1, active_levels[:] + [level], r, map) | ||
print_tree(level + 1, active_levels[:], list[-1], map, 1) | ||
def get_args(): | ||
parser = argparse.ArgumentParser() | ||
parser.add_argument('server') | ||
parser.add_argument('nickname') | ||
parser.add_argument('-p', '--port', default=6667, type=int) | ||
jaraco.logging.add_arguments(parser) | ||
return parser.parse_args() | ||
def servermap(self): | ||
global links | ||
args = get_args() | ||
jaraco.logging.setup(args) | ||
links = [] | ||
reactor = irc.client.Reactor() | ||
sys.stdout.write("Connecting to server...") | ||
sys.stdout.flush() | ||
try: | ||
c = reactor.server().connect(args.server, args.port, args.nickname) | ||
except irc.client.ServerConnectionError as x: | ||
print(x) | ||
sys.exit(1) | ||
c.add_global_handler("welcome", on_connect) | ||
c.add_global_handler("passwdmismatch", on_passwdmismatch) | ||
c.add_global_handler("links", on_links) | ||
c.add_global_handler("endoflinks", on_endoflinks) | ||
c.add_global_handler("disconnect", on_disconnect) | ||
reactor.process_forever() | ||
def main(): | ||
s = sys.argv[1].split(":", 1) | ||
server = s[0] | ||
if len(s) == 2: | ||
try: | ||
port = int(s[1]) | ||
except ValueError: | ||
print("Error: Erroneous port.") | ||
sys.exit(1) | ||
else: | ||
port = 6667 | ||
nickname = sys.argv[2] | ||
target = sys.argv[3] | ||
c = IRCCat(target) | ||
try: | ||
c.connect(server, port, nickname) | ||
except irc.client.ServerConnectionError as x: | ||
print(x) | ||
sys.exit(1) | ||
c.start() | ||
""" |
Submodule data
updated
6 files