Coder Social home page Coder Social logo

crudbucket2-back-end's Introduction

CRUD Bucket API

CRUD Bucket is a web application which allows users to easily upload, organize and share files. All users can view and download all other users’ files. Users can rename and delete files their own files, as well. Date uploaded and date modified are automatically generated and shown for each file. Files can be organized into folders, and folders can be created within other folders allowing users to organize their files as they like.

Links

Deployed Back-end API

Front-end Repo

API

Use this API to communicate with the CRUD-Bucket Back End.

Authentication

Verb URI Pattern Controller#Action
POST /sign-up users#signup
POST /sign-in users#signin
PATCH /change-password/:id users#changepw
DELETE /sign-out/:id users#signout

POST /sign-up

Request:

curl --include --request POST http://localhost:3000/sign-up \
  --header "Content-Type: application/json" \
  --data '{
    "credentials": {
      "email": "[email protected]",
      "password": "an example password",
      "password_confirmation": "an example password"
    }
  }'
scripts/sign-up.sh

Response:

HTTP/1.1 201 Created
Content-Type: application/json; charset=utf-8

{
  "user": {
    "id": 1,
    "email": "[email protected]"
  }
}

POST /sign-in

Request:

curl --include --request POST http://localhost:3000/sign-in \
  --header "Content-Type: application/json" \
  --data '{
    "credentials": {
      "email": "[email protected]",
      "password": "an example password"
    }
  }'
scripts/sign-in.sh

Response:

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

{
  "user": {
    "id": 1,
    "email": "[email protected]",
    "token": "33ad6372f795694b333ec5f329ebeaaa"
  }
}

PATCH /change-password/:id

Request:

curl --include --request PATCH http://localhost:3000/change-password/$ID \
  --header "Authorization: Token token=$TOKEN" \
  --header "Content-Type: application/json" \
  --data '{
    "passwords": {
      "old": "an example password",
      "new": "super sekrit"
    }
  }'
ID=1 TOKEN=33ad6372f795694b333ec5f329ebeaaa scripts/change-password.sh

Response:

HTTP/1.1 204 No Content

DELETE /sign-out/:id

Request:

curl --include --request DELETE http://localhost:3000/sign-out/$ID \
  --header "Authorization: Token token=$TOKEN"
ID=1 TOKEN=33ad6372f795694b333ec5f329ebeaaa scripts/sign-out.sh

Response:

HTTP/1.1 204 No Content

Users

Verb URI Pattern Controller#Action
GET /users users#index
GET /users/1 users#show

GET /users

Request:

curl --include --request GET http://localhost:3000/users \
  --header "Authorization: Token token=$TOKEN"
TOKEN=33ad6372f795694b333ec5f329ebeaaa scripts/users.sh

Response:

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

{
  "users": [
    {
      "id": 2,
      "email": "[email protected]"
    },
    {
      "id": 1,
      "email": "[email protected]"
    }
  ]
}

GET /users/:id

Request:

curl --include --request GET http://localhost:3000/users/$ID \
  --header "Authorization: Token token=$TOKEN"
ID=2 TOKEN=33ad6372f795694b333ec5f329ebeaaa scripts/user.sh

Response:

HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8

{
  "user": {
    "id": 2,
    "email": "[email protected]"
  }
}

Folders

Verb URI Pattern Controller#Action
POST /rootfolders folders#createRoot
GET /rootfolders/:path folders#showRoot
GET /folders/:path folders#index
GET /userfolders folders#showByOwner
GET /folders folders#index
GET /folders/:id folders#show
POST /folders folders#create
PATCH /folders/:id folders#update
DELETE /folders/:id folders#destroy

POST /rootfolders

Request:

curl --include --request POST http://localhost:3000/rootfolders \
  --header "Content-Type: application/json" \
  --data '{
    "folder": {
      "name": "exampleFolderName",
      "path": "examplePath",
      "_owner": "exampleUserId"
    }
  }'

GET /folders/:path

Request:

curl --include --request GET http://localhost:3000/folders/:examplePath \
  --header "Content-Type: application/json"

GET /rootfolders/:path

Request:

curl --include --request GET http://localhost:3000/rootfolders/:examplePath \
  --header "Content-Type: application/json"

GET /userfolders

Request:

curl --include --request GET http://localhost:3000/userfolders \
  --header "Content-Type: application/json"

GET /folders

Request:

curl --include --request GET http://localhost:3000/folders \
  --header "Content-Type: application/json"

GET /folders/:id

Request:

curl --include --request GET http://localhost:3000/folders/:id \
  --header "Content-Type: application/json"

POST /folders

Request:

curl --include --request POST http://localhost:3000/folders \
  --header "Authorization: Token token=$TOKEN" \
  --header "Content-Type: application/json" \
  --data '{
    "folder": {
      "name": "exampleName",
      "path": "examplePath"
    }
  }'

PATCH /folders/:id

Request:

curl --include --request PATCH http://localhost:3000/folders/:id \
  --header "Authorization: Token token=$TOKEN" \
  --header "Content-Type: application/json" \
  --data '{
    "folder": {
      "name": "exampleName",
      "path": "examplePath"
    }
  }'

DELETE /folders/:id

Request:

curl --include --request DELETE http://localhost:3000/folders/:id \
  --header "Authorization: Token token=$TOKEN" \
  --header "Content-Type: application/json" \

Files

Verb URI Pattern Controller#Action
GET /rootfiles/:path files#showRoot
GET /files files#index
GET /files/:id files#show
POST /files files#create
PATCH /files/:id files#update
DELETE /files/:id files#destroy

GET /files/:path

Request:

curl --include --request GET http://localhost:3000/files/:examplePath \
  --header "Content-Type: application/json"

GET /files

Request:

curl --include --request GET http://localhost:3000/files \
  --header "Content-Type: application/json"

GET /files/:id

Request:

curl --include --request GET http://localhost:3000/files/:id \
  --header "Content-Type: application/json"

POST /files

Request:

curl --include --request POST http://localhost:3000/files \
  --header "Authorization: Token token=$TOKEN" \
  --header "Content-Type: application/json" \
  --data '{
    "file": {
      "name": "exampleName",
      "path": "examplePath"
    }
  }'

PATCH /files/:id

Request:

curl --include --request PATCH http://localhost:3000/files/:id \
  --header "Authorization: Token token=$TOKEN" \
  --header "Content-Type: application/json" \
  --data '{
    "file": {
      "name": "exampleName",
      "path": "examplePath"
    }
  }'

DELETE /files/:id

Request:

curl --include --request DELETE http://localhost:3000/files/:id \
  --header "Authorization: Token token=$TOKEN" \
  --header "Content-Type: application/json" \
  1. All content is licensed under a CC­BY­NC­SA 4.0 license.
  2. All software code is licensed under GNU GPLv3. For commercial use or alternative licensing, please contact [email protected].

crudbucket2-back-end's People

Contributors

dvdpwll avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.