Compare commits

...

2 Commits

Author SHA1 Message Date
dede- 8d9c1598a2 Add load image, Dockerfile e requirements 2023-09-17 22:37:18 -03:00
dede- 84df834b82 Add load image, Dockerfile e requirements 2023-09-17 21:55:40 -03:00
13 changed files with 211 additions and 22 deletions

8
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

4
.idea/misc.xml Normal file
View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.10" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/tcc.iml" filepath="$PROJECT_DIR$/.idea/tcc.iml" />
</modules>
</component>
</project>

8
.idea/tcc.iml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

34
FlaskAPI/.dockerignore Normal file
View File

@ -0,0 +1,34 @@
# Include any files or directories that you don't want to be copied to your
# container here (e.g., local build artifacts, temporary files, etc.).
#
# For more help, visit the .dockerignore file reference guide at
# https://docs.docker.com/engine/reference/builder/#dockerignore-file
**/.DS_Store
**/__pycache__
**/.venv
**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/bin
**/charts
**/docker-compose*
**/compose*
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/obj
**/secrets.dev.yaml
**/values.dev.yaml
LICENSE
README.md

45
FlaskAPI/Dockerfile Normal file
View File

@ -0,0 +1,45 @@
# syntax=docker/dockerfile:1
# Comments are provided throughout this file to help you get started.
# If you need more help, visit the Dockerfile reference guide at
# https://docs.docker.com/engine/reference/builder/
ARG PYTHON_VERSION=3.10.12
FROM python:${PYTHON_VERSION}-slim as base
# Prevents Python from writing pyc files.
ENV PYTHONDONTWRITEBYTECODE=1
# Keeps Python from buffering stdout and stderr to avoid situations where
# the application crashes without emitting any logs due to buffering.
ENV PYTHONUNBUFFERED=1
WORKDIR /app
# Copy the source code into the container.
COPY . .
RUN apt-get update && apt-get install -y imagemagick && apt-get install -y wget && ls
RUN wget https://files.ivanch.me/api/public/dl/iFuXSNhw/small-image.png && \
wget https://files.ivanch.me/api/public/dl/81Bkht5C/big-image.png && \
wget https://files.ivanch.me/api/public/dl/nAndfAjK/video.mp4 && \
rm -rf runtimes && \
mkdir -p ./static && \
mv small-image.png ./static && \
mv big-image.png ./static && \
mv video.mp4 ./static
# Download dependencies as a separate step to take advantage of Docker's caching.
# Leverage a cache mount to /root/.cache/pip to speed up subsequent builds.
# Leverage a bind mount to requirements.txt to avoid having to copy them into
# into this layer.
RUN --mount=type=cache,target=/root/.cache/pip \
--mount=type=bind,source=requirements.txt,target=requirements.txt \
python -m pip install -r requirements.txt
# Expose the port that the application listens on.
EXPOSE 5000
# Run the application.
CMD gunicorn 'app:app' --bind=0.0.0.0:5000

49
FlaskAPI/compose.yaml Normal file
View File

@ -0,0 +1,49 @@
# Comments are provided throughout this file to help you get started.
# If you need more help, visit the Docker compose reference guide at
# https://docs.docker.com/compose/compose-file/
# Here the instructions define your application as a service called "server".
# This service is built from the Dockerfile in the current directory.
# You can add other services your application may depend on here, such as a
# database or a cache. For examples, see the Awesome Compose repository:
# https://github.com/docker/awesome-compose
services:
server:
build:
context: .
ports:
- 5000:5000
# The commented out section below is an example of how to define a PostgreSQL
# database that your application can use. `depends_on` tells Docker Compose to
# start the database before your application. The `db-data` volume persists the
# database data between container restarts. The `db-password` secret is used
# to set the database password. You must create `db/password.txt` and add
# a password of your choosing to it before running `docker compose up`.
# depends_on:
# db:
# condition: service_healthy
# db:
# image: postgres
# restart: always
# user: postgres
# secrets:
# - db-password
# volumes:
# - db-data:/var/lib/postgresql/data
# environment:
# - POSTGRES_DB=example
# - POSTGRES_PASSWORD_FILE=/run/secrets/db-password
# expose:
# - 5432
# healthcheck:
# test: [ "CMD", "pg_isready" ]
# interval: 10s
# timeout: 5s
# retries: 5
# volumes:
# db-data:
# secrets:
# db-password:
# file: db/password.txt

View File

@ -1,4 +1,3 @@
import io
from services.image import ImageService from services.image import ImageService
from static.image_helper import ImageHelper from static.image_helper import ImageHelper
from flask import request, Response, Blueprint, jsonify, send_file from flask import request, Response, Blueprint, jsonify, send_file
@ -18,20 +17,25 @@ def blur_image():
as_attachment=True, as_attachment=True,
download_name='blurred_image.jpeg') download_name='blurred_image.jpeg')
return jsonify(status=400, message="Bad request") return "Bad request", 400
@image_blueprint.route('/image/load-image', methods=['POST']) @image_blueprint.route('/image/load-small-image', methods=['GET'])
def get_simple_image(): def get_simple_image():
pass return send_file(image_service.get_simple_image(),
mimetype='image/png',
as_attachment=True,
download_name='small-image.png')
@image_blueprint.route('/image/load-big-image', methods=['GET']) @image_blueprint.route('/image/load-big-image', methods=['GET'])
def get_big_image(): def get_big_image():
pass return send_file(image_service.get_big_image(),
mimetype='image/png',
as_attachment=True,
download_name='big-image.png')
@image_blueprint.route('/image/save-big-image', methods=['POST']) @image_blueprint.route('/image/save-big-image', methods=['POST'])
def save_big_image(): def save_image():
pass pass

View File

@ -0,0 +1,3 @@
Flask>=1.0
gunicorn>=19.9.0
Wand

View File

@ -1,5 +1,7 @@
from wand.image import Image from wand.image import Image
from static.image_helper import ImageHelper
def box_blur_image_separable(image, blurred_image, radius_x, radius_y): def box_blur_image_separable(image, blurred_image, radius_x, radius_y):
pixels = image.get_pixels() pixels = image.get_pixels()
@ -30,28 +32,38 @@ def box_blur_image_separable(image, blurred_image, radius_x, radius_y):
return blurred_image return blurred_image
def save_image(file_stream):
with open("image.png", "wb") as file:
file.write(file_stream.read())
file.close()
class ImageService: class ImageService:
def __init__(self): def __init__(self):
pass pass
def box_blur_image(self, image, radius): def box_blur_image(self, img, radius):
temp_path = 'temp_image.png' temp_path = 'temp_image.png'
image.save(temp_path) img.save(temp_path)
with Image(filename=temp_path) as img: with Image(filename=temp_path) as img:
img.blur(radius, 2) # Apply blur directly to the image object img.blur(radius, 2)
blurred_temp_path = 'blurred_temp_image.png' blurred_temp_path = 'blurred_temp_image.png'
img.save(filename=blurred_temp_path) # Save the modified image img.save(filename='blurred_temp_image.png')
return blurred_temp_path return blurred_temp_path
def save_image(self, file_stream):
with open("image.png", "wb") as file:
file.write(file_stream.read())
file.close()
def get_simple_image(self): def get_simple_image(self):
return Image(filename='path_to_simple_image.png') with ImageHelper.SimpleImage as img:
img = ImageHelper.SimpleImage
simple_image = 'simple_image.png'
img.save(filename='simple_image.png')
return simple_image
def get_big_image(self): def get_big_image(self):
return Image(filename='path_to_big_image.png') with ImageHelper.BigImage as img:
img = ImageHelper.BigImage
big_image = 'big_image.png'
img.save(filename='big_image.png')
return big_image

View File

@ -7,9 +7,11 @@ class ImageHelper:
@staticmethod @staticmethod
def load_images(): def load_images():
# ImageHelper.SimpleImage = Image(filename="simpleimage.png") ImageHelper.SimpleImage = Image(filename="./static/small-image.png")
# ImageHelper.BigImage = Image(filename="bigimage.png") #ImageHelper.SimpleImage.save(filename="./static/small-image.png")
ImageHelper.BigImage = Image(filename="./static/big-image.png")
#ImageHelper.BigImage.save(filename="./static/big-image.png")
pass pass
ImageHelper.load_images()
ImageHelper.load_images()