summaryrefslogtreecommitdiff
path: root/docs/core/index.rst
blob: 9740744dfff94d60b94b180dcab3c2ef346b9456 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
:LastChangedDate: $LastChangedDate$
:LastChangedRevision: $LastChangedRevision$
:LastChangedBy: $LastChangedBy$

.. _bitmask_core:

============
Bitmask Core
============

The bitmask core daemon can be launched like this::

  bitmaskd

The command-line program, ``bitmaskctl``, and the GUI, will launch the
daemon when needed.

Starting the API server
=======================

If configured to do so, the bitmask core will expose all of the commands
throught a REST API. In bitmaskd.cfg::

  [services]
  web = True


Resources
========= 

Following is a list of currently available resources and a brief description of
each one. For details click on the resource name.

+-----------------------------------+---------------------------------+
| Resource                          | Description                     |
+===================================+=================================+
| ``POST`` :ref:`cmd_core_version`  | Get Bitmask Core Version Info   |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_core_stats`    | Get Stats about Bitmask Usage   |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_core_status`   | Get Bitmask Status              |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_core_stop`     | Stop Bitmask Core               |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_prov_list`     | List all providers              |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_prov_create`   | Create a new provider           |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_prov_read`     | Get info about a provider       |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_prov_del`      | Delete a given provider         |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_user_list`     | List all users                  |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_user_active`   | Get active user                 |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_user_create`   | Create a new user               |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_user_update`   | Update an user                  |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_user_auth`     | Authenticate an user            |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_user_logout`   | End session for an user         |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_keys_list`     | Get all known keys for an user  |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_keys_insert`   | Insert a new key                |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_keys_del`      | Delete a given key              |
+-----------------------------------+---------------------------------+
| ``POST`` :ref:`cmd_keys_export`   | Export keys                     |
+-----------------------------------+---------------------------------+

.. _cmd_core_version:

/core/version
-------------
**POST /core/version**

  Get Bitmask Core Version Info

.. _cmd_core_stats:

/core/stats
-----------
**POST /core/stats**

  Get Stats about Bitmask Usage

.. _cmd_core_status:

/core/status
------------
**POST /core/status**

  Get Bitmask status

.. _cmd_core_stop:

/core/stop
----------
**POST /core/stop**

  Stop Bitmask core (daemon shutdown).

.. _cmd_prov_list:

/bonafide/provider/list
-----------------------
**POST /bonafide/provider/list**

  List all known providers.

.. _cmd_prov_create:

/bonafide/provider/create
--------------------------
**POST /bonafide/provider**

  Create a new provider.

.. _cmd_prov_read:

/bonafide/provider/read
-----------------------
**POST /bonafide/provider/read**

  Get info bout a given provider.

.. _cmd_prov_del:

/bonafide/provider/delete
-------------------------
**POST /bonafide/provider/delete**

  Delete a given provider.


.. _cmd_user_list:

/bonafide/user/list
-------------------
**POST /bonafide/user/list**

  List all the users known to the local backend. 

  **Form parameters**:
        * ``foo`` *(required)* - foo bar.
        * ``bar`` *(optional)* - foo bar.

  **Status codes**:
        * ``200`` - no error

.. _cmd_user_active:

/bonafide/user/active
---------------------
**POST /bonafide/user/active**

  Get the active user.

.. _cmd_user_create:

/bonafide/user/create
---------------------
**POST /bonafide/user/create**

  Create a new user.

  **Form parameters**:
        * ``foo`` *(required)* - foo bar.

.. _cmd_user_update:

/bonafide/user/update
---------------------
**POST /bonafide/user/update**

  Update a given user.

.. _cmd_user_auth:

/bonafide/user/authenticate
---------------------------
**POST /bonafide/user/authenticate**

  Authenticate an user.

.. _cmd_user_logout:

/bonafide/user/logout
---------------------
**POST /bonafide/user/logout**

  Logs out an user, and destroys its local session.

.. _cmd_keys_list:

/keys/list
-------------------
**POST /keys/list**

  Get all keys for an user.

.. _cmd_keys_insert:

/keys/insert/
-------------------
**POST /keys/insert**

  Insert a new key for an user.

.. _cmd_keys_del:

/keys/delete/
-------------------
**POST /keys/delete**

  Delete a key for an user.

.. _cmd_keys_export:

/keys/export/
-------------------
**POST /keys/export**

  Export keys for an user.


API Authentication
==================

(TBD) Most of the resources in the API are protected by an authentication token.