Multi-platform app that allows your devices to communicate
Find a file
Simon Redman 9c1d6e43ad Add contacts-reading plugin (KDE side)
Summary:
Add a plugin to KDE Connect which supports exporting the Android contacts databases to vcards on the desktop

When the devices are connected, the plugin sends a request for all timestamps and IDs

When a packet with timestamps and IDs is received, it verifies it has vcards for each ID and that the timestamps match and deletes any vcards for IDs which were not reported. It then sends a request for all vcards which were missing or need updating

When a packet with vcards is received they are unconditionally written to disk, possibly overwriting existing vcards

Provides one dbus method: contacts/synchronizeRemoteWithLocal which triggers the request for all timestamps and IDs

BUG: 367999

Test Plan:
Connect the device to the desktop and verify that vcards are created in QStandardPaths::GenericDataLocation / kpeoplevcard". On my system this is ~/.local/share/kpeoplevcard

Create a dummy contact on the device and verify it is synchronized (Currently not automatic, have to disconnect and reconnect or use dbus)

Modify the dummy contact and verify the modifications are synchronized (Currently not automatic, have to disconnect and reconnect or use dbus)

Delete the dummy contact and verify the deletion is synchronized (Currently not automatic, have to disconnect and reconnect or use dbus)

Reviewers: #kde_connect, apol

Reviewed By: #kde_connect, apol

Subscribers: mtijink, #kde_connect, apol

Tags: #kde_connect

Maniphest Tasks: T8283

Differential Revision: https://phabricator.kde.org/D9691
2018-04-23 22:30:27 +02:00
app Clean-up requirements: cmake 3.0, qt 5.7, use min versions, deduplicate KF5 2018-03-17 23:34:33 +01:00
cli Add more scripting helpers to cli command 2018-02-27 17:46:55 +01:00
cmake Move the generation of dbus interfaces into interfaces/ 2015-06-18 19:06:14 +02:00
core Do not call deleteLater on a null QObject 2018-03-24 19:02:06 +01:00
daemon Add a method for creating simple notifications 2018-03-18 12:52:22 +01:00
doc Reverted docs version as we didn't change them. 2016-07-22 13:13:30 +02:00
fileitemactionplugin Clean-up requirements: cmake 3.0, qt 5.7, use min versions, deduplicate KF5 2018-03-17 23:34:33 +01:00
icon Remove dash in icon 2016-11-28 16:27:34 +01:00
indicator SVN_SILENT made messages (.desktop file) - always resolve ours 2018-04-07 05:22:03 +02:00
interfaces Show the KCM with the run commands open when a setup packet is received 2018-04-19 03:03:42 +02:00
kcm Show the KCM with the run commands open when a setup packet is received 2018-04-19 03:03:42 +02:00
kcmplugin Clean-up requirements: cmake 3.0, qt 5.7, use min versions, deduplicate KF5 2018-03-17 23:34:33 +01:00
kio Clean-up requirements: cmake 3.0, qt 5.7, use min versions, deduplicate KF5 2018-03-17 23:34:33 +01:00
nautilus-extension Adds a nautilus-python extension to share files 2018-03-24 17:39:51 +01:00
plasmoid Optionally include sms app 2018-03-25 20:48:38 +02:00
plugins Add contacts-reading plugin (KDE side) 2018-04-23 22:30:27 +02:00
smsapp SVN_SILENT made messages (.desktop file) - always resolve ours 2018-04-23 05:25:53 +02:00
tests Add a method for creating simple notifications 2018-03-18 12:52:22 +01:00
urlhandler SVN_SILENT made messages (.desktop file) - always resolve ours 2018-04-07 05:22:03 +02:00
.arcconfig Add arcconfig file, for phabricator integration 2017-05-25 00:28:11 +02:00
.gitignore Notification icons from Android are now displayed 2017-04-13 21:32:03 +02:00
CMakeLists.txt Show the KCM with the run commands open when a setup packet is received 2018-04-19 03:03:42 +02:00
CONTRIBUTING.md Add CONTRIBUTING.md 2016-06-10 23:01:34 +02:00
COPYING add missing licence file 2013-09-10 15:18:32 +01:00
kdeconnect-version.h.in Version number is now set in a single place 2015-02-04 23:52:07 -08:00
KDEConnectMacros.cmake Use the macro in ECM to install kdeconnect plugins 2016-06-01 05:16:40 +02:00
org.kde.kdeconnect.kcm.appdata.xml GIT_SILENT made messages (after extraction) 2018-04-07 03:23:24 +02:00
README.md Updated README 2017-09-02 11:58:29 +02:00

KDE Connect - desktop app

KDE Connect is a multi-platform app that allows your devices to communicate (eg: your phone and your computer).

(Some) Features

  • Shared clipboard: copy and paste between your phone and your computer (or any other device).
  • Notification sync: Read and reply to your Android notifications from the desktop.
  • Share files and URLs instantly from one device to another.
  • Multimedia remote control: Use your phone as a remote for Linux media players.
  • Virtual touchpad: Use your phone screen as your computer's touchpad and keyboard.

All this without wires, over the already existing WiFi network, and using TLS encryption.

Supported platforms

How to install

This explains how to install KDE Connect on your computer. You will also need to install it in your phone and pair both devices in the app if you want it to be any useful.

On Linux

Look in your distribution repo for a package called kdeconnect-kde, kdeconnect-plasma, or just kdeconnect. If it's not there and you know how to build software from sources, you just found the repo :)

If you are not using Plasma 5, you might want to install a user interface for your platform. The indicator-kdeconnect project provides an appindicator icon plus integration with Nautilus.

On Mac or Windows

Platforms other than Linux are not officially supported, but it should be possible to run KDE Connect there. You can compile KDE Connect for Windows using Craft and it works except for some plugins. I haven't tried on Mac. Contributions welcome!

On BSD

It should work, but no promises :)

How does it work?

KDE Connect consists of an UI-agnostic "core" library which exposes a series of DBus interfaces, and several UI components that consume these DBus interfaces. This way, new UI components can be added to integrate better with specific platforms or desktops, without having to reimplement the protocol or any of the internals. The core KDE Connect library is also divided in 4 big blocks:

  • LinkProviders: Are in charge of discovering other KDE Connect-enabled devices in the network and establishing a Link to them.
  • Devices: Represent a remote device, abstracting the specific Link that is being used to reach it.
  • NetworkPackets: JSON-serializable and self-contained pieces of information to be sent by the plugins between devices.
  • Plugins: Independent pieces of code which implement a specific feature. Plugins will use NetworkPackets to exchange information through the network with other Plugins on a remote Device.

The basic structure of a NetworkPacket is the following:

{
  "id": 123456789,
  "type": "com.example.myplugin",
  "body": {  },
  "version": 5
}

The content of the "body" section is defined by each Plugin. Hence, only the emisor and receiver plugins of a given packet type need agree on the contents of the body.

NetworkPackets can also have binary data attached that can't be serialized to JSON. In this case, two new fields will be added:

"payloadSize": The size of the file, or -1 if it is a stream without known size.
"payloadTransferInfo": Another JSON object where the specific Link can add information so the Link in the remote end can establish a connection and receive the payload (eg: IP and port in a local network). It's up to the Link implementation to decide how to use this field.

Contributing

To contribute patches, use KDE Connect's Phabricator. There you can also find a task list with stuff to do, and links to other relevant resources. It is a good idea to also subscribe to the KDE Connect mailing list.

License

GNU GPL v2 and GNU GPL v3

If you are reading this from Github, you should know that this is just a mirror of the KDE Project repo.