1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
/*
Copyright (c) 2004 Jan Schaefer <j_schaef@informatik.uni-kl.de>
Copyright (c) 2011 Rodrigo Belem <rclbelem@gmail.com>
Copyright (c) 2015 Harald Sitter <sitter@kde.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.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <QDialogButtonBox>
#include <QFileInfo>
#include <QFrame>
#include <QPushButton>
#include <QStandardPaths>
#include <QStringList>
#include <QDebug>
#include <KMessageBox>
#include <KPluginFactory>
#include <KPluginLoader>
#include <KSambaShare>
#include <KSambaShareData>
#include "sambausershareplugin.h"
#include "model.h"
#include "delegate.h"
K_PLUGIN_FACTORY(SambaUserSharePluginFactory, registerPlugin<SambaUserSharePlugin>();)
K_EXPORT_PLUGIN(SambaUserSharePluginFactory("fileshare_propsdlgplugin"))
// copied from kio/src/core/ksambashare.cpp, KSambaSharePrivate::isSambaInstalled()
static bool isSambaInstalled()
{
if (QFile::exists(QStringLiteral("/usr/sbin/smbd"))
|| QFile::exists(QStringLiteral("/usr/local/sbin/smbd"))) {
return true;
}
//qDebug() << "Samba is not installed!";
return false;
}
SambaUserSharePlugin::SambaUserSharePlugin(QObject *parent, const QList<QVariant> &args)
: KPropertiesDialogPlugin(qobject_cast<KPropertiesDialog *>(parent))
, m_url(properties->url().toLocalFile())
, shareData()
{
Q_UNUSED(args);
if (m_url.isEmpty()) {
return;
}
QFileInfo pathInfo(m_url);
if (!pathInfo.permission(QFile::ReadUser | QFile::WriteUser)) {
return;
}
QFrame *vbox = new QFrame();
properties->addPage(vbox, i18n("&Share"));
properties->setFileSharingPage(vbox);
QVBoxLayout *vLayoutMaster = new QVBoxLayout(vbox);
m_installSambaWidgets = new QWidget(vbox);
vLayoutMaster->addWidget(m_installSambaWidgets);
QVBoxLayout *vLayout = new QVBoxLayout(m_installSambaWidgets);
vLayout->setAlignment(Qt::AlignJustify);
vLayout->setMargin(0);
vLayout->addWidget(new QLabel(i18n("Samba is not installed on your system."), m_installSambaWidgets));
#ifdef SAMBA_INSTALL
m_installSambaButton = new QPushButton(i18n("Install Samba..."), m_installSambaWidgets);
m_installSambaButton->setDefault(false);
vLayout->addWidget(m_installSambaButton);
connect(m_installSambaButton, SIGNAL(clicked()), SLOT(installSamba()));
m_installProgress = new QProgressBar();
vLayout->addWidget(m_installProgress);
m_installProgress->hide();
#endif
// align items on top
vLayout->addStretch();
m_shareWidgets = new QWidget(vbox);
vLayoutMaster->addWidget(m_shareWidgets);
propertiesUi.setupUi(m_shareWidgets);
QList<KSambaShareData> shareList = KSambaShare::instance()->getSharesByPath(m_url);
if (!shareList.isEmpty()) {
shareData = shareList.at(0); // FIXME: using just the first in the list for a while
}
setupModel();
setupViews();
load();
connect(propertiesUi.sambaChk, SIGNAL(toggled(bool)), this, SLOT(toggleShareStatus(bool)));
connect(propertiesUi.sambaChk, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
connect(propertiesUi.sambaNameEdit, SIGNAL(textChanged(QString)), this, SIGNAL(changed()));
connect(propertiesUi.sambaNameEdit, SIGNAL(textChanged(QString)), this, SLOT(checkShareName(QString)));
connect(propertiesUi.sambaAllowGuestChk, SIGNAL(toggled(bool)), this, SIGNAL(changed()));
connect(model, SIGNAL(dataChanged(QModelIndex,QModelIndex)), this, SIGNAL(changed()));
for (int i = 0; i < model->rowCount(); ++i) {
propertiesUi.tableView->openPersistentEditor(model->index(i, 1, QModelIndex()));
}
if (!isSambaInstalled()) {
m_installSambaWidgets->show();
m_shareWidgets->hide();
} else {
m_installSambaWidgets->hide();
m_shareWidgets->show();
}
}
SambaUserSharePlugin::~SambaUserSharePlugin()
{
}
#ifdef SAMBA_INSTALL
void SambaUserSharePlugin::installSamba()
{
QString package = QStringLiteral(SAMBA_PACKAGE_NAME);
PackageKit::Transaction *transaction = PackageKit::Daemon::resolve(package,
PackageKit::Transaction::FilterNone);
connect(transaction,
SIGNAL(package(PackageKit::Transaction::Info,QString,QString)),
SLOT(packageInstall(PackageKit::Transaction::Info,QString,QString)));
m_installProgress->setMaximum(0);
m_installProgress->setMinimum(0);
m_installProgress->show();
m_installSambaButton->hide();
}
void SambaUserSharePlugin::packageInstall(PackageKit::Transaction::Info info,
const QString &packageId,
const QString &summary)
{
Q_UNUSED(info);
Q_UNUSED(summary);
PackageKit::Transaction *installTransaction = PackageKit::Daemon::installPackage(packageId);
connect(installTransaction,
SIGNAL(finished(PackageKit::Transaction::Exit, uint)),
SLOT(packageFinished(PackageKit::Transaction::Exit, uint)));
}
void SambaUserSharePlugin::packageFinished(PackageKit::Transaction::Exit status, uint runtime)
{
m_installSambaWidgets->hide();
m_shareWidgets->show();
}
#endif // SAMBA_INSTALL
void SambaUserSharePlugin::setupModel()
{
model = new UserPermissionModel(shareData, this);
}
void SambaUserSharePlugin::setupViews()
{
propertiesUi.tableView->setModel(model);
propertiesUi.tableView->setSelectionMode(QAbstractItemView::NoSelection);
propertiesUi.tableView->setItemDelegate(new UserPermissionDelegate(this));
}
void SambaUserSharePlugin::load()
{
bool guestAllowed = false;
bool sambaShared = KSambaShare::instance()->isDirectoryShared(m_url);
propertiesUi.sambaChk->setChecked(sambaShared);
toggleShareStatus(sambaShared);
if (sambaShared) {
guestAllowed = (bool) shareData.guestPermission();
}
propertiesUi.sambaAllowGuestChk->setChecked(guestAllowed);
propertiesUi.sambaNameEdit->setText(shareData.name());
}
void SambaUserSharePlugin::applyChanges()
{
KSambaShareData::UserShareError result;
if (propertiesUi.sambaChk->isChecked()) {
if (shareData.setAcl(model->getAcl()) != KSambaShareData::UserShareAclOk) {
return;
}
shareData.setName(propertiesUi.sambaNameEdit->text());
shareData.setPath(m_url);
KSambaShareData::GuestPermission guestOk(shareData.guestPermission());
guestOk = (propertiesUi.sambaAllowGuestChk->isChecked() == false)
? KSambaShareData::GuestsNotAllowed : KSambaShareData::GuestsAllowed;
shareData.setGuestPermission(guestOk);
result = shareData.save();
} else if (KSambaShare::instance()->isDirectoryShared(m_url)) {
result = shareData.remove();
}
}
void SambaUserSharePlugin::toggleShareStatus(bool checked)
{
propertiesUi.sambaNameEdit->setEnabled(checked);
propertiesUi.sambaAllowGuestChk->setCheckable(checked);
propertiesUi.tableView->setEnabled(checked);
if (checked && propertiesUi.sambaNameEdit->text().isEmpty()) {
propertiesUi.sambaNameEdit->setText(getNewShareName());
}
}
void SambaUserSharePlugin::checkShareName(const QString &name)
{
bool disableButton = false;
if (name.isEmpty()) {
disableButton = true;
} else if (!KSambaShare::instance()->isShareNameAvailable(name)) {
// There is another Share with the same name
KMessageBox::sorry(qobject_cast<KPropertiesDialog *>(this),
i18n("<qt>There is already a share with the name <strong>%1</strong>.<br /> Please choose another name.</qt>",
propertiesUi.sambaNameEdit->text()));
propertiesUi.sambaNameEdit->selectAll();
disableButton = true;
}
if (disableButton) {
properties->button(QDialogButtonBox::Ok)->setEnabled(false);
propertiesUi.sambaNameEdit->setFocus();
return;
}
if (!properties->button(QDialogButtonBox::Ok)->isEnabled()) {
properties->button(QDialogButtonBox::Ok)->setEnabled(true);
}
}
QString SambaUserSharePlugin::getNewShareName()
{
QString shareName = QUrl(m_url).fileName();
if (!propertiesUi.sambaNameEdit->text().isEmpty()) {
shareName = propertiesUi.sambaNameEdit->text();
}
// Windows could have problems with longer names
shareName = shareName.left(12);
return shareName;
}
#include "sambausershareplugin.moc"
|