aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Implement "verify" API.HEADmasterHarald Eilertsen2023-03-263-0/+184
| | | | | | | The verify API call returns a full channel object, including the corresponding xchan. I've added the xchan as a field in the Channel object, instead of having all the fields in one object like it is returned from the API.
* Move to Rust 2021 edition.Harald Eilertsen2023-03-261-1/+1
| | | | | Doesn't seem like anything is changing re our code, but might as well just stay with the lates.
* Make abook output prettier.Harald Eilertsen2023-03-261-1/+3
| | | | | | Only print the most relevant information from the returned data. Output it as CSV (but we don't do any sort of escaping yet). This will probably not stay this way, but works as a demonstration for now.
* Include XChan in the Abook struct.Harald Eilertsen2023-03-261-3/+16
| | | | | | I feel this is a better representation than what is coming directly from the API where it's all returned as one json object with fieldnames prefixed with abook or xchan respectively.
* Add generix API error which is a string.Harald Eilertsen2023-03-261-0/+7
|
* Fetch abook and xchan directly from api.Harald Eilertsen2023-03-267-135/+163
| | | | We don't really need the intermediate layer in the binary module.
* Update reqwest and make async.Harald Eilertsen2021-07-0517-110/+135
| | | | | | | | This means adding the full tokio as a dependency. While there isn't much gain to going async in the current cli demo app, a full fledged app may have more to gain by it. First foray into async rust, so I might not do it right...
* Update dependenciesHarald Eilertsen2021-07-051-5/+5
|
* Fix tests an update for newer rust.Harald Eilertsen2021-07-042-4/+4
|
* bin/zot: Clean up channel stream output somewhat.Your Name2020-05-031-9/+18
| | | | Not really easy to find a goot pure text representation of this, though.
* Promote example app to proper command line client.Your Name2020-05-0310-5/+5
|
* zotcli: Don't dump raw json response after post item.Your Name2020-05-023-6/+44
|
* zotcli: take item body as a file rather than string.Your Name2020-05-022-2/+8
|
* xchan: update internal api and parse results into struct.Your Name2020-05-024-21/+105
|
* xchan: rename request object type to XChanRequest.Your Name2020-05-021-12/+12
| | | | We want to have the XChan type for actial XChan data.
* Update MockitoYour Name2020-05-011-1/+1
|
* Update abook with struct and request object.Harald Eilertsen2020-02-144-31/+109
|
* tests: Make default mock return empty array.Harald Eilertsen2020-02-141-1/+1
| | | | Most API's return an arrya, so this should be ok with most of them.
* tests: No need to check response returned by mock.Harald Eilertsen2020-02-141-4/+2
|
* Refactor how ABConfigs are fetched.Harald Eilertsen2020-02-134-20/+25
| | | | | | | Introduce a `z()` menber function that creates the request object that we use for further configuring the requset. This eliminates the need to two fetch functions, and is meant to provide a consistent way of doing these requests.
* Let api access client request object directly.Harald Eilertsen2020-02-132-5/+13
| | | | | This simplifies things a bit, as we don't need to buffer query params and such outside of the request itself.
* Add fetching ABConfig for only a given contact.Harald Eilertsen2020-02-132-0/+48
|
* abconfig: reorg + parse result into struct.Harald Eilertsen2020-01-046-15/+65
|
* Cargo fmtHarald Eilertsen2020-01-039-35/+10
|
* Move client constructor fn to submodule.Harald Eilertsen2020-01-033-14/+10
|
* Make channel and network stream behave like the rest.Harald Eilertsen2020-01-037-13/+75
|
* Move Client out of the api objects.Harald Eilertsen2020-01-0313-137/+105
| | | | Also make constructor functions in the zotapi namespace.
* Use Url crate and move paths to submodules.Harald Eilertsen2020-01-037-33/+26
|
* Cargo fmtHarald Eilertsen2020-01-0216-190/+201
|
* No need for extern crate in Rust 2018.Harald Eilertsen2020-01-023-9/+0
|
* zotcli: Limit post to one or more groups.Harald Eilertsen2020-01-012-0/+7
|
* Allow limiting a new item to one or more privacy groups.Harald Eilertsen2020-01-012-12/+80
|
* Replace serde_urlencoded with serde_qs.Harald Eilertsen2020-01-016-36/+24
| | | | Simplifies serialization of various types quite a bit.
* Update deps.Harald Eilertsen2020-01-012-3/+3
|
* tests: Verify authorization properly.Harald Eilertsen2020-01-012-15/+15
|
* Update to Mockito 0.19 for smoother tests.Harald Eilertsen2019-07-292-13/+12
| | | | | Provides matching against query params, so we don't need the ugly regexes anymore.
* Abstract away type of stored data in an Item.Harald Eilertsen2019-07-292-4/+38
| | | | | Currently this seems rather pointless, but will make more sense when we need to store arrays in the Item data set.
* Reduce duplication in tests.Harald Eilertsen2019-06-121-84/+35
| | | | | Adds a default_mock method for most cases, and a client method that sets up the zotapi client with the proper test url and credentials.
* Add a bit of doc to the ItemBuilder struct.Harald Eilertsen2019-06-121-0/+17
|
* Make Error type public.Harald Eilertsen2019-06-121-0/+1
|
* zotcli: Handle attaching media to posts.Harald Eilertsen2019-06-122-1/+7
|
* Fix uploading of attachments to posts.Harald Eilertsen2019-06-122-31/+29
| | | | | | | The field needs to be named `media`, and we also need to handle the result of the operation. This refactors the result handling into a separate private function.
* zotcli: Fetch group members by group id or group name.Harald Eilertsen2019-06-102-4/+57
|
* Implement fetching privacy group members.Harald Eilertsen2019-06-103-2/+83
|
* zotcli: Make group formatting work and print flags.Harald Eilertsen2019-06-101-5/+20
| | | | | Formatting requires the format arguments to be proper strings or integers. Formatting a serde_json::Value directly did not work.
* Fetch privacy groups.Harald Eilertsen2019-06-097-0/+106
|
* zotcli can now post messages with titles.Harald Eilertsen2019-06-092-4/+11
|
* Use clap_app macro to define args at compile time.Harald Eilertsen2019-06-092-58/+38
| | | | | | For some reason the clap_app macro does not accept subcommands with hyphens, so the subcommands `channel-strean` and `network-stream` has been changed to `channel` and `network` respectively.
* Use rust edition 2018.Harald Eilertsen2019-06-096-13/+24
|
* Add test for uploading two files.Harald Eilertsen2018-12-161-0/+37
|