Bug 99060 - JJ: Plugin to pipe incoming/outcoming messages through outside program/script
Summary: JJ: Plugin to pipe incoming/outcoming messages through outside program/script
Status: RESOLVED FIXED
Alias: None
Product: kopete
Classification: Applications
Component: New plugin wishes (show other bugs)
Version: unspecified
Platform: Debian testing Linux
: LO wishlist
Target Milestone: ---
Assignee: Charles Connell
URL:
Keywords:
: 119181 (view as bug list)
Depends on:
Blocks:
 
Reported: 2005-02-10 22:01 UTC by Chusslove Illich
Modified: 2008-01-18 22:48 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Chusslove Illich 2005-02-10 22:01:21 UTC
Version:            (using KDE KDE 3.3.2)
Installed from:    Debian testing/unstable Packages

This one is a classic, can be used for whatever purpose. I myself currently need it to do some automatic latin/cyrillic transliterations.
Comment 1 Jason Keirstead 2005-02-10 22:31:36 UTC
You can do this with KNotify already, to an extent.

Settings -> Configure Notifications -> More Options. Click the 'Whats This' icon and then click the input box beside 'Execute a program'. The '%s' field in Kopete contains the message data.

Note that this doesn't have RTF and other fancy things.
Comment 2 Olivier Goffart 2005-02-11 09:48:29 UTC
There were a perl plugin at a time.
But i think it has been removed because it was not maintained anymore.
There is also a javascript wich is in a lapha state (in kdenonbeta i think)
Comment 3 Chusslove Illich 2005-02-11 11:09:59 UTC
This thing with KNotify either doesn't work, or I am doing something wrong :) First, %s is the notification text (eg. "Outgoing message sent"), not the message being sent, and second, the stdout of the external program has nothing to do with Kopete.
Comment 4 Jason Keirstead 2005-02-11 13:24:40 UTC
Oh I see.... I misunderstood the bug. You can use KNotify to get data *out* of Kopete, but no, it won't let you send results back into it.

You want a way to pipe a message through an external process to modify it before it gets to the chat window.

This could be done very, very easily, by outputting the XML format of the message to a program's stdin via KProcIO, and reading in the XML format of the new message from the program's stdout. Since we now have an XSD for the message (see http://kopete.kde.org/files/kopetemessage.xsd), we can verify the result and if valid, walk the DOM tree and replace the message attributes  where different. If it is invalid, you do nothing (well, maybe error to the user somehow that their script is not valid. Maybe the config dialog where you specify these scripts has a test XML to run on them with a 'Validate' button).

I am going to mark this as a JJ, since I basically just described above exactly how to write it.


Comment 5 Chusslove Illich 2005-02-11 13:40:05 UTC
> This could be done very, very easily [...]

I was kind of hoping it was like that...

> I am going to mark this as a JJ, since I basically just described above
> exactly how to write it.

Thanks :)
Comment 6 Will Stephenson 2006-11-05 23:22:39 UTC
*** Bug 119181 has been marked as a duplicate of this bug. ***
Comment 7 thomas 2007-06-05 22:15:18 UTC
I would like to see a plugin that for example when you tipe /command it exectes a certain script you assigned to it. This would be very nice, take for instance the example of Konversation, the IRC client, it has a very nice way to integrate external scrips. It executes the sript and posts the output, thats what I nead at least.

And I already know :

Will Stephenson 2006-11-05 23:22: " While you are just as individual and special to us as all the other Kopete users, your suggestion is not :). "

It's just a suggestion, I can't figure out anything that's been said in the previous posts.
 
Comment 8 Charles Connell 2007-11-05 02:48:53 UTC
I will attempt to implement this plugin. A quick question for Jason: I have to assemble the message into XML myself, right? (I know that's probably yes, but it can't hurt to ask).
Comment 9 Sebastian Sauer 2007-11-06 03:39:08 UTC
The scripting plugin http://websvn.kde.org/trunk/extragear/network/kopete-scripting/ for Kopete on KDE4 does allow this.
Comment 10 Charles Connell 2007-11-11 03:44:06 UTC
Sebastian: No, it doesn't quite do the same thing. It allows one to write a script specifically for your plugin which can intercept messages. A pipe mechanism (as I'm sure you're aware) is more generic, and can allow for the use of any program (or script) in the pipe. As a Linux program, it only makes sense to support pipes, and not require special scripts, so that any executable prog/script that can understand XML can be used.
Comment 11 Sebastian Sauer 2007-11-11 05:45:39 UTC
Charles; well, if you add a script that contains only following both lines;

def messageReceived(message):
  message.setPlainBody("RECEIVED %s" % message.plainBody())

then a receiving message could be easy manipulated. If there is a desire to have it more generic, then probably something like;

  from subprocess import *
  p = Popen(['tr','T','B'],bufsize=1024,stdin=PIPE,stdout=PIPE,close_fds=True)
  p.stdin.write("Test")
  p.stdin.close()
  print p.stdout.read()

can be used to redirect it to an external prog. But reading it again, is it about manipulating the xml/xhtml/html displayed in the khtmlpart?
Comment 12 Charles Connell 2007-12-07 03:38:54 UTC
An unreviewed version of this plugin is now available at http://websvn.kde.org/trunk/playground/network/kopete/plugins/pipes/. I won't close the bug until it gets moved to extragear or trunk, which won't happen until we unfreeze.
Comment 13 Charles Connell 2008-01-18 22:48:52 UTC
This is now in trunk. Closing bug.