@ -20,6 +20,8 @@
# include <stdlib.h>
# include <stdlib.h>
# include <assert.h>
# include <assert.h>
# include <sys/types.h>
# include <pwd.h>
# include <tqcheckbox.h>
# include <tqcheckbox.h>
# include <tqlayout.h>
# include <tqlayout.h>
@ -49,31 +51,42 @@
# include <kdialogbase.h>
# include <kdialogbase.h>
# include <kaction.h>
# include <kaction.h>
# include <knotifydialog.h>
# include <knotifydialog.h>
# include <libtdeldap.h>
# include "toplevel.h"
# include "toplevel.h"
# include "toplevel.moc"
# include "toplevel.moc"
TopLevel : : TopLevel ( ) : KSystemTray ( )
TopLevel : : TopLevel ( ) : KSystemTray ( ) , ticketWatch ( 0 )
{
{
setBackgroundMode ( X11ParentRelative ) ; // what for?
setBackgroundMode ( X11ParentRelative ) ; // what for?
KConfig * config = kapp - > config ( ) ;
KConfig * config = kapp - > config ( ) ;
config - > setGroup ( " Kerberos " ) ;
config - > setGroup ( " Kerberos " ) ;
confAct = new KAction ( i18n ( " &Configure... " ) , " configure " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( config ( ) ) , actionCollection ( ) , " configure " ) ;
getNewTGTAct = new KAction ( i18n ( " &Obtain New Ticket Granting Ticket " ) , " add_user " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( getNewTGT ( ) ) , actionCollection ( ) , " getnewtgt " ) ;
getNewSTAct = new KAction ( i18n ( " &Obtain New Primary Service Ticket " ) , " add_user " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( getNewServiceTicket ( ) ) , actionCollection ( ) , " getnewserviceticket " ) ;
destroyAllAct = new KAction ( i18n ( " &Destroy All Tickets " ) , " delete_user " , 0 , TQT_TQOBJECT ( this ) , TQT_SLOT ( destroyAllTickets ( ) ) , actionCollection ( ) , " destroyall " ) ;
// confAct = new KAction(i18n("&Configure..."), "configure", 0, TQT_TQOBJECT(this), TQT_SLOT(config()), actionCollection(), "configure");
// create app menu (displayed on right-click)
// create app menu (displayed on right-click)
menu = new TQPopupMenu ( ) ;
menu = new TQPopupMenu ( ) ;
menu - > setCheckable ( true ) ;
connect ( menu , TQT_SIGNAL ( activated ( int ) ) , this , TQT_SLOT ( menuAction ( int ) ) ) ;
connect ( menu , TQT_SIGNAL ( activated ( int ) ) , this , TQT_SLOT ( teaSelected ( int ) ) ) ;
KHelpMenu * help = new KHelpMenu ( this , KGlobal : : instance ( ) - > aboutData ( ) , false ) ;
KHelpMenu * help = new KHelpMenu ( this , KGlobal : : instance ( ) - > aboutData ( ) , false ) ;
KPopupMenu * helpMnu = help - > menu ( ) ;
KPopupMenu * helpMnu = help - > menu ( ) ;
menu - > insertSeparator ( ) ;
menu - > insertSeparator ( ) ;
confAct - > plug ( menu ) ;
getNewTGTAct - > plug ( menu ) ;
getNewSTAct - > plug ( menu ) ;
destroyAllAct - > plug ( menu ) ;
menu - > insertSeparator ( ) ;
// confAct->plug(menu);
menu - > insertItem ( SmallIcon ( " help " ) , i18n ( " &Help " ) , helpMnu ) ;
menu - > insertItem ( SmallIcon ( " help " ) , i18n ( " &Help " ) , helpMnu ) ;
menu - > insertItem ( SmallIcon ( " exit " ) , i18n ( " Quit " ) , kapp , TQT_SLOT ( quit ( ) ) ) ;
menu - > insertItem ( SmallIcon ( " exit " ) , i18n ( " Quit " ) , kapp , TQT_SLOT ( quit ( ) ) ) ;
// RAJA FIXME
// Should be on a timer or something
updateTicketList ( ) ;
}
}
/* slot: signal shutDown() from KApplication */
/* slot: signal shutDown() from KApplication */
@ -89,25 +102,130 @@ void TopLevel::queryExit()
/** Destructor */
/** Destructor */
TopLevel : : ~ TopLevel ( )
TopLevel : : ~ TopLevel ( )
{
{
if ( ticketWatch ) delete ticketWatch ;
delete menu ;
delete menu ;
// FIXME: must delete more (like all the TQWidgets in config-window)?
// FIXME: must delete more (like all the TQWidgets in config-window)?
}
}
void TopLevel : : updateTicketList ( ) {
m_ticketList = LDAPManager : : getKerberosTicketList ( TQString : : null , & m_ticketFile ) ;
m_ticketFile . replace ( " FILE: " , " " ) ;
printf ( " [RAJA DEBUG 980.0] Got ticket cache %s \n \r " , m_ticketFile . ascii ( ) ) ; fflush ( stdout ) ;
if ( ! ticketWatch ) {
ticketWatch = new KDirWatch ( ) ;
connect ( ticketWatch , TQT_SIGNAL ( dirty ( const TQString & ) ) , this , TQT_SLOT ( updateTicketList ( ) ) ) ;
connect ( ticketWatch , TQT_SIGNAL ( created ( const TQString & ) ) , this , TQT_SLOT ( updateTicketList ( ) ) ) ;
connect ( ticketWatch , TQT_SIGNAL ( deleted ( const TQString & ) ) , this , TQT_SLOT ( updateTicketList ( ) ) ) ;
ticketWatch - > addFile ( m_ticketFile ) ;
ticketWatch - > startScan ( ) ;
}
else {
ticketWatch - > removeFile ( m_ticketFile ) ;
ticketWatch - > addFile ( m_ticketFile ) ;
ticketWatch - > startScan ( ) ;
}
// RAJA FIXME
// Find the next ticket expiry and set a timer to refresh just after expiry
// Better yet, how about flashing a warning when tickets are going to expire shortly?
repaint ( ) ;
}
void TopLevel : : updateMenu ( ) {
// First, remove all current ticket entries from the menu; these can be identified by their positive id
while ( menu - > idAt ( 0 ) > = 0 ) {
menu - > removeItemAt ( 0 ) ;
}
// Add the new ticket entries to the top of the menu
int id = 0 ;
int index = 0 ;
if ( m_ticketList . count ( ) < 1 ) {
menu - > insertItem ( i18n ( " No Kerberos Tickets Available " ) , id + + , index + + ) ;
menu - > setItemEnabled ( 0 , false ) ;
}
else {
KerberosTicketInfoList : : Iterator it ;
for ( it = m_ticketList . begin ( ) ; it ! = m_ticketList . end ( ) ; + + it ) {
KerberosTicketInfo ticket = * it ;
TQDateTime now = TQDateTime : : currentDateTime ( ) ;
TQString label = ticket . serverPrincipal ;
if ( ticket . validEndTime > now ) {
label = label + i18n ( " (Active) " ) ;
}
else {
label = label + i18n ( " (Expired) " ) ;
}
menu - > insertItem ( label , id + + , index + + ) ;
}
}
}
void TopLevel : : getNewTicket ( bool requestServiceTicket ) {
// RAJA FIXME
LDAPCredentials credentials ;
if ( m_ticketList . count ( ) > 0 ) {
TQStringList princParts = TQStringList : : split ( " @ " , m_ticketList [ 0 ] . cachePrincipal ) ;
credentials . username = princParts [ 0 ] ;
credentials . realm = princParts [ 1 ] ;
}
else {
struct passwd * pwd = getpwuid ( geteuid ( ) ) ;
if ( pwd ) {
credentials . username = TQString ( pwd - > pw_name ) ;
}
}
int result = LDAPManager : : getKerberosPassword ( credentials , i18n ( " Please provide Kerberos credentials " ) , requestServiceTicket , this ) ;
if ( result = = KDialog : : Accepted ) {
TQString errorstring ;
TQString service ;
if ( requestServiceTicket ) {
service = credentials . service ;
}
if ( LDAPManager : : obtainKerberosTicket ( credentials , service , & errorstring ) ! = 0 ) {
KMessageBox : : error ( this , i18n ( " <qt>Failed to obtain ticket<p>%1</qt> " ) . arg ( errorstring ) , i18n ( " Failed to obtain Kerberos ticket " ) ) ;
}
}
updateTicketList ( ) ;
}
void TopLevel : : getNewTGT ( ) {
getNewTicket ( false ) ;
}
void TopLevel : : getNewServiceTicket ( ) {
getNewTicket ( true ) ;
}
void TopLevel : : destroyAllTickets ( ) {
if ( system ( " kdestroy --all " ) ! = 0 ) {
KMessageBox : : error ( this , i18n ( " Unable to destroy tickets! " ) , i18n ( " Internal Error " ) ) ;
}
updateTicketList ( ) ;
}
void TopLevel : : resizeEvent ( TQResizeEvent * )
void TopLevel : : resizeEvent ( TQResizeEvent * )
{
{
activeTicketsPixmap = loadSizedIcon ( " kerberos_activetickets " , width ( ) ) ;
activeTicketsPixmap = loadSizedIcon ( " kerberos_activetickets " , width ( ) ) ;
noTicketsPixmap = loadSizedIcon ( " kerberos_notickets " , width ( ) ) ;
noTicketsPixmap = loadSizedIcon ( " kerberos_notickets " , width ( ) ) ;
expiredTicketsPixmap = loadSizedIcon ( " kerberos_expiredtickets " , width ( ) ) ;
expiredTicketsPixmap = loadSizedIcon ( " kerberos_expiredtickets " , width ( ) ) ;
partiallyExpiredTicketsPixmap = loadSizedIcon ( " kerberos_someexpiredtickets " , width ( ) ) ;
repaint ( ) ;
repaint ( ) ;
}
}
/** Handle mousePressEvent */
/** Handle mousePressEvent */
void TopLevel : : mousePressEvent ( TQMouseEvent * event )
void TopLevel : : mousePressEvent ( TQMouseEvent * event ) {
{
if ( event - > button ( ) = = Qt : : LeftButton ) {
if ( event - > button ( ) = = Qt : : LeftButton ) {
//
showTicketList ( ) ;
}
}
else if ( event - > button ( ) = = Qt : : RightButton ) {
else if ( event - > button ( ) = = Qt : : RightButton ) {
updateMenu ( ) ;
menu - > popup ( TQCursor : : pos ( ) ) ;
menu - > popup ( TQCursor : : pos ( ) ) ;
}
}
else if ( event - > button ( ) = = MidButton ) {
else if ( event - > button ( ) = = MidButton ) {
@ -116,10 +234,38 @@ void TopLevel::mousePressEvent(TQMouseEvent *event)
}
}
/** Handle paintEvent (ie. animate icon) */
/** Handle paintEvent (ie. animate icon) */
void TopLevel : : paintEvent ( TQPaintEvent * )
void TopLevel : : paintEvent ( TQPaintEvent * ) {
{
TQPixmap * pm = & noTicketsPixmap ;
TQPixmap * pm = & noTicketsPixmap ;
bool has_tickets = false ;
bool some_tickets_expired = false ;
bool all_tickets_expired = true ;
KerberosTicketInfoList : : Iterator it ;
for ( it = m_ticketList . begin ( ) ; it ! = m_ticketList . end ( ) ; + + it ) {
KerberosTicketInfo ticket = * it ;
has_tickets = true ;
TQDateTime now = TQDateTime : : currentDateTime ( ) ;
if ( ticket . validEndTime > now ) {
all_tickets_expired = false ;
}
else {
some_tickets_expired = true ;
}
}
if ( has_tickets ) {
if ( all_tickets_expired ) {
pm = & expiredTicketsPixmap ;
}
else if ( some_tickets_expired ) {
pm = & partiallyExpiredTicketsPixmap ;
}
else {
pm = & activeTicketsPixmap ;
}
}
// RAJA FIXME
// RAJA FIXME
TQPixmap base ( * pm ) ; // make copy of base pixmap
TQPixmap base ( * pm ) ; // make copy of base pixmap
@ -128,15 +274,12 @@ void TopLevel::paintEvent(TQPaintEvent *)
p . end ( ) ;
p . end ( ) ;
}
}
/** Check timer and initiate appropriate action if finished */
void TopLevel : : timerEvent ( TQTimerEvent * ) {
void TopLevel : : timerEvent ( TQTimerEvent * )
{
//
//
}
}
/** update ToolTip */
/** update ToolTip */
void TopLevel : : setToolTip ( const TQString & text , bool force )
void TopLevel : : setToolTip ( const TQString & text , bool force ) {
{
// don't update if text hasn't changed
// don't update if text hasn't changed
if ( lastTip = = text ) {
if ( lastTip = = text ) {
return ;
return ;
@ -151,13 +294,66 @@ void TopLevel::setToolTip(const TQString &text, bool force)
}
}
}
}
TQString addTicketInfo ( TQString origString , KerberosTicketInfo ticket ) {
origString + = i18n ( " Server: " ) + ticket . serverPrincipal + " <br> " ;
origString + = i18n ( " Client: " ) + ticket . clientPrincipal + " <br> " ;
origString + = i18n ( " Encryption Type: " ) + ticket . encryptionType + " <br> " ;
origString + = i18n ( " Key Version: %1 " ) . arg ( ticket . keyVersionNumber ) + " <br> " ;
if ( ticket . authenticationTime . isValid ( ) ) origString + = i18n ( " Authenticated: " ) + ticket . authenticationTime . toString ( ) + " <br> " ;
if ( ticket . validStartTime . isValid ( ) ) origString + = i18n ( " Valid After: " ) + ticket . validStartTime . toString ( ) + " <br> " ;
if ( ticket . validEndTime . isValid ( ) ) origString + = i18n ( " Valid Before: " ) + ticket . validEndTime . toString ( ) + " <br> " ;
return origString ;
}
void TopLevel : : showTicketList ( ) {
int i ;
TQString listText = " <qt> " ;
updateTicketList ( ) ;
if ( m_ticketList . count ( ) < = 0 ) {
listText + = " <i>No Kerberos tickets to display!</i> " ;
}
else {
i = 1 ;
KerberosTicketInfoList : : Iterator it ;
for ( it = m_ticketList . begin ( ) ; it ! = m_ticketList . end ( ) ; + + it ) {
KerberosTicketInfo ticket = * it ;
listText + = i18n ( " <b>Kerberos Ticket %1</b> " ) . arg ( i ) + " <br> " ;
listText + = addTicketInfo ( " " , ticket ) ;
listText + = " <p> " ;
i + + ;
}
}
listText + = " </qt> " ;
KMessageBox : : information ( this , listText , i18n ( " Kerberos Ticket Information " ) , TQString : : null , KMessageBox : : Notify ) ;
}
void TopLevel : : menuAction ( int index ) {
if ( index > = 0 ) {
TQString listText = " <qt> " ;
KerberosTicketInfo ticket = m_ticketList [ index ] ;
listText + = i18n ( " <b>Kerberos Ticket %1</b> " ) . arg ( index + 1 ) + " <br> " ;
listText + = addTicketInfo ( " " , ticket ) ;
listText + = " </qt> " ;
if ( KMessageBox : : warningYesNo ( this , listText , i18n ( " Kerberos Ticket Information " ) , TQString ( " Destroy this Ticket " ) , TQString ( " Cancel " ) ) = = KMessageBox : : Yes ) {
TQString errorstring ;
if ( LDAPManager : : destroyKerberosTicket ( ticket . serverPrincipal , & errorstring ) ! = 0 ) {
KMessageBox : : error ( this , i18n ( " <qt>Failed to destroy ticket<br>%1<p>%2</qt> " ) . arg ( ticket . serverPrincipal ) . arg ( errorstring ) , i18n ( " Failed to destroy Kerberos ticket " ) ) ;
}
}
}
}
/* config-slot: "help" button clicked */
/* config-slot: "help" button clicked */
void TopLevel : : help ( )
void TopLevel : : help ( ) {
{
kapp - > invokeHelp ( ) ;
kapp - > invokeHelp ( ) ;
}
}
void TopLevel : : config ( )
void TopLevel : : config ( ) {
{
//
//
}
}