aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppPubSubManager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Run clang-formatLinus Jahn2023-03-111-1/+1
|
* Rename PubSubItem -> PubSubBaseItem to be able to include old PubSubItemLinus Jahn2023-03-091-5/+5
|
* Use QXmppError in all IQ results instead of StanzaErrorLinus Jahn2023-01-221-10/+3
| | | | | | | | This allows us to report different error types with more information and makes it possible to distinguish stanza errors and errors generated locally. Part of #501.
* Introduce QXmppTask & QXmppPromiseLinus Jahn2023-01-031-30/+29
| | | | | | Closes #502. Co-authored-by: Jonah Brüchert <jbb@kaidan.im>
* Fix documentation warnings (renamed functions)Linus Jahn2022-12-311-21/+21
|
* PubSubManager: Rename fetchNodes to requestNodes (like the functions)Linus Jahn2022-12-281-1/+1
| | | | Part of #520.
* PubSubManager: Make requestFeatures() API privateLinus Jahn2022-12-281-0/+4
| | | | | This kind of task should be done by the DiscoveryManager. For now we still need it, but I don't want to make it official API.
* Move PubSubIq into QXmpp::Private namespaceLinus Jahn2022-12-261-50/+50
| | | | This way users won't use it accidentally.
* Remove PubSubEventManager (in favour of EventHandler)Linus Jahn2022-05-281-1/+1
|
* PubSubEventManager: Inherit from EventHandlerLinus Jahn2022-05-201-2/+2
| | | | | EventManager now provides the interface from EventHandler, inherits from ClientExtension and provides a utility pubSub() getter.
* Add PubSubEventHandler based on QXmppExtensionLinus Jahn2022-05-201-0/+19
|
* PubSubManager: Make 'standardItemIdToString()' publicMelvin Keskin2022-04-231-9/+16
| | | | This is needed if the IDs of incoming items should be checked externally.
* Fix PubSub methods with a standard item ID parameterMelvin Keskin2022-04-201-9/+0
|
* PubSubManager: Add requestPepFeatures()Melvin Keskin2022-04-091-0/+11
|
* PubSubManager: Add requestFeatures()Melvin Keskin2022-04-091-0/+59
|
* PubSubManager: Add PEP overloads for requestItem and similarMelvin Keskin2022-04-091-0/+50
|
* PubSubManager: Add PEP overload for fetchNodes()Linus Jahn2022-04-091-0/+10
|
* PubSubManager: Update subscriptions todoLinus Jahn2022-04-091-1/+3
|
* PubSubManager: Add subscribeToNode()/unsubscribeFromNode()Melvin Keskin2022-04-091-0/+40
|
* PubSubManager: Add requestItemIds()Melvin Keskin2022-04-091-0/+37
| | | | Uses a disco items request.
* PubSubManager: requestItem: Add StandardItemId enum for 'current'Melvin Keskin2022-04-091-2/+41
|
* Run 'clang-format' on all filesMelvin Keskin2022-01-151-36/+36
|
* Convert copyright headers to REUSELinus Jahn2022-01-141-23/+4
|
* PubSubManager: Add create node requests with configLinus Jahn2021-09-291-1/+66
|
* PubSubManager: Add node configuration requestsLinus Jahn2021-09-291-8/+138
|
* PubSubManager: Inline PEP requestsLinus Jahn2021-09-291-16/+8
|
* Client: Require moving the packets/iqs for sendingLinus Jahn2021-09-281-13/+13
|
* Add QXmppPubSubManagerLinus Jahn2021-08-221-0/+622
Supports the most common pubsub requests. Co-authored-by: Germán Márquez Mejía <mancho@olomono.de>