-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
35 lines (29 loc) · 1.02 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from flask import Flask, jsonify, request
from mongo_client import get_mongo_connection
from omdb_client import fetch_movie
app = Flask(__name__)
movies_collection = get_mongo_connection()
@app.route("/movies", methods=["GET"])
def get_movies():
"""
Retorna todos os filmes armazenados no MongoDB.
"""
movies = list(movies_collection.find({}, {"_id": 0}))
return jsonify(movies)
@app.route("/movies", methods=["POST"])
def add_movie():
"""
Adiciona um novo filme ao MongoDB usando a OMDb API.
"""
data = request.get_json()
title = data.get("title")
if not title:
return jsonify({"error": "O campo 'title' é obrigatório."}), 400
movie = fetch_movie(title)
if not movie:
return jsonify({"error": "Filme não encontrado na OMDb API."}), 404
movies_collection.insert_one(movie)
return jsonify({"message": "Filme adicionado com sucesso!", "movie": movie})
if __name__ == "__main__":
# Permite conexões externas
app.run(host="0.0.0.0", port=9000, debug=True)