|
|
|
/***********************************************************************
|
|
|
|
uploadprofiles.cpp - extended Map of UploadProfiles
|
|
|
|
-------------------
|
|
|
|
begin : July 11 2004
|
|
|
|
copyright : (C) 2004 by Jens Herden <jens@tdewebdev.org>
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
// qt includes
|
|
|
|
#include <tqobject.h>
|
|
|
|
|
|
|
|
// KDE includes
|
|
|
|
#include <kiconloader.h>
|
|
|
|
#include <klocale.h>
|
|
|
|
|
|
|
|
// app includes
|
|
|
|
#include "servertreeview.h"
|
|
|
|
#include "uploadprofiles.h"
|
|
|
|
#include "quanta.h"
|
|
|
|
#include "resource.h"
|
|
|
|
#include "project.h"
|
|
|
|
|
|
|
|
|
|
|
|
UploadProfiles::UploadProfiles() : UploadProfileMap()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void UploadProfiles::readFromXML(const TQDomDocument &dom)
|
|
|
|
{
|
|
|
|
clear(); // empty the list
|
|
|
|
m_profilesNode = dom.firstChild().firstChild().namedItem("uploadprofiles");
|
|
|
|
if (m_profilesNode.isNull())
|
|
|
|
return;
|
|
|
|
|
|
|
|
TQDomNodeList profileList = m_profilesNode.toElement().elementsByTagName("profile");
|
|
|
|
UploadProfile newProfile;
|
|
|
|
for (uint i = 0; i < profileList.count(); i++)
|
|
|
|
{
|
|
|
|
newProfile.domElement = profileList.item(i).toElement();
|
|
|
|
newProfile.name = newProfile.domElement.attribute("name");
|
|
|
|
newProfile.treeview = createTreeview(newProfile);
|
|
|
|
insert(newProfile.name, newProfile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool UploadProfiles::removeFromMapAndXML(const TQString &name)
|
|
|
|
{
|
|
|
|
UploadProfiles::Iterator it = find(name);
|
|
|
|
if ( it == end() )
|
|
|
|
return false;
|
|
|
|
// ok now remove
|
|
|
|
TQDomElement el = (*it).domElement;
|
|
|
|
el.parentNode().removeChild(el);
|
|
|
|
erase(name);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void UploadProfiles::clear()
|
|
|
|
{
|
|
|
|
// remove all treeviews
|
|
|
|
for (UploadProfiles::iterator it = begin(); it != end(); ++it)
|
|
|
|
{
|
|
|
|
if ( (*it).treeview )
|
|
|
|
{
|
|
|
|
quantaApp->deleteToolWindow( (*it).treeview );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// clear the map
|
|
|
|
UploadProfileMap::clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
TQWidget * UploadProfiles::createTreeview(const UploadProfile &profile)
|
|
|
|
{
|
|
|
|
TQWidget *widget = 0L;
|
|
|
|
KURL kurl = url(profile.domElement);
|
|
|
|
if (kurl.isValid() && ! kurl.isEmpty())
|
|
|
|
{
|
|
|
|
widget = new ServerTreeView(quantaApp->config(), quantaApp, kurl, TQString("ServerTreeView" + profile.name).ascii());
|
|
|
|
widget->setIcon(SmallIcon("up"));
|
|
|
|
widget->setCaption( i18n("Upload Profile") + ": " + profile.name );
|
|
|
|
quantaApp->addToolWindow(widget, quantaApp->prevDockPosition(widget, KDockWidget::DockRight), quantaApp->getMainDockWidget());
|
|
|
|
}
|
|
|
|
return widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
KURL UploadProfiles::url(const TQDomElement &e)
|
|
|
|
{
|
|
|
|
TQString protocol = e.attribute("remote_protocol","ftp") + "://";
|
|
|
|
TQString s = protocol;
|
|
|
|
TQString host = e.attribute("remote_host","");
|
|
|
|
s += host;
|
|
|
|
TQString port = e.attribute("remote_port","");
|
|
|
|
if (! port.isEmpty()) {
|
|
|
|
s += ":" + port;
|
|
|
|
}
|
|
|
|
s += e.attribute("remote_path","");
|
|
|
|
KURL url = KURL::fromPathOrURL(s);
|
|
|
|
TQString user = e.attribute("user","");
|
|
|
|
if (!user.isEmpty()) {
|
|
|
|
url.setUser(user);
|
|
|
|
}
|
|
|
|
// check if we know the password
|
|
|
|
if ( !user.isEmpty() && Project::ref()->keepPasswd )
|
|
|
|
{
|
|
|
|
TQString password = Project::ref()->password(protocol + user + "@" + host);
|
|
|
|
url.setPass(password);
|
|
|
|
}
|
|
|
|
return url;
|
|
|
|
}
|