/* This file is part of the KDE project Copyright (C) 1998, 1999 David Faure This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #define RING_WAIT 30 #define MAX_DLG_LIFE RING_WAIT /* so that the dialog lasts exactly the time of an announce */ class TimeoutDialog : public TQMessageBox { public: TimeoutDialog (int timeout_ms, const TQString& caption, const TQString &text, Icon icon, int button0, int button1, int button2, TQWidget *parent=0, const char *name=0, bool modal=TRUE, WFlags f=WStyle_DialogBorder ): TQMessageBox (caption, text, icon, button0, button1, button2, parent, name, modal, f) {startTimer (timeout_ms);} ~TimeoutDialog () {TQT_TQOBJECT(this)->killTimers ();} virtual void timerEvent (TQTimerEvent *) {TQT_TQOBJECT(this)->killTimers (); done (Rejected);} }; static KCmdLineOptions option[] = { { "+user@host", I18N_NOOP("Caller identification"), 0 }, { "+[callee]", I18N_NOOP("Name of the callee, if he doesn't exist on this system (we're taking his call)"), 0 }, KCmdLineLastOption }; static const char description[] = I18N_NOOP("Dialog box for incoming talk requests"); static const char version[] = "v1.5.2"; int main (int argc, char **argv) { KCmdLineArgs::init(argc, argv, "ktalkdlg", description, version ); KCmdLineArgs::addCmdLineOptions( option ); KLocale::setMainCatalogue( "kcmktalkd" ); KApplication a; struct timeval clock; struct timezone zone; gettimeofday (&clock, &zone); struct tm *localclock = localtime ((const time_t *) &clock.tv_sec); KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); if (args->count() == 0) KCmdLineArgs::usage(i18n("'user@host' expected.")); TQString s; s.sprintf ("%d:%02d", localclock->tm_hour, localclock->tm_min); s = i18n ("Message from talk demon at ") + s + " ...\n" + i18n ("Talk connection requested by ") + args->arg(0); if ( args->count() == 2 ) { s += '\n'; TQString callee = args->arg(1); s += i18n ("for user %1").arg( callee.isEmpty() ? i18n("") : callee ); } s += "."; TimeoutDialog dialog (MAX_DLG_LIFE * 1000, i18n ("Talk requested..."), s, TQMessageBox::Information, TQMessageBox::Yes | TQMessageBox::Default, TQMessageBox::No | TQMessageBox::Escape, 0 ); dialog.setButtonText( TQMessageBox::Yes, i18n ("Respond") ); dialog.setButtonText( TQMessageBox::No, i18n ("Ignore") ); a.setTopWidget (&dialog); // don't erase this! - ktalkd waits for it! printf("#\n"); fflush(stdout); KConfig *cfg = new KConfig ( "ktalkannouncerc" ); cfg->setGroup ("ktalkannounce"); bool bSound = cfg->readNumEntry ("Sound", 0); if (bSound) { TQString soundFile = cfg->readPathEntry ("SoundFile"); if (soundFile[0] != '/') soundFile = locate( "sound", soundFile ); if (!soundFile.isEmpty ()) { KAudioPlayer::play (soundFile); } } //if (!audio) a.beep (); // If no audio is played (whatever reason), beep! int result = dialog.exec (); if (result == TQMessageBox::Yes) { TQT_TQOBJECT(&dialog)->killTimers (); kdDebug() << "Running talk client..." << endl; TQString konsole = locate("exe", "konsole"); TQString konsole_dir = konsole; konsole_dir.truncate( konsole.findRev('/') ); setenv("KDEBINDIR", TQFile::encodeName(konsole_dir).data(), 0/*don't overwrite*/); TQString cmd0 = cfg->readPathEntry ("talkprg", konsole + " -e talk"); TQString cmd = cmd0.stripWhiteSpace(); cmd += " '"; cmd += args->arg(0); cmd += "' &"; kdDebug() << cmd << endl; // Open /dev/null for stdin, stdout and stderr: int fd=open("/dev/null", O_RDWR); for (int i = 0; i <= 2; i++) { dup2(fd, i); } /* XXX: The sender's name or hostname may contain `rm -rf .` * That's why it's bad to use system() */ system (TQFile::encodeName(cmd)); kapp->quit(); } return 0; }