Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a bind type for incoming messages #924

Open
Pixelz opened this issue Jan 28, 2020 · 1 comment
Open

Add a bind type for incoming messages #924

Pixelz opened this issue Jan 28, 2020 · 1 comment

Comments

@Pixelz
Copy link
Collaborator

Pixelz commented Jan 28, 2020

Add a bind for incoming messages that gets triggered before any kind of processing happens. Basically the reverse of BIND OUT. If text is returned from the proc, Eggdrop will continue with normal processing of the line. If the proc returns 1 Eggdrop will halt processing.

Along with this, a new command should be added to trigger Eggdrop processing of a line that you feed it I call it "sendinc" below for lack of a better idea. A line sent to Eggdrop this way should also trigger the bind to ensure compatibility between different scripts.

The usefulness of this is that Eggdrop would be able to support any arbitrary line-based prococol (even ones with multiple lines per message). Scripts could be written to allow Eggdrop to connect to XMPP, Discord, weird IRCds etc.

bind inc <flags> <mask> <proc>
procname <line>

sendinc <text>

Example pseudocode:

bind inc - "*" myIncoming
proc myIncoming {line} {
	if {$line == "good"} {
		return $line
	} else {
		return 1
}
@michaelortmann
Copy link
Member

sounds like you could have this already.
in your tcl connect to the weird service, read line by line, feed to your myIncoming()
also in your tcl open an incomming port, allow it to to an IRC handshake as if your script were an irc server, and then ping+pong and return your new lines to this port.
let eggdrop connect to your port.
what do you think?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants