Class reference 

All classes live in the Fixpunkt\FpSocialBridge namespace. They fall into three types:

  • Interface – the shared serialization contract.
  • DTOs (data transfer objects) – the plain data carriers.
  • Responses – the typed response objects of the social server.

Interface 

SerializableInterface 

Shared contract of all data-transfer and response objects.

Method Description
fromJson(string $json): static Creates an object from a JSON string.
fromArray(array $data): static Creates an object from an associative array.
toArray(): array Serializes the object back into an array.

DTOs 

The data transfer objects in the v2\Data namespace contain only data and accessor methods, no business logic.

v2\Data\Post 

Represents a single post.

Method Return value
getId() string – unique ID of the post
getHeadline() string – headline (empty for many sources)
getMessage() string – message text as HTML (may contain <br />/<a> as well as emoji placeholders {emoji:…})
getPostUrl() string – URL of the post on the network
getLink() string – linked URL
getUpdateTime() \DateTime – time of last update (in JSON as date / timezone_type / timezone)
getHashtags() array – hashtags as strings without a leading #
getMentions() array – mentions as objects with displayName and systemName
getPictures() array – picture URLs

v2\Data\Posts 

Iterable, countable collection of Post objects. Implements Iterator and Countable, so it can be used directly with foreach and count().

v2\Data\Channel 

A selectable page or channel of a connected account. This is exactly what the client side writes into the channel and label fields of an account record.

Method Return value
getId() string – id of the page/channel in the network
getName() string – display name of the page/channel

v2\Data\Account 

A single connected account of the social server.

Method Return value
getUid() int – uid of the access key record on the social server
getNetwork() string – connector class name, e.g. Fixpunkt\FpSocialServer\Networks\Facebook\Connector
getNetworkKey() string – short form of the network (facebook, instagram, instagramlogin, linkedin)
getNetworkName() string – human readable network name, e.g. Instagram (Direktanmeldung)
getDisplayName() string – name of the account as shown to the user
getUsername() string – identifier of the account within the network
getEmail() string – e-mail address, may be empty
getExpires() \DateTime|null – expiry of the access key, null for networks whose keys do not expire
getExpired() bool – whether the access key has already expired
getChannels() Channel[] – the pages/channels reachable with this account

v2\Data\Accounts 

Iterable, countable collection of Account objects, grouped by network. Unlike Posts it is not a flat list: iterating yields the network class name as key and an Account[] as value.

Method Description
getIterator() Iterates network => Account[] (IteratorAggregate)
count() Total number of accounts across all networks
getNetworks() string[] – the networks that have accounts
getByNetwork(string $network) Account[] – the accounts of one network, empty if unknown
getAll() Account[] – all accounts as a flat list

Responses 

The response objects in the v2\Response namespace represent the various response types of the social server. The base class factory turns a received JSON response into the matching object.

v2\Response\SocialServerResponse 

Abstract base class of all server responses.

Method Description
fromJson(string $json): static Factory: checks the protocol version and returns the matching response object. Throws an \Exception on corrupted data or a mismatching version.
getVersion(): int Protocol version of the response.

v2\Response\SocialServerPostResponse 

Response containing a single post.

  • getPost(): Post – returns the contained post.

v2\Response\SocialServerPostsResponse 

Response containing multiple posts including pagination.

Method Description
getPosts(): Posts Collection of the contained posts.
getNext(): string Cursor for the next page (nextPage).
getPrevious(): string Cursor for the previous page (previousPage).

v2\Response\SocialServerAccountsResponse 

Response containing all accounts the authenticated user has connected on the social server, grouped by network.

  • getAccounts(): Accounts – the contained collection.

v2\Response\SocialServerErrorResponse 

Error response of the social server.

Method Description
getCode(): int Composite error code (prefix 5550).
getMessage(): string Error message.