Python client API to access SecureDrop Journalist REST API
Project description
Python SDK for SecureDrop
This SDK provides a convenient Python interface to the SecureDrop Journalist Interface API. The development of the SDK was primarily motivated by the creation of the SecureDrop Workstation based on Qubes OS.
The SDK is currently used by the SecureDrop Client that is a component of the SecureDrop Workstation. When used in Qubes OS, the SDK uses the securedrop-proxy service, as the VM which runs the client does not have network access by design.
IMPORTANT: This project is still under active development. We do not recommend using it in any production context.
Development
Quick Start
pip install -U pipenv
pipenv sync --dev
pipenv shell
make test
This project uses pipenv <https://docs.pipenv.org>
_ to manage all dependencies.
This is a Python 3 project. When using pipenv
locally, ensure you used the --keep-outdated
flag to prevent dependencies from being unnecessarily upgraded during normal development.
We cover all the API calls supported by the SecureDrop Journalist Interface API.
Testing
The tests are located in the tests
directory. This project uses [vcrpy]
(http://vcrpy.readthedocs.io/en/latest/) to record and then reply the API calls so that
developers will have repeatable results so that they may work offline. vcrpy
stores YAML
recordings of the API calls in the data
directory.
To run all the test cases, use the following command.
make test
To run a single test, use this following command, replace the test case name at the end.
make test TESTS=tests/test_api.py::TestAPI::test_error_unencrypted_reply
To test against a live development server, you will need to run the SecureDrop
developent container from the main SecureDrop repository on your host. This
can be done via NUM_SOURCES=5 make -C securedrop dev
.
In this repo, comment out the @vcr
decorator of the setUp
method in
test_api.py
and execute which ever tests you want to run. If you want to
re-run all tests against the API, remove all the .yml
files in the
data
directory.
Generating test data for APIProxy
To test or to generate new test data file for the APIProxy
class in
test_apiproxy.py
file, you will have to setup
QubesOS <https://qubes-os.org>
_ system.
There should be one VM (let us call it sd-journalist
), where we can run
latest securedrop server code from the development branch using
NUM_SOURCES=5 make -C securedrop dev
command. The same VM should also have
securedrop-proxy
project installed, either from the source by hand or using
the latest Debian package from the FPF repository.
Below is an example configuration for proxy /etc/sd-proxy.yaml
:
host: 127.0.0.1
scheme: http
port: 8081
target_vm: sd-svs
dev: False
Then we can create our second developent VM called sd-svs
, in which we can checkout/develop
the securedrop-sdk
project. The required configuration file is at /etc/sd-sdk.conf
[proxy]
name=sd-journalist
We should also add a corresponding entry in /etc/qubes-rpc/policy/securedrop.Proxy
file
in dom0.
sd-svs sd-journalist allow
$anyvm $anyvm deny
The above mentioned setup can also be created using securedrop-workstation
project.
Now, delete any related JSON file under data/
directory, or remove all of
them, and then execute make test TEST=tests/test_apiproxy.py
. This is
command will generate the new data files, which can be used in CI or any other
system.
Note: Remember that file download checks don't read actual file path in the APIProxy
tests as it requires QubesOS setup. You can manually uncomment those lines to execute them on QubesOS setup.
Releasing
To make a release, you should:
-
Create a branch named "release-[VERSION]"
-
Update
CHANGELOG.md
andsetup.py
-
Commit the changes.
-
Create a PR and get the PR reviewed and merged into
master
. -
git tag
and push the new tag. -
Checkout the new tag locally.
-
Push the new release source tarball to the PSF's PyPI
following this documentation <https://packaging.python.org/tutorials/packaging-projects/#uploading-the-distribution-archives>
_. -
If you want to publish the new SDK release to the FPF PyPI mirror, Hop over to the the
securedrop-debian-packaging
repo and follow the build-a-package instructions to push the package up to our PyPI mirror: https://pypi-hypernode.com/simple
Contributing
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
Versioning
We use SemVer for versioning. For the versions available, see the tags on this repository.
License
The Python SecureDrop SDK is licensed in the GPLv3. See LICENSE
for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file securedrop-sdk-0.0.9.tar.gz
.
File metadata
- Download URL: securedrop-sdk-0.0.9.tar.gz
- Upload date:
- Size: 24.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.5.4.1 setuptools/40.0.0 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43146f02c41858578f7c9997e733f2a07f8a4877f1bf9f8b4b11fd4ceffa47a9 |
|
MD5 | 017ad9999d47a57e6a36d8c2369eff68 |
|
BLAKE2b-256 | 2033aa1370b351f49d717df4d10f4c538130bd55be27174c044ed8e501b140ce |