To create a custom storage backend you will need to subclass the StorageBackend class. Then create an instance of the new class and pass that as the storage keyword argument when you create the WebSupport object:
support = WebSupport(srcdir=srcdir,
builddir=builddir,
storage=MyStorage())
For more information about creating a custom storage backend, please see the documentation of the StorageBackend class below.
Defines an interface for storage backends.
Called immediately before the build process begins. Use this to prepare the StorageBackend for the addition of nodes.
Add a node to the StorageBackend.
Parameters: |
|
---|
Called after a build has completed. Use this to finalize the addition of nodes if needed.
Called when a comment is being added.
Parameters: |
|
---|
Delete a comment.
Raises UserNotAuthorizedError if moderator is False and username doesn’t match the username on the comment.
Parameters: |
|
---|
Called to retrieve all data for a node. This should return a dict with two keys, source and comments as described by WebSupport‘s get_data() method.
Parameters: |
|
---|
Process a vote that is being cast. value will be either -1, 0, or 1.
Parameters: |
|
---|
If a user is allowed to change their username this method should be called so that there is not stagnate data in the storage system.
Parameters: |
|
---|
Called when a moderator accepts a comment. After the method is called the comment should be displayed to all users.
Parameters: | comment_id – The id of the comment being accepted. |
---|