]> cloud.milkyroute.net Git - dolphin.git/commitdiff
Moving Remote encoding support to Dolphin
authorRahman Duran <a.rahman.duran@gmail.com>
Wed, 25 Mar 2009 21:41:35 +0000 (21:41 +0000)
committerRahman Duran <a.rahman.duran@gmail.com>
Wed, 25 Mar 2009 21:41:35 +0000 (21:41 +0000)
svn path=/trunk/KDE/kdebase/apps/; revision=944653

src/dolphinremoteencoding.cpp [new file with mode: 0644]

diff --git a/src/dolphinremoteencoding.cpp b/src/dolphinremoteencoding.cpp
new file mode 100644 (file)
index 0000000..dc804a0
--- /dev/null
@@ -0,0 +1,257 @@
+/*
+    Copyright (c) 2003 Thiago Macieira <thiago.macieira@kdemail.net>
+
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Library General Public
+    License (LGPL) 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.
+*/
+
+/*
+ * This code is largely based on the UserAgent changer plugin (uachanger)
+ * Copyright © 2001 Dawit Alemayehu <adawit@kde.org>
+ * Distributed under the same terms.
+ */
+
+#include "kremoteencodingplugin.h"
+
+#include <kdebug.h>
+#include <kactionmenu.h>
+#include <kactioncollection.h>
+#include <kicon.h>
+#include <klocale.h>
+#include <kglobal.h>
+#include <kmimetype.h>
+#include <kconfig.h>
+#include <kcharsets.h>
+#include <kmenu.h>
+#include <kgenericfactory.h>
+#include <kprotocolinfo.h>
+#include <kprotocolmanager.h>
+#include <kio/slaveconfig.h>
+#include <kio/scheduler.h>
+#include <kparts/browserextension.h>
+#include <kconfiggroup.h>
+
+#define DATA_KEY       QLatin1String("Charset")
+
+KRemoteEncodingPlugin::KRemoteEncodingPlugin(QObject * parent,
+                                            const QStringList &)
+  : KParts::Plugin(parent), m_loaded(false), m_idDefault(0)
+{
+  m_menu = new KActionMenu(KIcon("character-set"), i18n("Select Remote Charset"), this);
+  actionCollection()->addAction("changeremoteencoding", m_menu);
+  connect(m_menu->menu(), SIGNAL(aboutToShow()),
+         this, SLOT(slotAboutToShow()));
+  m_menu->setEnabled(false);
+  m_menu->setDelayed(false);
+
+  m_part = qobject_cast<KParts::ReadOnlyPart*>(parent);
+  if (m_part) {
+    // if parent is not a part, our menu will never show
+    connect(m_part, SIGNAL(aboutToOpenURL()),
+            this, SLOT(slotAboutToOpenURL()));
+    m_part->installEventFilter(this);
+  }
+}
+
+KRemoteEncodingPlugin::~KRemoteEncodingPlugin()
+{
+}
+
+void
+KRemoteEncodingPlugin::slotReload()
+{
+  loadSettings();
+}
+
+void
+KRemoteEncodingPlugin::loadSettings()
+{
+  m_loaded = true;
+
+  m_encodingDescriptions = KGlobal::charsets()->descriptiveEncodingNames();
+
+  fillMenu();
+}
+
+void
+KRemoteEncodingPlugin::slotAboutToOpenURL()
+{
+  KUrl oldURL = m_currentURL;
+  m_currentURL = m_part->url();
+
+  if (m_currentURL.protocol() != oldURL.protocol())
+    {
+      // This plugin works on ftp, fish, etc.
+      // everything whose type is T_FILESYSTEM except for local files
+      if (!m_currentURL.isLocalFile() &&
+         KProtocolManager::outputType(m_currentURL) == KProtocolInfo::T_FILESYSTEM)
+       {
+         m_menu->setEnabled(true);
+         loadSettings();
+       }
+      else
+       m_menu->setEnabled(false);
+
+      return;
+    }
+
+  if (m_currentURL.host() != oldURL.host())
+    updateMenu();
+}
+
+void
+KRemoteEncodingPlugin::fillMenu()
+{
+  KMenu *menu = m_menu->menu();
+  menu->clear();
+
+  QStringList::ConstIterator it;
+  int count = 0;
+  for (it = m_encodingDescriptions.constBegin(); it != m_encodingDescriptions.constEnd(); ++it)
+    menu->insertItem(*it, this, SLOT(slotItemSelected(int)), 0, ++count);
+  menu->addSeparator();
+
+  menu->insertItem(i18n("Reload"), this, SLOT(slotReload()), 0, ++count);
+  menu->insertItem(i18n("Default"), this, SLOT(slotDefault()), 0, ++count);
+  m_idDefault = count;
+}
+
+void
+KRemoteEncodingPlugin::updateMenu()
+{
+  if (!m_loaded)
+    loadSettings();
+
+  // uncheck everything
+  for (unsigned i =  0; i < m_menu->menu()->actions().count(); i++)
+    m_menu->menu()->setItemChecked(m_menu->menu()->idAt(i), false);
+
+  QString charset = KIO::SlaveConfig::self()->configData(m_currentURL.protocol(), m_currentURL.host(),
+                                                        DATA_KEY);
+  if (!charset.isEmpty())
+    {
+      int id = 1;
+      QStringList::const_iterator it;
+      for (it = m_encodingDescriptions.constBegin(); it != m_encodingDescriptions.constEnd(); ++it, ++id)
+       if ((*it).indexOf(charset) != -1)
+         break;
+
+      kDebug() << "URL=" << m_currentURL << " charset=" << charset;
+
+      if (it == m_encodingDescriptions.constEnd())
+       kWarning() << "could not find entry for charset=" << charset ;
+      else
+       m_menu->menu()->setItemChecked(id, true);
+    }
+  else
+    m_menu->menu()->setItemChecked(m_idDefault, true);
+}
+
+void
+KRemoteEncodingPlugin::slotAboutToShow()
+{
+  if (!m_loaded)
+    loadSettings();
+  updateMenu();
+}
+
+void
+KRemoteEncodingPlugin::slotItemSelected(int id)
+{
+    KConfig config(("kio_" + m_currentURL.protocol() + "rc").toLatin1());
+    QString host = m_currentURL.host();
+    if ( m_menu->menu()->isItemChecked(id) )
+    {
+        QString charset = KGlobal::charsets()->encodingForName(m_encodingDescriptions[id - 1]);
+        KConfigGroup cg(&config, host);
+        cg.writeEntry(DATA_KEY, charset);
+        config.sync();
+        // Update the io-slaves...
+        updateBrowser();
+    }
+}
+
+void
+KRemoteEncodingPlugin::slotDefault()
+{
+  // We have no choice but delete all higher domain level
+  // settings here since it affects what will be matched.
+  KConfig config(("kio_" + m_currentURL.protocol() + "rc").toLatin1());
+
+  QStringList partList = m_currentURL.host().split('.', QString::SkipEmptyParts);
+  if (!partList.isEmpty())
+    {
+      partList.erase(partList.begin());
+
+      QStringList domains;
+      // Remove the exact name match...
+      domains << m_currentURL.host();
+
+      while (partList.count())
+       {
+         if (partList.count() == 2)
+           if (partList[0].length() <= 2 && partList[1].length() == 2)
+             break;
+
+         if (partList.count() == 1)
+           break;
+
+         domains << partList.join(".");
+         partList.erase(partList.begin());
+       }
+
+      for (QStringList::const_iterator it = domains.constBegin(); it != domains.constEnd();
+          ++it)
+       {
+         kDebug() << "Domain to remove: " << *it;
+         if (config.hasGroup(*it))
+           config.deleteGroup(*it);
+         else if (config.group("").hasKey(*it))
+           config.group("").deleteEntry(*it); //don't know what group name is supposed to be XXX
+       }
+    }
+  config.sync();
+
+  // Update the io-slaves.
+  updateBrowser();
+}
+
+void
+KRemoteEncodingPlugin::updateBrowser()
+{
+  KIO::Scheduler::emitReparseSlaveConfiguration();
+  // Reload the page with the new charset
+  KParts::OpenUrlArguments args = m_part->arguments();
+  args.setReload( true );
+  m_part->setArguments( args );
+  m_part->openUrl(m_currentURL);
+}
+
+bool KRemoteEncodingPlugin::eventFilter(QObject*obj, QEvent *ev)
+{
+    if (obj == m_part && KParts::OpenUrlEvent::test(ev)) {
+        const QString mimeType = m_part->arguments().mimeType();
+        if (!mimeType.isEmpty() && KMimeType::mimeType(mimeType)->is("inode/directory"))
+            slotAboutToOpenURL();
+    }
+    return KParts::Plugin::eventFilter(obj, ev);
+}
+
+typedef KGenericFactory < KRemoteEncodingPlugin > KRemoteEncodingPluginFactory;
+K_EXPORT_COMPONENT_FACTORY(konq_remoteencoding,
+                          KRemoteEncodingPluginFactory("kremoteencodingplugin"))
+
+#include "kremoteencodingplugin.moc"