Skip to content

titouanfreville/popcubeapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PopCube API

This repository contain the GO API for PopCube projet

Aims

Popcube api is a simple api to manage database communication for the chat project PopCube. It contains data models and methods to manage the database. The api in itself provide basics methods we are using to manage data.

How to use

By go get

To use this project, you can just make a go get github.com/titouanfreville/popcubeapi

From source

From source, you just have to clone the project, then run godep get to install all the dependencies.

Routes

`/`
`/avatar`
`/avatar/:avatarID/delete`
`/avatar/:avatarID/update`
`/avatar/all`
`/avatar/link/:avatarLink`
`/avatar/name/:avatarName`
`/avatar/new`
`/channel`
`/channel/:channelID/delete`
`/channel/:channelID/update`
`/channel/all`
`/channel/name/:channelName`
`/channel/new`
`/channel/private`
`/channel/public`
`/channel/type/:channelType`
`/emoji`
`/emoji/:emojiID/delete`
`/emoji/:emojiID/update`
`/emoji/all`
`/emoji/link/:emojiLink`
`/emoji/name/:emojiName`
`/emoji/new`
`/emoji/shortcut/:emojiShortcut`
`/folder`
`/folder/:folderID/delete`
`/folder/:folderID/update`
`/folder/all`
`/folder/link/:folderLink`
`/folder/message`
`/folder/name/:folderName`
`/folder/new`
`/folder/type/:folderType`
`/heartbeat`
`/login`
`/message`
`/message/:messageID/delete`
`/message/:messageID/update`
`/message/all`
`/message/channel`
`/message/creator`
`/message/date/:messageDate`
`/message/new`
`/organisation`
`/organisation/:organisationID/update`
`/organisation/all`
`/organisation/new`
`/panic`
`/parameter`
`/parameter/:parameterID/update`
`/parameter/all`
`/parameter/new`
`/ping`
`/role`
`/role/:roleID/delete`
`/role/:roleID/update`
`/role/all`
`/role/name/:roleName`
`/role/new`
`/role/rights`
`/user`
`/user/:userID/delete`
`/user/:userID/update`
`/user/all`
`/user/date`
`/user/deleted`
`/user/email/:userEmail`
`/user/firstname/:firstName`
`/user/lastname/:lastName`
`/user/new`
`/user/nickname/:nickName`
`/user/role`
`/user/username/:userName`

Models

Avatar

The avatar model is used to store Avatar locations and names.

Structure

Row Type Parameters Database Column JSON Key
IDAvatar uint64 primary key, autoincrement idAvatar UNDEFINED
Name string not null, unique name name
Link string not null, unique link link

Functions

IsValid

IsValid is a function to check the integrity of the provided avatar before sending it to the database. It will ensure that the link is not empty as well as the name.

Usage: avatar.IsValid()

ToJSON

ToJSON is a function to convert the Go Avatar struct in JSON object.

Usage: avatar.ToJSON()

AvatarFromJSON

AvatarFromJSON is a function who will try to parse a JSON object as Go Avatar struct.

Usage: AvatarFromJSON(strings.NewReader(json))

AvatarListToJSON

AvatarListToJSON is a function to convert the Go Avatar struct slice in JSON object.

Usage: AvatarListToJSON(avatarList)

AvatarListFromJSON

AvatarListFromJSON is a function who will try to parse a JSON object as Go Avatar struct slice.

Usage: AvatarListFromJSON(strings.NewReader(json))