JPT Post interface

Introduction

PostAction is associated with all post and partly thread related jobs.
All interfaces of this controller is placed under /user path.
All interfaces require authentication fields.


API

Add Post

To add a new post. Use this interface to create post metadata without uploading the torrent file.

1
2
3
4
5
6
7
8
9
10
POST /post HTTP/1.1
Accept: application/json
Content-Type: application/json
id: {uid}
credential: {credential}

{
"title":"Test title", "enabled":true, "minLevel":{"lid":1},
"content":"This could be a very long content..."
}

The post object is exactly as specification, but user could not specify the id of post to be persisted as well as some of other fields like postTime, infoHash, rate.
Note that the minLevel is to set the minimum required level of user to download. User could not create a level without proper permission. Ideally, user should choose a level from list.

Update Post meta and content

Use this interface to update the meta data and content of a post.
Only author and administrators could update a post.

1
2
3
4
5
6
7
8
9
10
PUT /post/{pid} HTTP/1.1
Accept: application/json
Content-Type: application/json
id: {uid}
credential: {credential}

{
"title":"Test title", "enabled":true, "minLevel":{"lid":1},
"content":"This could be a very long content..."
}

This interface has the same restriction as Add post.
The target post to be updated will be and only be the {pid} specified in URL.

Get Post metadata and content

Anyone could see any post.

1
2
3
4
5
GET /post/{pid} HTTP/1.1
Accept: application/json
Content-Type: application/json
id: {uid}
credential: {credential}

Delete Post

Only author and administrators could delete a post.

1
2
3
4
5
DELETE /post/{pid} HTTP/1.1
Accept: application/json
Content-Type: application/json
id: {uid}
credential: {credential}

Add Thread for a Post

Any user could reply thread to post

1
2
3
4
5
6
7
POST /post/{pid}/thread HTTP/1.1
Accept: application/json
Content-Type: application/json
id: {uid}
credential: {credential}

{"content":"TEST CONTENT", "rate":5}

Thread object is exactly as specification. But for user could specify few fields as the example above.
the target post is specified in URL, replyer is specified in request header uid.

Get Thread page for a Post

Get a page of threads, page number starts from 1 and default as 1.
Default page size is 5.

1
2
3
4
5
GET /post/{pid}/thread?pageNo={pageNo}&pageSize={pageSize} HTTP/1.1
Accept: application/json
Content-Type: application/json
id: {uid}
credential: {credential}

Upload torrent file of a Post

Upload the corresponding torrent file of a post.
Only author could upload it.
A torrent file could and only could upload to a post once. If user finds the torrent is incorrect, they have to re-post and upload again.

1
2
3
4
5
6
7
POST /post/{pid}/metainfo HTTP/1.1
Content-Type: multipart/form-data
Accept: application/json
id: {uid}
credential: {credential}

{Byte array of torrent file in multipart}

Just like other file uploads, must upload the origin torrent file directly to server.
It actually uploads the torrent file as byte array.

Download torrent file of a Post

Only users that reach minLevel requirement of a post could download the torrent file.

1
2
3
4
5
GET /post/{pid}/metainfo HTTP/1.1
Content-Type: application/json
Accept: [application/x-bittorrent, application/json]
id: {uid}
credential: {credential}

If everything run smoothly, client side will get a response with header

Content-Disposition: attachment; filename=hash.torrent;

which means user will get browser prompt to get download. Depending on browser implementation in detail.


JPT Post interface
https://rug.al/2016/2016-01-01-jpt-post-interface/
Author
Rugal Bernstein
Posted on
January 1, 2016
Licensed under