/usr/include/KF5/Attica/attica/providermanager.h is in libkf5attica-dev 5.44.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
This file is part of KDE.
Copyright (c) 2009 Eckhart Wörner <ewoerner@kde.org>
Copyright (c) 2009 Frederik Gladhorn <gladhorn@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef ATTICA_PROVIDERMANAGER_H
#define ATTICA_PROVIDERMANAGER_H
#include <QtCore/QUrl>
#include "provider.h"
#include "attica_export.h"
namespace Attica
{
/**
* Attica ProviderManager
*
* This class is the primary access to Attica's functions.
* Use the ProviderManager to load Open Collaboration Service providers,
* either the default system ones, or from XML or custom locations.
*
* \section providerfiles Provider Files
* Provider files are defined here:
* http://www.freedesktop.org/wiki/Specifications/open-collaboration-services
*
* <pre>
provider file example
* </pre>
*
* Once you have loaded a Provider, use its functions to access the service.
*/
class ATTICA_EXPORT ProviderManager : public QObject
{
Q_OBJECT
public:
enum ProviderFlag {
NoFlags = 0x0,
DisablePlugins = 0x1
};
Q_DECLARE_FLAGS(ProviderFlags, ProviderFlag)
ProviderManager(const ProviderFlags &flags = NoFlags);
~ProviderManager();
/**
* Load available providers from configuration
*/
void loadDefaultProviders();
/**
* The list of provider files that get loaded by loadDefaultProviders.
* Each of these files can contain multiple providers.
* @return list of provider file urls
*/
QList<QUrl> defaultProviderFiles();
/**
* Add a provider file to the default providers (xml that contains provider descriptions).
Provider files contain information about each provider:
<pre>
<providers>
<provider>
<id>opendesktop</id>
<location>https://api.opendesktop.org/v1/</location>
<name>openDesktop.org</name>
<icon></icon>
<termsofuse>https://opendesktop.org/terms/</termsofuse>
<register>https://opendesktop.org/usermanager/new.php</register>
<services>
<person ocsversion="1.3" />
<friend ocsversion="1.3" />
<message ocsversion="1.3" />
<activity ocsversion="1.3" />
<content ocsversion="1.3" />
<fan ocsversion="1.3" />
<knowledgebase ocsversion="1.3" />
<event ocsversion="1.3" />
</services>
</provider>
</providers>
</pre>
* @param url the url of the provider file
*/
void addProviderFileToDefaultProviders(const QUrl &url);
void removeProviderFileFromDefaultProviders(const QUrl &url);
/**
* Suppresses the authentication, so that the application can take care of authenticating itself
*/
void setAuthenticationSuppressed(bool suppressed);
/**
* Remove all providers and provider files that have been loaded
*/
void clear();
/**
* Parse a xml file containing a provider description
*/
void addProviderFromXml(const QString &providerXml);
void addProviderFile(const QUrl &file);
QList<QUrl> providerFiles() const;
/**
* @returns all loaded providers
*/
QList<Provider> providers() const;
ATTICA_DEPRECATED bool contains(const QString &provider) const;
/**
* @returns whether there's a provider with base url @p provider
*/
bool contains(const QUrl &provider) const;
/**
* @returns the provider with @p url base url.
*/
Provider providerByUrl(const QUrl &url) const;
/**
* @returns the provider for a given provider @p url.
*/
Provider providerFor(const QUrl &url) const;
Q_SIGNALS:
void providerAdded(const Attica::Provider &provider);
void defaultProvidersLoaded();
void authenticationCredentialsMissing(const Provider &provider);
private Q_SLOTS:
void fileFinished(const QString &url);
void authenticate(QNetworkReply *, QAuthenticator *);
void proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator);
void slotLoadDefaultProvidersInternal();
private:
ProviderManager(const ProviderManager &other);
ProviderManager &operator=(const ProviderManager &other);
void initNetworkAccesssManager();
PlatformDependent *loadPlatformDependent(const ProviderFlags &flags);
void parseProviderFile(const QString &xmlString, const QUrl &url);
class Private;
Private *const d;
};
}
Q_DECLARE_OPERATORS_FOR_FLAGS(Attica::ProviderManager::ProviderFlags)
#endif
|