popcubeapi

command module
v0.0.0-...-4b25dc3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 7, 2017 License: Apache-2.0 Imports: 3 Imported by: 0

README

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))

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Package api Popcube iner API
Package api Popcube iner API
Package datastores implements the basics databases communication functions used by PopCube chat api.
Package datastores implements the basics databases communication functions used by PopCube chat api.
Package models implements the basics databases models used by PopCube chat api.
Package models implements the basics databases models used by PopCube chat api.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL