mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
5761bc8259
svn path=/trunk/KDE/kdebase/apps/; revision=1194042
103 lines
2.4 KiB
C++
103 lines
2.4 KiB
C++
/***************************************************************************
|
|
* Copyright 2003 Braden MacDonald <bradenm_k@shaw.ca> *
|
|
* Copyright 2003 Ravikiran Rajagopal <ravi@ee.eng.ohio-state.edu> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License (version 2) as *
|
|
* published by the Free Software Foundation. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
/**
|
|
* @file Change a user's 'finger' information, specifically their full name.
|
|
* derived from kdepasswd.
|
|
*/
|
|
|
|
#include "chfnprocess.h"
|
|
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <kdesu/process.h>
|
|
#include <kdebug.h>
|
|
|
|
int ChfnProcess::exec(const char *pass, const char *name)
|
|
{
|
|
// Try to set the default locale to make the parsing of the output
|
|
// of `chfn' easier.
|
|
qputenv("LC_ALL", "C");
|
|
|
|
QList<QByteArray> args;
|
|
args += "-f";
|
|
args += name;
|
|
int ret = KDESu::PtyProcess::exec("chfn", args);
|
|
if (ret < 0)
|
|
return ChfnNotFound;
|
|
|
|
ret = ConverseChfn(pass);
|
|
|
|
waitForChild();
|
|
return ret;
|
|
}
|
|
|
|
|
|
/*
|
|
* The actual work.
|
|
* Return values: -1 = unknown error, 0 = ok, >0 = error code.
|
|
*/
|
|
int ChfnProcess::ConverseChfn(const char *pass)
|
|
{
|
|
int status=-1;
|
|
|
|
QByteArray line;
|
|
while(1)
|
|
{
|
|
line = readLine();
|
|
|
|
if ( line.isEmpty() )
|
|
continue;// discard line
|
|
else if ( line.contains( "Permission denied" ) )
|
|
{
|
|
status=MiscError;
|
|
m_Error=line;
|
|
break;
|
|
}
|
|
|
|
if ( line.contains( "Password: " )/*isPrompt( line, "password" )*/ )
|
|
{
|
|
WaitSlave();
|
|
write(fd(), pass, strlen(pass));
|
|
write(fd(), "\n", 1);
|
|
}
|
|
|
|
line = readLine(); // Let's see what the outcome was
|
|
|
|
if ( line.contains( "Changing finger info" ) )
|
|
{
|
|
// do nothing
|
|
}
|
|
else if ( line.contains( "information changed" ) )
|
|
{
|
|
status=0;
|
|
break;
|
|
}
|
|
else if ( line.isEmpty() )
|
|
{
|
|
status=0;
|
|
break;
|
|
}
|
|
else if ( line.contains( "Password error" ) || line.contains("Incorrect password") )
|
|
{
|
|
status=PasswordError;
|
|
break;
|
|
}
|
|
else
|
|
{
|
|
status=MiscError;
|
|
m_Error=line;
|
|
break;
|
|
}
|
|
}
|
|
return status;
|
|
}
|
|
|