18 KiB
Changelog
[unreleased]
Fixed
- Fix getting sender from a combination of legacy Diaspora encrypted payload and new entity names (for example
author). This combination probably only existed in this library. - Correctly extend entity
_children. Certain Diaspora payloads caused_childrenfor an entity to be written over by an empty list, causing for example status message photos to not be saved. Correctly do an extend on it. (issue) - Fix parsing Diaspora profile
tag_stringintoProfile.tag_listif thetag_stringis an empty string. This caused the wholeProfileobject creation to fail. (issue)
Removed
Post.photosentity attribute was never used by any code and has been removed. Child entities of typeImageare stored in thePost._childrenas before.- Removed deprecated user private key lookup using
user.keyin Diaspora receive processing. Passed inuserobjects must now have aprivate_keyattribute.
[0.12.0] - 2017-05-22
Backwards incompatible changes
- Removed exception class
NoHeaderInMessageError. New style Diaspora protocol does not have a custom header in the Salmon magic envelope and thus there is no need to raise this anywhere.
Added
- New style Diaspora public payloads are now supported (see here). Old style payloads are still supported. Payloads are also still sent out old style.
- Add new
Followbase entity and support for the new Diaspora "contact" payload. The simpleFollowmaps to Diaspora contact entity with following/sharing both true or false. Sharing as a separate concept is not currently supported. - Added
_receiving_guidto all entities. This is filled withuser.guidifuseris passed tofederation.inbound.handle_receiveand it has aguid. Normally in for example Diaspora, this will always be done in private payloads.
Fixed
- Legacy Diaspora retraction of sharing/following is now supported correctly. The end result is a
DiasporaRetractionfor entity typeProfile. Since the payload doesn't contain the receiving user for a sharing/following retraction in legacy Diaspora protocol, we store the guid of the user in the entity as_receiving_guid, assuming it was passed in for processing.
[0.11.0] - 2017-05-08
Backwards incompatible changes
Diaspora protocol support added for comment and like relayable types. On inbound payloads the signature included in the payload will be verified against the sender public key. A failed verification will raise SignatureVerificationError. For outbound entities, the author private key will be used to add a signature to the payload.
This introduces some backwards incompatible changes to the way entities are processed. Diaspora entity mappers get_outbound_entity and entity utilities get_full_xml_representation now requires the author private_key as a parameter. This is required to sign outgoing Comment and Reaction (like) entities.
Additionally, Diaspora entity mappers message_to_objects and element_to_objects now take an optional sender_key_fetcher parameter. This must be a function that when called with the sender handle will return the sender public key. This allows using locally cached public keys instead of fetching them as needed. NOTE! If the function is not given, each processed payload will fetch the public key over the network.
A failed payload signature verification now raises a SignatureVerificationError instead of a less specific AssertionError.
Added
- Three new attributes added to entities.
- Add protocol name to all entities to attribute
_source_protocol. This might be useful for applications to know which protocol payload the entity was created from once multiple protocols are implemented. - Add source payload object to the entity at
_source_objectwhen processing it. - Add sender public key to the entity at
_sender_key, but only if it was used for validating signatures.
- Add protocol name to all entities to attribute
- Add support for the new Diaspora payload properties coming in the next protocol version. Old XML payloads are and will be still supported.
DiasporaCommentandDiasporaLikewill get the order of elements in the XML payload as a list inxml_tags. For implementers who want to recreate payloads for these relayables, this list should be saved for later use.- High level
federation.outbound.handle_sendhelper function now allows sending entities to a list of recipients without having to deal with payload creation or caring about the protocol (in preparation of being a multi-protocol library).- The function takes three parameters,
entitythat will be sent,from_userthat is sending (note, not necessarely authoring, this user will be used to sign the payload for Diaspora for example) and a list of recipients as tuples of recipient handle/domain and optionally protocol. In the future, if protocol is not given, it will be guessed from the recipient handle, and if necessary a network lookup will be made to see what protocols the receiving identity supports. - Payloads will be delivered to each receiver only once. Currently only public messages are supported through this helper, so multiple recipients on a single domain will cause only one delivery.
- The function takes three parameters,
Changed
- Refactor processing of Diaspora payload XML into entities. Diaspora protocol is dropping the
<XML><post></post></XML>wrapper for the payloads. Payloads with the wrapper will still be parsed as before.
[0.10.1] - 2017-03-09
Fixes
- Ensure tags are lower cased after collecting them from entity
raw_content.
[0.10.0] - 2017-01-28
Added
- Add support for new Diaspora protocol ISO 8601 timestamp format introduced in protocol version 0.1.6.
- Tests are now executed also against Python 3.6.
Fixes
- Don't crash
federation.utils.diaspora.retrieve_diaspora_webfingerif XRD parse raises anxml.parsers.expat.ExpatError.
[0.9.1] - 2016-12-10
Fixes
- Made
Profile.raw_contentoptional. This fixes validating profiles parsed from Diaspora hCard's.
[0.9.0] - 2016-12-10
Backwards incompatible changes
Imageno longer has atextattribute. It is replaced byraw_content, the same attribute asPostandCommenthave. Unlike the latter two,Image.raw_contentis not mandatory.
Added
- Entities can now have a children. These can be accessed using the
_childrenlist. Acceptable children depends on the entity. Currently,Post,CommentandProfilecan have children of entity typeImage. Child types are validated in the.validate()entity method call.
Fixed
- Diaspora protocol
message_to_objectsmethod (called through inbound high level methods) now correctly parses Diaspora<photo>elements and createsImageentities from them. If they are children of status messages, they will be available through thePost._childrenlist.
[0.8.2] - 2016-10-23
Fixed
- Remove legacy splitting of payload to 60 chars when creating Diaspora payloads. Diaspora 0.6 doesn't understand these any more.
[0.8.1] - 2016-10-18
Fixed
federation.utils.network.send_documentincorrectly passed inkwargstorequests.post, causing an error when sending custom headers.- Make sure
federation.utils.network.send_documentheaders are treated case insensitive before passing then onwards torequests.post.
[0.8.0] - 2016-10-09
Library is now called federation
The name Social-Federation was really only an early project name which stuck. Since the beginning, the main module has been federation. It makes sense to unify these and also shorter names are generally nicer.
What do you need to do?
Mostly nothing since the module was already called federation. Some things to note below:
- Update your requirements with the new library name
federation. - If you hook to the old logger
social-federation, update those to listen tofederation, which is now the standard logger name used throughout.
Other backwards incompatible changes
federation.utils.diaspora.retrieve_and_parse_profilewill now returnNoneif theProfileretrieved doesn't validate. This will affect also the output offederation.fetchers.retrieve_remote_profilewhich is the high level function to retrieve profiles.- Remove unnecessary
protocolparameter fromfederation.fetchers.retrieve_remote_profile. We're miles away from including other protocols and ideally the caller shouldn't have to pass in the protocol anyway.
Added
- Added
Retractionentity withDiasporaRetractioncounterpart.
[0.7.0] - 2016-09-15
Backwards incompatible changes
- Made
guidmandatory forProfileentity. Library users should always be able to get a full validated object as we considerguida core attribute of a profile. - Always validate entities created through
federation.entities.diaspora.mappers.message_to_objects. This is the code that transforms federation messages for the Diaspora protocol to actual entity objects. Previously no validation was done and callers offederation.inbound.handle_receivereceived entities that were not always valid, for example they were missing aguid. Now validation is done in the conversion stage and errors are pushed to thefederationlogger in the event of invalid messages.- Note Diaspora Profile XML messages do not provide a GUID. This is handled internally by fetching the guid from the remote hCard so that a valid
Profileentity can be created.
- Note Diaspora Profile XML messages do not provide a GUID. This is handled internally by fetching the guid from the remote hCard so that a valid
Added
- Raise a warning if unknown parameters are passed to entities.
- Ensure entity required attributes are validated for
Noneor empty string values. Required attributes must not only exist but also have a value. - Add validation to entities with the attribute
public. Onlyboolvalues are accepted.
Changed
- Function
federation.utils.diaspora.parse_profile_from_hcardnow requires a second argument,handle. Since in the future Diaspora hCard is not guaranteed to have username and domain, we now pass handle to the parser directly.
[0.6.1] - 2016-09-14
Fixed
- New style Diaspora Magic Envelope didn't require or like payload data to be cut to 60 char lines, as the legacy protocol does. Fixed to not cut lines.
[0.6.0] - 2016-09-13
Added
- New style Diaspora Magic Envelope support. The magic envelope can be created using the class
federation.protocols.diaspora.magic_envelope.MagicEnvelope. By default this will not wrap the payload message in<XML><post></post></XML>. To provide that functionality the class should be initialized withwrap_payload=True. No changes are made to the protocol send methods yet, if you need this new magic envelope you can initialize and render it directly.
Changed
- Deprecate receiving user
keyattribute for Diaspora protocol. Instead correct attribute is nowprivate_keyfor any user passed tofederation.inbound.handle_receive. We already useprivate_keyin the message creation code so this is just to unify the user related required attributes.- DEPRECATION: There is a fallback with
keyfor user objects in the receiving payload part of the Diaspora protocol until 0.8.0.
- DEPRECATION: There is a fallback with
Fixes
- Loosen up hCard selectors when parsing profile from hCard document in
federation.utils.diaspora.parse_profile_from_hcard. The selectors now match Diaspora upcoming federation documentation.
[0.5.0] - 2016-09-05
Breaking changes
federation.outbound.handle_create_payloadparameterto_useris now optional. Public posts don't need a recipient. This also affects Diaspora protocolbuild_sendmethod where the change is reflected similarly. #43- In practise this means the signature has changed for
handle_create_payloadandbuild_sendfromfrom_user, to_user, entitytoentity, from_user, to_user=None.
- In practise this means the signature has changed for
Added
Post.provider_display_nameis now supported in the entity outbound/inbound mappers. #44- Add utility method
federation.utils.network.send_documentwhich is just a wrapper aroundrequests.post. User agent will be added to the headers and exceptions will be silently captured and returned instead. #45 - Add Diaspora entity utility
federation.entities.diaspora.utils.get_full_xml_representation. Renders the entity XML document and wraps it in<XML><post>...</post></XML>. #46
[0.4.1] - 2016-09-04
Fixes
- Don't quote/encode
Protocol.build_sendpayload. It was doing it wrongly in the first place and also it's not necessary since Diaspora 0.6 protocol changes. #41 - Fix identification of Diaspora protocol messages. This was not working in the case that the attributes in the tag were in different order. #41
[0.4.0] - 2016-07-24
Breaking changes
- While in early stages, doing some renaming of modules to suit the longer term.
federation.controllershas been split into two,federation.outboundandfederation.inbound. The following methods have new import locations:federation.controllers.handle_receive->federation.inbound.handle_receivefederation.controllers.handle_create_payload->federation.outbound.handle_create_payload
- Class
federation.hostmeta.generators.DiasporaHCardnow requiresguid,public_keyandusernamefor initialization. Leaving these out was a mistake in the initial implementation. Diaspora has these in at least 0.6 development branch.
Added
Relationshipbase entity which represents relationships between two handles. Types can be following, sharing, ignoring and blocking. The Diaspora counterpart,DiasporaRequest, which represents a sharing/following request is outwards a single entity, but incoming a double entity, handled by creating both a sharing and following version of the relationship.Profilebase entity and Diaspora counterpartDiasporaProfile. Represents a user profile.federation.utils.network.fetch_documentutility function to fetch a remote document. Returns document, status code and possible exception. Takes eitherurlor ahost+pathcombination. Withhost, https is first tried and optionally fall back to http.- Utility methods to retrieve Diaspora user discovery related documents. These include the host-meta, webfinger and hCard documents. The utility methods are in
federation.utils.diaspora. - Utility to fetch remote profile,
federation.fetchers.retrieve_remote_profile. Currently always uses Diaspora protocol. Returns aProfileentity.
Changed
- Unlock most of the direct dependencies to a certain version range. Unlock all of test requirements to any version.
- Entities passed to
federation.controllers.handle_create_payloadare now converted from the base entity types (Post, Comment, Reaction, etc) to Diaspora entity types (DiasporaPost, DiasporaComment, DiasporaLike, etc). This ensures actual payload generation has the correct methods available (for exampleto_xml) whatever entity is passed in.
Fixes
- Fix fetching sender handle from Diaspora protocol private messages. As it is not contained in the header, it needs to be read from the message content itself.
- Fix various issues with
DiasporaHCardtemplate after comparing to some real world hCard templates from real pods. Old version was based on documentation in Diaspora project wiki.
[0.3.2] - 2016-05-09
Changed
- Test factories and other test files are now included in the package installation. Factories can be useful when creating project tests.
- Bump allowed
lxmlto 3.6.0 - Bump allowed
python-dateutilto 2.5.3
Fixes
- Don't raise on Post.tags if Post.raw_content is None
[0.3.1] - 2016-04-13
Added
- Support for generating
.well-known/nodeinfodocument, which was forgotten from the 0.3.0 release. Methodfederation.hostmeta.generators.get_nodeinfo_well_known_documentdoes this task. It requires anurlwhich should be the full base url of the host. Optionallydocument_pathcan be specified, but it is optional and defaults to the one in the NodeInfo spec.
[0.3.0] - 2016-04-13
Added
- Support for generating NodeInfo documents using the generator
federation.hostmeta.generators.NodeInfo. Strict validation is skipped by default, but can be enabled by passing inraise_on_validateto theNodeInfoclass. By default a warning will be generated on documents that don't conform with the strict NodeInfo values. This can be disabled by passing inskip_validateto the class.
[0.2.0] - 2016-04-09
Backwards incompatible changes
- Any implementations using the Diaspora protocol and
Postentities must now useDiasporaPostinstead. See "Changed" below.
Added
- Support for using
validate_field()methods for entity fields and checking missing fields against_required. To use this validation,validate()must specifically be called for the entity instance. - Base entities
CommentandReactionwhich subclass the newParticipationMixin. - Diaspora entity
DiasporaComment, a variant ofComment. - Diaspora entity
DiasporaLike, a variant ofReactionwith thereaction = "like"default.
Changed
- Refactored Diaspora XML generators into the Diaspora entities themselves. This introduces Diaspora versions of the base entities called
DiasporaPost,DiasporaCommentandDiasporaLike. Any implementations using the Diaspora protocol andPostentities must now useDiasporaPostinstead.
Fixes
- Entities which don't specifically get passed a
created_atnow get correct current time increated_atinstead of always having the time part as00:00.
[0.1.1] - 2016-04-03
Initial package release
Supports well Post type object receiving over Diaspora protocol.
Untested support for crafting outgoing protocol messages.