что-то работает
This commit is contained in:
parent
0f898b968d
commit
858ea65e71
@ -37,7 +37,6 @@ authors: list[Author] = [
|
|||||||
Author(name='Tess', surname='Root', uuid_='eb815350-c7b9-4446-8434-4c0640c21995')
|
Author(name='Tess', surname='Root', uuid_='eb815350-c7b9-4446-8434-4c0640c21995')
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
books_url = 'http://localhost:5001/'
|
books_url = 'http://localhost:5001/'
|
||||||
|
|
||||||
|
|
||||||
@ -45,11 +44,13 @@ def list_jsonify():
|
|||||||
return jsonify([author.to_dict() for author in authors])
|
return jsonify([author.to_dict() for author in authors])
|
||||||
|
|
||||||
|
|
||||||
|
# получение списка всех авторов
|
||||||
@app.route('/', methods=['GET'])
|
@app.route('/', methods=['GET'])
|
||||||
def get_all():
|
def get_all():
|
||||||
return list_jsonify(), 200
|
return list_jsonify(), 200
|
||||||
|
|
||||||
|
|
||||||
|
# получение автора по идентификатору
|
||||||
@app.route('/<uuid:uuid_>', methods=['GET'])
|
@app.route('/<uuid:uuid_>', methods=['GET'])
|
||||||
def get_one(uuid_):
|
def get_one(uuid_):
|
||||||
for author in authors:
|
for author in authors:
|
||||||
@ -59,6 +60,7 @@ def get_one(uuid_):
|
|||||||
return 'Автор с таким uuid не был найден', 404
|
return 'Автор с таким uuid не был найден', 404
|
||||||
|
|
||||||
|
|
||||||
|
# получение автора со списком его книг
|
||||||
@app.route('/with-books/<uuid:uuid_>', methods=['GET'])
|
@app.route('/with-books/<uuid:uuid_>', methods=['GET'])
|
||||||
def get_one_with_books(uuid_):
|
def get_one_with_books(uuid_):
|
||||||
for author in authors:
|
for author in authors:
|
||||||
@ -70,19 +72,30 @@ def get_one_with_books(uuid_):
|
|||||||
return 'Автор с таким uuid не был найден', 404
|
return 'Автор с таким uuid не был найден', 404
|
||||||
|
|
||||||
|
|
||||||
|
# проверка наличия автора по его идентификатору (для book_service)
|
||||||
|
@app.route('/check/<uuid:uuid_>', methods=['GET'])
|
||||||
|
def check_exist(uuid_):
|
||||||
|
for author in authors:
|
||||||
|
if author.uuid_ == uuid_:
|
||||||
|
return '', 200
|
||||||
|
return '', 404
|
||||||
|
|
||||||
|
|
||||||
|
# создание автора
|
||||||
@app.route('/', methods=['POST'])
|
@app.route('/', methods=['POST'])
|
||||||
def create():
|
def create():
|
||||||
data = request.json
|
data = request.json
|
||||||
name = data.get('name', None)
|
name = data.get('name', None)
|
||||||
surname = data.get('surname', None)
|
surname = data.get('surname', None)
|
||||||
# if name is None or surname is None:
|
if name is None or surname is None:
|
||||||
# return 'Недостаточно полей для создания нового автора', 404
|
return 'Недостаточно полей для создания нового автора', 404
|
||||||
|
|
||||||
new_author = Author(name, surname, None)
|
new_author = Author(name, surname, None)
|
||||||
authors.append(new_author)
|
authors.append(new_author)
|
||||||
return get_one(new_author.uuid_)
|
return get_one(new_author.uuid_)
|
||||||
|
|
||||||
|
|
||||||
|
# изменение автора по идентификатору
|
||||||
@app.route('/<uuid:uuid_>', methods=['PUT'])
|
@app.route('/<uuid:uuid_>', methods=['PUT'])
|
||||||
def update_by_id(uuid_):
|
def update_by_id(uuid_):
|
||||||
data = request.json
|
data = request.json
|
||||||
@ -100,15 +113,16 @@ def update_by_id(uuid_):
|
|||||||
return 'Автор с таким uuid не был найден', 404
|
return 'Автор с таким uuid не был найден', 404
|
||||||
|
|
||||||
|
|
||||||
|
# удаление автора по идентификатору
|
||||||
@app.route('/<uuid:uuid_>', methods=['DELETE'])
|
@app.route('/<uuid:uuid_>', methods=['DELETE'])
|
||||||
def delete(uuid_):
|
def delete(uuid_):
|
||||||
for author in authors:
|
for author in authors:
|
||||||
if author.uuid_ == uuid_:
|
if author.uuid_ == uuid_:
|
||||||
authors.remove(author)
|
authors.remove(author)
|
||||||
return '', 200
|
return 'Автор успешно удален', 200
|
||||||
|
|
||||||
return 'Автор с таким uuid не был найден', 404
|
return 'Автор с таким uuid не был найден', 404
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
app.run(host='0.0.0.0', port=5000, debug=True)
|
app.run(host='0.0.0.0', port=20001, debug=True)
|
||||||
|
Binary file not shown.
@ -4,23 +4,6 @@ from uuid import uuid4
|
|||||||
import uuid
|
import uuid
|
||||||
|
|
||||||
|
|
||||||
class Author:
|
|
||||||
def __init__(self, name, surname, uuid_: uuid):
|
|
||||||
if uuid_ is None:
|
|
||||||
self.uuid_: uuid = uuid4()
|
|
||||||
else:
|
|
||||||
self.uuid_: uuid = uuid.UUID(uuid_)
|
|
||||||
self.name: str = name
|
|
||||||
self.surname: str = surname
|
|
||||||
|
|
||||||
def to_dict(self):
|
|
||||||
return {
|
|
||||||
"uuid": self.uuid_,
|
|
||||||
"name": self.name,
|
|
||||||
"surname": self.surname
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
class Book:
|
class Book:
|
||||||
def __init__(self, title, year, uuid_: uuid, author_id: uuid):
|
def __init__(self, title, year, uuid_: uuid, author_id: uuid):
|
||||||
if uuid_ is None:
|
if uuid_ is None:
|
||||||
@ -59,15 +42,20 @@ class Book:
|
|||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
|
|
||||||
books: list[Book] = [
|
books: list[Book] = [
|
||||||
Book(title='Garden', year=1977, uuid_='89fa1e7a-7e88-445e-a4d8-6d4497ea8f19', author_id='997aa4c5-ebb2-4794-ba81-e742f9f1fa30'),
|
Book(title='Garden', year=1977, uuid_='89fa1e7a-7e88-445e-a4d8-6d4497ea8f19',
|
||||||
Book(title='New York', year=1989, uuid_='0351ee11-f11b-4d83-b2c8-1075b0c357dc', author_id='694827e4-0f93-45a5-8f75-bad7ef2d21fe'),
|
author_id='997aa4c5-ebb2-4794-ba81-e742f9f1fa30'),
|
||||||
Book(title='The story of flowers', uuid_='dfc17619-7690-47aa-ae8e-6a5068f8ddec', year=1977, author_id='eb815350-c7b9-4446-8434-4c0640c21995'),
|
Book(title='New York', year=1989, uuid_='0351ee11-f11b-4d83-b2c8-1075b0c357dc',
|
||||||
Book(title='Little Rock', year=1990, uuid_='3fad0e6b-cefc-40dd-99c0-adc5ec0290d2', author_id='694827e4-0f93-45a5-8f75-bad7ef2d21fe'),
|
author_id='694827e4-0f93-45a5-8f75-bad7ef2d21fe'),
|
||||||
Book(title='One Piece', year=1994, uuid_='cf0cf26e-c1c6-43ea-bf59-1f8edb180e41', author_id='694827e4-0f93-45a5-8f75-bad7ef2d21fe'),
|
Book(title='The story of flowers', uuid_='dfc17619-7690-47aa-ae8e-6a5068f8ddec', year=1977,
|
||||||
Book(title='Black clover', year=1940, uuid_='2ac3c734-21ad-4450-884d-7de1f5452b9d', author_id='eb815350-c7b9-4446-8434-4c0640c21995'),
|
author_id='eb815350-c7b9-4446-8434-4c0640c21995'),
|
||||||
|
Book(title='Little Rock', year=1990, uuid_='3fad0e6b-cefc-40dd-99c0-adc5ec0290d2',
|
||||||
|
author_id='694827e4-0f93-45a5-8f75-bad7ef2d21fe'),
|
||||||
|
Book(title='One Piece', year=1994, uuid_='cf0cf26e-c1c6-43ea-bf59-1f8edb180e41',
|
||||||
|
author_id='694827e4-0f93-45a5-8f75-bad7ef2d21fe'),
|
||||||
|
Book(title='Black clover', year=1940, uuid_='2ac3c734-21ad-4450-884d-7de1f5452b9d',
|
||||||
|
author_id='eb815350-c7b9-4446-8434-4c0640c21995'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
authors_url = 'http://localhost:5000/'
|
authors_url = 'http://localhost:5000/'
|
||||||
|
|
||||||
|
|
||||||
@ -75,11 +63,13 @@ def list_jsonify():
|
|||||||
return jsonify([book.to_dict() for book in books])
|
return jsonify([book.to_dict() for book in books])
|
||||||
|
|
||||||
|
|
||||||
|
# получить список книг без подробной инфы об авторе
|
||||||
@app.route('/', methods=['GET'])
|
@app.route('/', methods=['GET'])
|
||||||
def get_all():
|
def get_all():
|
||||||
return list_jsonify(), 200
|
return list_jsonify(), 200
|
||||||
|
|
||||||
|
|
||||||
|
# получение всех книг с информацией об авторе
|
||||||
@app.route('/full', methods=['GET'])
|
@app.route('/full', methods=['GET'])
|
||||||
def get_all_full():
|
def get_all_full():
|
||||||
authors: list[dict] = requests.get(authors_url).json()
|
authors: list[dict] = requests.get(authors_url).json()
|
||||||
@ -92,11 +82,13 @@ def get_all_full():
|
|||||||
return response, 200
|
return response, 200
|
||||||
|
|
||||||
|
|
||||||
|
# получение списка книг по идентификатору автора (для author_service)
|
||||||
@app.route('/by-author/<uuid:author_uuid>', methods=['GET'])
|
@app.route('/by-author/<uuid:author_uuid>', methods=['GET'])
|
||||||
def get_by_author_id(author_uuid):
|
def get_by_author_id(author_uuid):
|
||||||
return [book.to_dict_for_authors() for book in books if book.author_id == author_uuid], 200
|
return [book.to_dict_for_authors() for book in books if book.author_id == author_uuid], 200
|
||||||
|
|
||||||
|
|
||||||
|
# получение книги по идентификатору
|
||||||
@app.route('/<uuid:uuid_>', methods=['GET'])
|
@app.route('/<uuid:uuid_>', methods=['GET'])
|
||||||
def get_one(uuid_):
|
def get_one(uuid_):
|
||||||
for book in books:
|
for book in books:
|
||||||
@ -106,6 +98,7 @@ def get_one(uuid_):
|
|||||||
return 'Книга с таким uuid не была найдена', 404
|
return 'Книга с таким uuid не была найдена', 404
|
||||||
|
|
||||||
|
|
||||||
|
# получение книги по идентификатору с инфой об авторе
|
||||||
@app.route('/full/<uuid:uuid_>', methods=['GET'])
|
@app.route('/full/<uuid:uuid_>', methods=['GET'])
|
||||||
def get_one_full(uuid_):
|
def get_one_full(uuid_):
|
||||||
for book in books:
|
for book in books:
|
||||||
@ -116,18 +109,26 @@ def get_one_full(uuid_):
|
|||||||
return 'Книга с таким uuid не была найдена', 404
|
return 'Книга с таким uuid не была найдена', 404
|
||||||
|
|
||||||
|
|
||||||
|
# создание новой книги
|
||||||
@app.route('/', methods=['POST'])
|
@app.route('/', methods=['POST'])
|
||||||
def create():
|
def create():
|
||||||
data = request.json
|
data = request.json
|
||||||
title = data.get('title', None)
|
title = data.get('title', None)
|
||||||
year = data.get('year', None)
|
year = data.get('year', None)
|
||||||
author_id = data.get('author_id', None)
|
author_id = data.get('author_id', None)
|
||||||
|
checking = requests.get(authors_url + f'/check/{author_id}')
|
||||||
|
print(checking)
|
||||||
|
if checking.status_code == 200:
|
||||||
|
new_book = Book(title, year, None, author_id)
|
||||||
|
books.append(new_book)
|
||||||
|
return get_one(new_book.uuid_)
|
||||||
|
if checking.status_code == 404:
|
||||||
|
return 'Автор с таким uuid не существует', 404
|
||||||
|
|
||||||
new_book = Book(title, year, None, author_id)
|
return 'Неизвестная ошибка', 500
|
||||||
books.append(new_book)
|
|
||||||
return get_one(new_book.uuid_)
|
|
||||||
|
|
||||||
|
|
||||||
|
# изменение книги по идентификатору
|
||||||
@app.route('/<uuid:uuid_>', methods=['PUT'])
|
@app.route('/<uuid:uuid_>', methods=['PUT'])
|
||||||
def update_by_id(uuid_):
|
def update_by_id(uuid_):
|
||||||
data = request.json
|
data = request.json
|
||||||
@ -135,6 +136,8 @@ def update_by_id(uuid_):
|
|||||||
new_year = data.get('year', None)
|
new_year = data.get('year', None)
|
||||||
|
|
||||||
for book in books:
|
for book in books:
|
||||||
|
print(book.uuid_)
|
||||||
|
|
||||||
if book.uuid_ == uuid_:
|
if book.uuid_ == uuid_:
|
||||||
if new_title is not None:
|
if new_title is not None:
|
||||||
book.title = new_title
|
book.title = new_title
|
||||||
@ -145,15 +148,16 @@ def update_by_id(uuid_):
|
|||||||
return 'Книга с таким uuid не была найдена', 404
|
return 'Книга с таким uuid не была найдена', 404
|
||||||
|
|
||||||
|
|
||||||
|
# удаление книги по идентификатору
|
||||||
@app.route('/<uuid:uuid_>', methods=['DELETE'])
|
@app.route('/<uuid:uuid_>', methods=['DELETE'])
|
||||||
def delete(uuid_):
|
def delete(uuid_):
|
||||||
for book in books:
|
for book in books:
|
||||||
if book.uuid_ == uuid_:
|
if book.uuid_ == uuid_:
|
||||||
books.remove(book)
|
books.remove(book)
|
||||||
return '', 200
|
return 'Книга успешно удалена', 200
|
||||||
|
|
||||||
return 'Книга с таким uuid не была найдена', 404
|
return 'Книга с таким uuid не была найдена', 404
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
app.run(host='0.0.0.0', port=5001, debug=True)
|
app.run(host='0.0.0.0', port=20002, debug=True)
|
||||||
|
Binary file not shown.
@ -6,22 +6,22 @@ services:
|
|||||||
context: .
|
context: .
|
||||||
dockerfile: ./author_service/Dockerfile
|
dockerfile: ./author_service/Dockerfile
|
||||||
ports:
|
ports:
|
||||||
- "20001:5000"
|
- 20001
|
||||||
|
|
||||||
book_service:
|
book_service:
|
||||||
container_name: book_service
|
container_name: book_service
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: ./book_service/Dockerfile
|
dockerfile: ./book_service/Dockerfile
|
||||||
ports:
|
expose:
|
||||||
- "20002:5000"
|
- 20002
|
||||||
|
|
||||||
nginx:
|
nginx:
|
||||||
image: nginx:latest
|
image: nginx:latest
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
depends_on:
|
volumes:
|
||||||
- author_service
|
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
|
||||||
- book_service
|
depends_on:
|
||||||
volumes:
|
- author_service
|
||||||
- ./nginx/nginx.conf:/etc/nginx/nginx.conf
|
- book_service
|
@ -1,6 +1,10 @@
|
|||||||
|
|
||||||
|
events { worker_connections 1024; }
|
||||||
|
|
||||||
http {
|
http {
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
server_name localhost;
|
server_name localhost;
|
||||||
|
|
||||||
location /author_service/ {
|
location /author_service/ {
|
||||||
|
BIN
tsukanova_irina_lab_3/requirements.txt
Normal file
BIN
tsukanova_irina_lab_3/requirements.txt
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user