zd08135 / qihoo360-problem

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

qihoo360-problem

Install

  1. install python3, redis
  2. pip3 install redis, tornado

Run & Test

  1. python main.py
  2. run cmd in TEST_CMDS

Apis

root_url: http://localhost:8888 method: get/post body: json encoded string api_url: different apis

Recommend to use curl or postman to call apis url = ${root_url}/${api_url}

User Profile

add user:

  • api_url: api/feed/add_user_data
  • body: {"uid":"10001","name":"zdking01","icon":"http://fs.test.com/001.jpg"}
  • responce: null

get_user:

  • api_url: api/feed/get_user_data
  • body: {"uid":"10001"}
  • responce: {"uid":"10001","name":"zdking01","icon":"http://fs.test.com/001.jpg"}

delete_user:

  • api_url: api/feed/delete_user_data
  • body: {"uid":"10001"}
  • responce: null

Feed

follow:

  • api_url: api/feed/follow
  • body: `{"uid":"10001","follow_uid":"10002"} // 10001 follows 10002
  • responce: 404 if uid/follow_uid not exists. 200 if success

unfollow: api/feed/unfollow

  • body: `{"uid":"10001","follow_uid":"10002"} // 10001 follows 10002
  • responce: 404 if uid/follow_uid not exists. 200 if success

get feed timeline:

  • api_url: api/feed/get_feed
  • body: {"uid":"10001","cursor":null}
  • responce: {timeline: timelines, new_cursor: cursor}`

for callers, cursor = null for first fetch, otherwise cursor should be new_cursor in last responce. if all timelines returned and no need to next call, cursor in responce will be null.

Each timeline has format like this:

{
    "profile": {
        "uid":"10002", 
        "name":"zdking02", 
        "icon": "http://fs.test.com/002.jpg"
    },
    "feed": {
        "feed_id": "10002.qWqxg0Moew89snLa", 
        "timestamp": 1589084823744, 
        "type": "push_commits", 
        "uid": "10001", 
        "data": {"follow_uid": "10003"}
    }
    "follow": {
        "uid":"10003", 
        "name":"zdking03", 
        "icon": "http://fs.test.com/003.jpg"
    }
}
{
    "profile": {
        "uid":"10004", 
        "name":"zdking04", 
        "icon": "http://fs.test.com/004.jpg"
    },
    "feed": {
        "feed_id": "10002.qWqxg0Moew89snLa", 
        "timestamp": 1589084823744, 
        "type": "create_fork", 
        "uid": "10001", 
        "data": {"rid": "10005.xxxxxxxxx"}
    }
    "repository": {
        "rid":"10005.xxxxxxxxx", 
        "name":"zdking05 code repository", 
        "view": 0,
        "fork": 2,
    }
}

Repository

create repository

  • api_url: api/repository/create_repository
  • body: {"uid":"10002", "name": "xxxxx"}
  • responce: {"rid": "10002.xxxxx"}

create fork

  • api_url: api/repository/create_fork
  • body: {"uid":"10003", "rid": "10002.xxxxx"}
  • responce: {"rid": "10003.xxx"}

About

License:MIT License


Languages

Language:Python 100.0%