Beep backend handling core relational information that is not updated often.
cockroach start --insecure
echo "create database core;" | cockroach sql --insecure
migrate -database cockroach://root@localhost:26257/core?sslmode=disable -source file://migrations goto 1
go build && ./core
Supply environment variables by either exporting them or editing .env
.
ENV | Description | Default |
---|---|---|
LISTEN | Host and port number to listen on | :8080 |
POSTGRES | URL of Postgres | postgresql://root@localhost:26257/core?sslmode=disable |
Unless otherwise noted, bodies and responses are with Content-Type: application/json
. Endpoints marked with a *
require a populated X-User-Claim
header from backend-auth
.
POST /user
Create a new user.
Name | Type | Description | Required |
---|---|---|---|
username | String | Username of the added user. Must be unique. | ✓ |
bio | String | Bio of the added user | ✓ |
profile_pic | String | URL of added user's profile picture | ✓ |
first_name | String | First name of the added user. | ✓ |
last_name | String | Last name of the added user. | ✓ |
phone_number | String | Phone number of the added user. Shouldn't be needed but makes life easier. | X |
Created user object.
{
"id": "<id>",
"username": "<username>",
"bio": "<bio>",
"profile_pic: "<profile_pic>",
"first_name": "<first_name>",
"last_name": "<last_name>",
"phone_number": "<phone_number>"
}
Code | Description |
---|---|
400 | Error parsing submitted body, or fields first_name or last_name have a length of 0. |
500 | Error occurred inserting entry into database. |
GET /user
Get user(s) associated with the supplied phone number.
Name | Type | Description | Required |
---|---|---|---|
phone_number | String | Phone number to be queried. | ✓ |
List of users.
[
{
"id": "<id>",
"username": "<username>",
"bio": "<bio>",
"profile_pic": "<profile_pic>",
"first_name": "<first_name>",
"last_name": "<last_name>"
},
...
]
Code | Description |
---|---|
400 | Supplied phone_number is absent/an invalid phone number. |
500 | Error occurred retrieving entries from database. |
GET /user/id/:user
Get a specific user by ID.
Name | Type | Description | Required |
---|---|---|---|
user | String | User's ID. | ✓ |
User object.
{
"id": "<id>",
"username": "<username>",
"bio": "<bio>",
"profile_pic": "<profile_pic>",
"first_name": "<first_name>",
"last_name": "<last_name>",
"phone_number": "<phone_number>"
}
Code | Description |
---|---|
404 | User with supplied ID could not be found in database |
500 | Error occurred retrieving entries from database. |
GET /user/username/:username
Get a specific user by username.
Name | Type | Description | Required |
---|---|---|---|
username | String | User's username. | ✓ |
User object.
{
"id": "<id>",
"username": "<username>",
"bio": "<bio>",
"profile_pic": "<profile_pic>",
"first_name": "<first_name>",
"last_name": "<last_name>",
"phone_number": "<phone_number>"
}
Code | Description |
---|---|
404 | User with supplied username could not be found in database |
500 | Error occurred retrieving entries from database. |
PATCH /user
Update an existing user. User ID is taken from header supplied by backend-auth
. If one does not wish to update a field, leave it the value acquire from Get-User.
Name | Type | Description | Required |
---|---|---|---|
username | String | Updated username. | X |
bio | String | Updated bio. | X |
profile_pic | String | Updated URL of profile picture. | X |
first_name | String | Updated first name. | X |
last_name | String | Updated last name | X |
Empty body.
Code | Description |
---|---|
400 | Error parsing body/User with username already exists. |
500 | Error occurred updating database. |
POST /user/conversation
Create a new conversation for a user.
Name | Type | Description | Required |
---|---|---|---|
title | String | Title of the conversation | X |
dm | Boolean | Whether the conversation is a DM or not | X |
picture | String | URL of the group's picture | X |
Conversation object.
{
"id": "<id>",
"title": "<title>",
"picture": "<picture>"
}
Code | Description |
---|---|
400 | Error occurred parsing the supplied body/Invalid X-User-Claim header |
404 | User with supplied ID could not be found in database. |
500 | Error occurred inserting entries into the database. |
DELETE /user/conversation/:conversation
Delete the specified conversation.
Name | Type | Description | Required |
---|---|---|---|
conversation | String | Conversation's ID. | ✓ |
Empty body.
Code | Description |
---|---|
400 | Invalid X-User-Claim header. |
404 | User/Conversation with supplied ID could not be found in database. |
500 | Error occurred deleting entries from the database. |
PATCH /user/conversation/:conversation
Update a conversation's details (mainly just title for now).
Name | Type | Description | Required |
---|---|---|---|
conversation | String | Conversation's ID. | ✓ |
Name | Type | Description | Required |
---|---|---|---|
title | String | New title of the conversation. | X |
picture | String | New URL of the group's picture | X |
Empty Body. (TODO: Updated conversation)
Code | Description |
---|---|
400 | Error occurred parsing the supplied body/Invalid X-User-Claim header. |
404 | User/Conversation with supplied ID could not be found in database. |
500 | Error occurred updating entries in the database. |
GET /user/conversation
Get the conversations of the specified user.
List of conversations.
[
{
"id": "<id>",
"title": "<title>"
"picture": "<picture>",
"pinned: "<pinned:bool>"
},
...
]
Code | Description |
---|---|
400 | Invalid X-User-Claim header. |
500 | Error occurred updating entries in the database. |
GET /user/conversation/:conversation
Get a specific conversation of a specific user.
Name | Type | Description | Required |
---|---|---|---|
conversation | String | Conversation's ID. | ✓ |
Conversation object.
{
"id": "<id>",
"title": "<title>",
"picture": "<picture>",
"pinned: "<pinned:bool>"
}
Code | Description |
---|---|
400 | Invalid X-User-Claim header. |
404 | Conversation with supplied ID could not be found in database. |
500 | Error occurred retrieving entries from the database. |
POST /user/conversation/:conversation/pin
Mark the specified conversation as pinned.
Name | Type | Description | Required |
---|---|---|---|
conversation | String | Conversation's ID. | ✓ |
Blank body.
Code | Description |
---|---|
400 | Invalid X-User-Claim header. |
404 | Conversation with supplied ID could not be found in database. |
500 | Error occurred editing entry in the database. |
DELETE /user/conversation/:conversation/pin
Unmark the specified conversation as pinned.
Name | Type | Description | Required |
---|---|---|---|
conversation | String | Conversation's ID. | ✓ |
Blank body.
Code | Description |
---|---|
400 | Invalid X-User-Claim header. |
404 | Conversation with supplied ID could not be found in database. |
500 | Error occurred editing entry in the database. |
POST /user/conversation/:conversation/member
Add a member to the specified conversation.
Name | Type | Description | Required |
---|---|---|---|
conversation | String | Conversation's ID. | ✓ |
Name | Type | Description | Required |
---|---|---|---|
id | String | ID of the user to be added. | ✓ |
The conversation ID of the conversation the user is added to.
Code | Description |
---|---|
400 | Error occurred parsing the supplied body/The length of the ID supplied in the body is less than 1/Invalid X-User-Claim header. |
404 | User/Conversation with supplied ID could not be found in database. |
500 | Error occurred updating entries in the database. |
GET /user/conversation/:conversation/member
Get the members of the specified conversation.
Name | Type | Description | Required |
---|---|---|---|
conversation | String | Conversation's ID. | ✓ |
List of user objects in conversation.
[
{
"id": "<id>",
"username": "<username>",
"bio": "<bio>",
"profile_pic": "<profile_pic>",
"first_name": "<first_name>",
"last_name": "<last_name>",
"phone_number": "<phone_number>"
},
...
]
Code | Description |
---|---|
400 | Invalid X-User-Claim header. |
500 | Error occurred retrieving entries from the database. |
POST /user/contact
Add a new contact.
Name | Type | Description | Required |
---|---|---|---|
phone_number | String | New contact's phone number. A blank user object will be created if no such ID exists in the database. | ✓ |
Empty body
Code | Description |
---|---|
400 | Error occurred parsing the supplied body/The length of the ID supplied in the body is less than 1 or equal to the user's ID/Invalid X-User-Claim header. |
500 | Error occurred updating entries in the database. |
GET /user/contact
Get the user's contacts.
List of user objects in user's contacts.
[
{
"id": "<id>",
"username": "<username>",
"bio": "<bio>",
"profile_pic": "<profile_pic",
"first_name": "<first_name>",
"last_name": "<last_name>"
},
...
]
Code | Description |
---|---|
400 | Invalid X-User-Claim header. |
500 | Error occurred retrieving entries from the database. |
GET /user/subscribe/contact
Subscribe to an Eventsource stream giving update in changes in state of the contacts database.
An Eventsource stream. Each event (stringified json) will be of the following format:
{
"type": "<add|update>",
"data": {
"usera": "<user id>",
"userb": "<user id>"
}
}
The json in the data field is also stringified.
GET /user/subscribe/conversation
Subscribe to an Eventsource stream giving update in changes in state of the conversations database.
An Eventsource stream. Each event (stringified json) will be of the following format:
{
"type": "<add|update|delete>",
"data": {
"id": "<conversation id>",
"title": "<string>",
"dm": "<bool>",
"picture": "<string>",
"pinned": "<bool>"
}
}
The json in the data field is also stringified.
GET /user/subscribe/user
Subscribe to an Eventsource stream giving update in changes in state of the users database.
An Eventsource stream. Each event (stringified json) will be of the following format:
{
"type": "<add|update>",
"data": {
"id": "<user id>",
"username": "<string>",
"bio": "<string>",
"profile_pic": "<string>",
"last_name": "<string>",
"phone_number": "<string>"
}
}
The json in the data field is also stringified.
GET /user/subscribe/conversation/:conversation/member
Subscribe to an Eventsource stream giving update in changes in state of the conversation members database.
Name | Type | Description | Required |
---|---|---|---|
conversation | String | Conversation's ID. | ✓ |
An Eventsource stream. Each event (stringified json) will be of the following format:
{
"type": "<add|update>",
"data": {
"user": "<user id>",
"conversation": "<conversation id>",
"pinned": "<bool>"
}
}
The json in the data field is also stringified.