Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[buteo-sync-plugins-social] Add Dropbox images sync plugin. Contribut…
…es to JB#32395

This commit adds a plugin to sync images from Dropbox.

Contributes to JB#32395
  • Loading branch information
Jonni Rainisto authored and Chris Adams committed Oct 9, 2015
1 parent e8f4b7e commit 4524543
Show file tree
Hide file tree
Showing 12 changed files with 727 additions and 1 deletion.
24 changes: 24 additions & 0 deletions rpm/sociald.spec
Expand Up @@ -344,6 +344,30 @@ systemctl-user try-restart msyncd.service || :



%package dropbox-images
Summary: Provides image synchronisation with Dropbox
License: LGPLv2.1
Group: System/Libraries
Requires: %{name} = %{version}-%{release}

%description dropbox-images
Provides image synchronisation with Dropbox

%files dropbox-images
#out-of-process-plugin form:
/usr/lib/buteo-plugins-qt5/oopp/dropbox-images-client
#in-process-plugin form:
#/usr/lib/buteo-plugins-qt5/libdropbox-images-client.so
%config %{_sysconfdir}/buteo/profiles/client/dropbox-images.xml
%config %{_sysconfdir}/buteo/profiles/sync/dropbox.Images.xml

%pre dropbox-images
rm -f /home/nemo/.cache/msyncd/sync/client/dropbox-images.xml
rm -f /home/nemo/.cache/msyncd/sync/dropbox.Images.xml

%post dropbox-images
systemctl-user try-restart msyncd.service || :

%package onedrive-images
Summary: Provides image synchronisation with OneDrive
License: LGPLv2.1
Expand Down
4 changes: 4 additions & 0 deletions src/dropbox/dropbox-images/dropbox-images.pri
@@ -0,0 +1,4 @@
SOURCES += $$PWD/dropboximagesyncadaptor.cpp
HEADERS += $$PWD/dropboximagesyncadaptor.h
INCLUDEPATH += $$PWD

28 changes: 28 additions & 0 deletions src/dropbox/dropbox-images/dropbox-images.pro
@@ -0,0 +1,28 @@
TARGET = dropbox-images-client
VERSION = 0.0.1

DEFINES += "CLASSNAME=DropboxImagesPlugin"
DEFINES += CLASSNAME_H=\\\"dropboximagesplugin.h\\\"
include($$PWD/../../common.pri)
include($$PWD/../dropbox-common.pri)
include($$PWD/dropbox-images.pri)

CONFIG += link_pkgconfig
PKGCONFIG += mlite5

dropbox_images_sync_profile.path = /etc/buteo/profiles/sync
dropbox_images_sync_profile.files = $$PWD/dropbox.Images.xml
dropbox_images_client_plugin_xml.path = /etc/buteo/profiles/client
dropbox_images_client_plugin_xml.files = $$PWD/dropbox-images.xml

HEADERS += dropboximagesplugin.h
SOURCES += dropboximagesplugin.cpp

OTHER_FILES += \
dropbox_images_sync_profile.files \
dropbox_images_client_plugin_xml.files

INSTALLS += \
target \
dropbox_images_sync_profile \
dropbox_images_client_plugin_xml
4 changes: 4 additions & 0 deletions src/dropbox/dropbox-images/dropbox-images.xml
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<profile name="dropbox-images" type="client" >
<field name="Sync Direction" />
</profile>
15 changes: 15 additions & 0 deletions src/dropbox/dropbox-images/dropbox.Images.xml
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<profile name="dropbox.Images" type="sync" >
<key name="category" value="dropbox.Images" />
<key name="enabled" value="false" />
<key name="use_accounts" value="false" />
<key name="destinationtype" value="online" />
<key name="hidden" value="true" />
<key name="displayname" value="Dropbox Images"/>

<schedule enabled="false" interval="" days="1,2,3,4,5,6,7" syncconfiguredtime="" time="05:00:00" />

<profile name="dropbox-images" type="client" >
<key name="Sync Direction" value="from-remote" />
</profile>
</profile>
54 changes: 54 additions & 0 deletions src/dropbox/dropbox-images/dropboximagesplugin.cpp
@@ -0,0 +1,54 @@
/****************************************************************************
**
** Copyright (C) 2015 Jolla Ltd.
** Contact: Jonni Rainisto <jonni.rainisto@jolla.com>
**
** This program/library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public License
** version 2.1 as published by the Free Software Foundation.
**
** This program/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
** Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public
** License along with this program/library; if not, write to the Free
** Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
** 02110-1301 USA
**
****************************************************************************/

#include "dropboximagesplugin.h"
#include "dropboximagesyncadaptor.h"
#include "socialnetworksyncadaptor.h"

extern "C" DropboxImagesPlugin* createPlugin(const QString& pluginName,
const Buteo::SyncProfile& profile,
Buteo::PluginCbInterface *callbackInterface)
{
return new DropboxImagesPlugin(pluginName, profile, callbackInterface);
}

extern "C" void destroyPlugin(DropboxImagesPlugin* plugin)
{
delete plugin;
}

DropboxImagesPlugin::DropboxImagesPlugin(const QString& pluginName,
const Buteo::SyncProfile& profile,
Buteo::PluginCbInterface *callbackInterface)
: SocialdButeoPlugin(pluginName, profile, callbackInterface,
QStringLiteral("dropbox"),
SocialNetworkSyncAdaptor::dataTypeName(SocialNetworkSyncAdaptor::Images))
{
}

DropboxImagesPlugin::~DropboxImagesPlugin()
{
}

SocialNetworkSyncAdaptor *DropboxImagesPlugin::createSocialNetworkSyncAdaptor()
{
return new DropboxImageSyncAdaptor(this);
}
47 changes: 47 additions & 0 deletions src/dropbox/dropbox-images/dropboximagesplugin.h
@@ -0,0 +1,47 @@
/****************************************************************************
**
** Copyright (C) 2015 Jolla Ltd.
** Contact: Jonni Rainisto <jonni.rainisto@jolla.com>
**
** This program/library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public License
** version 2.1 as published by the Free Software Foundation.
**
** This program/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
** Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public
** License along with this program/library; if not, write to the Free
** Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
** 02110-1301 USA
**
****************************************************************************/

#ifndef DROPBOXIMAGESPLUGIN_H
#define DROPBOXIMAGESPLUGIN_H

#include "socialdbuteoplugin.h"

class SOCIALDBUTEOPLUGIN_EXPORT DropboxImagesPlugin : public SocialdButeoPlugin
{
Q_OBJECT

public:
DropboxImagesPlugin(const QString& pluginName,
const Buteo::SyncProfile& profile,
Buteo::PluginCbInterface *cbInterface);
~DropboxImagesPlugin();

protected:
SocialNetworkSyncAdaptor *createSocialNetworkSyncAdaptor();
};

extern "C" DropboxImagesPlugin* createPlugin(const QString& pluginName,
const Buteo::SyncProfile& profile,
Buteo::PluginCbInterface *cbInterface);

extern "C" void destroyPlugin(DropboxImagesPlugin* client);

#endif // DROPBOXIMAGESPLUGIN_H

0 comments on commit 4524543

Please sign in to comment.