Mercurial > prosody-wiki
annotate mod_register_json.wiki @ 396:5720e3f68061
Update docs for lpty-based version
author | MWild1@gmail.com |
---|---|
date | Tue, 13 Aug 2013 17:47:14 +0000 |
parents | eebd8417a2ad |
children | 37502ad2fcb8 |
rev | line source |
---|---|
344 | 1 #summary Token based JSON registration & verification servlet. |
2 #labels Stage-Stable | |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
3 |
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
4 = Introduction = |
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
5 |
344 | 6 This module let's you activate a httpserver interface to handle data from webforms with POST and Base64 encoded JSON. |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
7 |
344 | 8 = Implementation Details = |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
9 |
344 | 10 Example Request format: |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
11 |
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
12 {{{ |
344 | 13 POST /your_register_base_url HTTP/1.1 |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
14 Host: yourserveraddress.com:yourchoosenport |
344 | 15 Content-Type: application/encoded |
16 Content-Transfer-Encoding: base64 | |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
17 |
344 | 18 eyJ1c2VybmFtZSI6InVzZXJuYW1lb2ZjaG9pY2UiLCJwYXNzd29yZCI6InRoZXVzZXJwYXNzd29yZCIsImlwIjoidGhlcmVtb3RlYWRkcm9mdGhldXNlciIsIm1haWwiOiJ1c2VybWFpbEB1c2VybWFpbGRvbWFpbi50bGQiLCJhdXRoX3Rva2VuIjoieW91cmF1dGh0b2tlbm9mY2hvaWNlIn0= |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
19 }}} |
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
20 |
344 | 21 Where the encoded content is this (example) JSON Array: |
22 | |
23 <code language="javascript"> | |
24 {"username":"usernameofchoice","password":"theuserpassword","ip":"theremoteaddroftheuser","mail":"usermail@usermaildomain.tld","auth_token":"yourauthtokenofchoice"} | |
25 </code> | |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
26 |
344 | 27 Your form implementation needs to pass *all* parameters, the auth_token is needed to prevent misuses, if the request is successfull the server will answer with status code 200 and with the body of the response containing the token which your web app can send via e-mail to the user to complete the registration. |
28 | |
345
73b078aeaf84
Added description of the http error codes' meaning.
maranda3985@gmail.com
parents:
344
diff
changeset
|
29 Else, it will reply with the following http error codes: |
73b078aeaf84
Added description of the http error codes' meaning.
maranda3985@gmail.com
parents:
344
diff
changeset
|
30 |
73b078aeaf84
Added description of the http error codes' meaning.
maranda3985@gmail.com
parents:
344
diff
changeset
|
31 * 400 - if there's an error syntax; |
73b078aeaf84
Added description of the http error codes' meaning.
maranda3985@gmail.com
parents:
344
diff
changeset
|
32 * 401 - whenever an username is already pending registration or the auth token supplied is invalid; |
73b078aeaf84
Added description of the http error codes' meaning.
maranda3985@gmail.com
parents:
344
diff
changeset
|
33 * 403 - whenever registration is forbidden (blacklist, filtered mail etc.); |
73b078aeaf84
Added description of the http error codes' meaning.
maranda3985@gmail.com
parents:
344
diff
changeset
|
34 * 406 - if the username supplied fails nodeprepping; |
73b078aeaf84
Added description of the http error codes' meaning.
maranda3985@gmail.com
parents:
344
diff
changeset
|
35 * 409 - if the user already exists, or an user is associated already with the supplied e-mail; |
73b078aeaf84
Added description of the http error codes' meaning.
maranda3985@gmail.com
parents:
344
diff
changeset
|
36 * 503 - whenever a request is throttled. |
73b078aeaf84
Added description of the http error codes' meaning.
maranda3985@gmail.com
parents:
344
diff
changeset
|
37 |
346
a058cd983c6b
Added directions to where the URL path for registration verification is.
maranda3985@gmail.com
parents:
345
diff
changeset
|
38 The verification URL path to direct the users to will be: */your-base-path-of-choice/verify/* - on your Prosody's http server. |
a058cd983c6b
Added directions to where the URL path for registration verification is.
maranda3985@gmail.com
parents:
345
diff
changeset
|
39 |
344 | 40 The module for now stores a hash of the user's mail address to help slow down duplicated registrations. |
41 | |
42 It's strongly encouraged to have the web server communicate with the servlet via https. | |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
43 |
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
44 = Usage = |
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
45 |
347
eebd8417a2ad
Updated as the whole module folder is supposed to be copied now.
maranda3985@gmail.com
parents:
346
diff
changeset
|
46 Copy the module folder and all its contents (register_json) into your prosody modules' directory. |
344 | 47 Add the module your vhost of choice modules_enabled. |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
48 |
185 | 49 Hint: pairing with mod_register_url is helpful, to allow server registrations only via your webform. |
50 | |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
51 Optional configuration directives: |
229 | 52 <code language="lua"> |
344 | 53 reg_servlet_base = "/base-path/" -- Base path of the plugin (default is register_account) |
54 reg_servlet_secure = true -- Have the plugin only process requests on https (default is true) | |
187 | 55 reg_servlet_ttime = seconds -- Specifies the time (in seconds) between each request coming from the same remote address. |
228 | 56 reg_servlet_bl = { "1.2.3.4", "4.3.2.1" } -- The ip addresses in this list will be blacklisted and will not be able to submit registrations. |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
57 reg_servlet_wl = { "1.2.3.4", "4.3.2.1" } -- The ip addresses in this list will be ignored by the throttling. |
344 | 58 reg_servlet_filtered_mails = { ".*banneddomain.tld", ".*deamailprovider.tld" } -- allows filtering of mail addresses via Lua patterns. |
229 | 59 </code> |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
60 |
344 | 61 = Compatibility = |
184
ad1b7e71c32e
Created wiki page through web user interface.
maranda3985@gmail.com
parents:
diff
changeset
|
62 |
344 | 63 * 0.9 |