2021-10-24 19:14:09 +02:00
|
|
|
import io
|
2021-02-15 19:30:28 +01:00
|
|
|
import os
|
2021-10-24 18:27:37 +02:00
|
|
|
import tempfile
|
|
|
|
import uuid
|
2021-05-18 05:51:33 +02:00
|
|
|
from functools import wraps
|
|
|
|
|
2021-10-24 18:27:37 +02:00
|
|
|
import argostranslatefiles
|
|
|
|
from argostranslatefiles import get_supported_formats
|
2021-10-25 10:52:55 +02:00
|
|
|
from flask import Flask, abort, jsonify, render_template, request, url_for, send_file
|
2020-12-20 21:05:22 +01:00
|
|
|
from flask_swagger import swagger
|
|
|
|
from flask_swagger_ui import get_swaggerui_blueprint
|
2021-10-24 18:27:37 +02:00
|
|
|
from translatehtml import translate_html
|
|
|
|
from werkzeug.utils import secure_filename
|
2021-05-18 05:51:33 +02:00
|
|
|
|
2021-10-26 21:41:14 +02:00
|
|
|
from app import flood, remove_translated_files, security
|
2021-05-18 05:51:33 +02:00
|
|
|
from app.language import detect_languages, transliterate
|
|
|
|
from .api_keys import Database
|
2021-10-09 11:44:00 +02:00
|
|
|
from .suggestions import Database as SuggestionsDatabase
|
2021-02-15 19:30:28 +01:00
|
|
|
|
|
|
|
|
2021-10-26 21:32:06 +02:00
|
|
|
def get_version():
|
|
|
|
try:
|
|
|
|
with open("VERSION") as f:
|
|
|
|
return f.read().strip()
|
|
|
|
except:
|
|
|
|
return "?"
|
|
|
|
|
2021-10-25 11:06:39 +02:00
|
|
|
def get_upload_dir():
|
2021-10-25 11:46:49 +02:00
|
|
|
upload_dir = os.path.join(tempfile.gettempdir(), "libretranslate-files-translate")
|
|
|
|
|
|
|
|
if not os.path.isdir(upload_dir):
|
|
|
|
os.mkdir(upload_dir)
|
|
|
|
|
|
|
|
return upload_dir
|
|
|
|
|
|
|
|
|
2021-03-07 23:23:25 +01:00
|
|
|
def get_json_dict(request):
|
|
|
|
d = request.get_json()
|
|
|
|
if not isinstance(d, dict):
|
|
|
|
abort(400, description="Invalid JSON format")
|
|
|
|
return d
|
|
|
|
|
2021-05-18 05:41:02 +02:00
|
|
|
|
2020-12-21 17:16:49 +01:00
|
|
|
def get_remote_address():
|
|
|
|
if request.headers.getlist("X-Forwarded-For"):
|
2021-09-08 21:41:12 +02:00
|
|
|
ip = request.headers.getlist("X-Forwarded-For")[0].split(",")[0]
|
2020-12-21 17:16:49 +01:00
|
|
|
else:
|
2021-05-18 05:41:02 +02:00
|
|
|
ip = request.remote_addr or "127.0.0.1"
|
2020-12-21 17:16:49 +01:00
|
|
|
|
|
|
|
return ip
|
2020-12-20 21:05:22 +01:00
|
|
|
|
2021-06-03 16:36:25 +02:00
|
|
|
|
2021-10-24 18:27:37 +02:00
|
|
|
def get_req_limits(default_limit, api_keys_db, multiplier=1):
|
2021-06-03 16:36:25 +02:00
|
|
|
req_limit = default_limit
|
|
|
|
|
|
|
|
if api_keys_db:
|
|
|
|
if request.is_json:
|
|
|
|
json = get_json_dict(request)
|
|
|
|
api_key = json.get("api_key")
|
|
|
|
else:
|
|
|
|
api_key = request.values.get("api_key")
|
|
|
|
|
|
|
|
if api_key:
|
|
|
|
db_req_limit = api_keys_db.lookup(api_key)
|
|
|
|
if db_req_limit is not None:
|
2021-07-04 18:36:13 +02:00
|
|
|
req_limit = db_req_limit * multiplier
|
2021-10-24 18:27:37 +02:00
|
|
|
|
2021-06-03 16:36:25 +02:00
|
|
|
return req_limit
|
|
|
|
|
|
|
|
|
2021-05-16 16:57:19 +02:00
|
|
|
def get_routes_limits(default_req_limit, daily_req_limit, api_keys_db):
|
2021-02-15 19:30:28 +01:00
|
|
|
if default_req_limit == -1:
|
|
|
|
# TODO: better way?
|
|
|
|
default_req_limit = 9999999999999
|
|
|
|
|
2021-06-03 16:36:25 +02:00
|
|
|
def minute_limits():
|
|
|
|
return "%s per minute" % get_req_limits(default_req_limit, api_keys_db)
|
2021-02-15 19:30:28 +01:00
|
|
|
|
2021-06-03 16:36:25 +02:00
|
|
|
def daily_limits():
|
|
|
|
return "%s per day" % get_req_limits(daily_req_limit, api_keys_db, 1440)
|
2021-03-31 17:57:02 +02:00
|
|
|
|
2021-06-03 16:36:25 +02:00
|
|
|
res = [minute_limits]
|
2021-05-16 16:57:19 +02:00
|
|
|
|
|
|
|
if daily_req_limit > 0:
|
2021-06-03 16:36:25 +02:00
|
|
|
res.append(daily_limits)
|
2021-05-16 16:57:19 +02:00
|
|
|
|
|
|
|
return res
|
2021-02-15 19:30:28 +01:00
|
|
|
|
2021-05-17 17:41:15 +02:00
|
|
|
|
2021-02-15 19:30:28 +01:00
|
|
|
def create_app(args):
|
2021-05-16 16:42:58 +02:00
|
|
|
from app.init import boot
|
2021-05-18 05:41:02 +02:00
|
|
|
|
2021-05-16 16:42:58 +02:00
|
|
|
boot(args.load_only)
|
2021-01-19 17:51:10 +01:00
|
|
|
|
2020-12-20 22:02:30 +01:00
|
|
|
from app.language import languages
|
2021-05-18 05:41:02 +02:00
|
|
|
|
2020-12-20 21:05:22 +01:00
|
|
|
app = Flask(__name__)
|
|
|
|
|
2021-02-15 19:30:28 +01:00
|
|
|
if args.debug:
|
2021-05-18 05:41:02 +02:00
|
|
|
app.config["TEMPLATES_AUTO_RELOAD"] = True
|
2020-12-20 21:05:22 +01:00
|
|
|
|
2021-10-25 17:12:09 +02:00
|
|
|
if not args.disable_files_translation:
|
|
|
|
remove_translated_files.setup(get_upload_dir())
|
|
|
|
|
2021-01-10 09:07:56 +01:00
|
|
|
# Map userdefined frontend languages to argos language object.
|
2021-02-15 19:30:28 +01:00
|
|
|
if args.frontend_language_source == "auto":
|
2021-05-18 05:41:02 +02:00
|
|
|
frontend_argos_language_source = type(
|
|
|
|
"obj", (object,), {"code": "auto", "name": "Auto Detect"}
|
|
|
|
)
|
2021-01-15 18:01:16 +01:00
|
|
|
else:
|
2021-05-18 05:41:02 +02:00
|
|
|
frontend_argos_language_source = next(
|
|
|
|
iter([l for l in languages if l.code == args.frontend_language_source]),
|
|
|
|
None,
|
|
|
|
)
|
2021-01-19 17:51:10 +01:00
|
|
|
|
2021-05-18 05:41:02 +02:00
|
|
|
frontend_argos_language_target = next(
|
|
|
|
iter([l for l in languages if l.code == args.frontend_language_target]), None
|
|
|
|
)
|
2021-01-19 17:51:10 +01:00
|
|
|
|
2021-10-24 16:57:45 +02:00
|
|
|
frontend_argos_supported_files_format = []
|
|
|
|
|
|
|
|
for file_format in get_supported_formats():
|
|
|
|
for ff in file_format.supported_file_extensions:
|
|
|
|
frontend_argos_supported_files_format.append(ff)
|
|
|
|
|
2021-01-10 09:07:56 +01:00
|
|
|
# Raise AttributeError to prevent app startup if user input is not valid.
|
|
|
|
if frontend_argos_language_source is None:
|
2021-05-18 05:41:02 +02:00
|
|
|
raise AttributeError(
|
|
|
|
f"{args.frontend_language_source} as frontend source language is not supported."
|
|
|
|
)
|
2021-01-10 09:07:56 +01:00
|
|
|
if frontend_argos_language_target is None:
|
2021-05-18 05:41:02 +02:00
|
|
|
raise AttributeError(
|
|
|
|
f"{args.frontend_language_target} as frontend target language is not supported."
|
|
|
|
)
|
|
|
|
|
2021-05-17 17:41:15 +02:00
|
|
|
api_keys_db = None
|
2021-01-10 09:07:56 +01:00
|
|
|
|
2021-05-16 16:57:19 +02:00
|
|
|
if args.req_limit > 0 or args.api_keys or args.daily_req_limit > 0:
|
2021-05-17 17:41:15 +02:00
|
|
|
api_keys_db = Database() if args.api_keys else None
|
|
|
|
|
2020-12-20 21:05:22 +01:00
|
|
|
from flask_limiter import Limiter
|
2021-05-18 05:41:02 +02:00
|
|
|
|
2020-12-20 21:05:22 +01:00
|
|
|
limiter = Limiter(
|
|
|
|
app,
|
|
|
|
key_func=get_remote_address,
|
2021-05-18 05:41:02 +02:00
|
|
|
default_limits=get_routes_limits(
|
|
|
|
args.req_limit, args.daily_req_limit, api_keys_db
|
|
|
|
),
|
2020-12-20 21:05:22 +01:00
|
|
|
)
|
2021-02-26 15:58:29 +01:00
|
|
|
else:
|
2021-05-18 05:41:02 +02:00
|
|
|
from .no_limiter import Limiter
|
|
|
|
|
|
|
|
limiter = Limiter()
|
|
|
|
|
2021-05-16 17:50:22 +02:00
|
|
|
if args.req_flood_threshold > 0:
|
|
|
|
flood.setup(args.req_flood_threshold)
|
2020-12-20 21:05:22 +01:00
|
|
|
|
2021-05-17 17:41:15 +02:00
|
|
|
def access_check(f):
|
|
|
|
@wraps(f)
|
|
|
|
def func(*a, **kw):
|
|
|
|
if flood.is_banned(get_remote_address()):
|
|
|
|
abort(403, description="Too many request limits violations")
|
2021-05-18 05:41:02 +02:00
|
|
|
|
2021-05-17 17:41:15 +02:00
|
|
|
if args.api_keys and args.require_api_key_origin:
|
|
|
|
if request.is_json:
|
|
|
|
json = get_json_dict(request)
|
|
|
|
ak = json.get("api_key")
|
|
|
|
else:
|
|
|
|
ak = request.values.get("api_key")
|
2021-09-08 22:24:50 +02:00
|
|
|
|
2021-05-18 05:41:02 +02:00
|
|
|
if (
|
2021-10-24 18:27:37 +02:00
|
|
|
api_keys_db.lookup(ak) is None and request.headers.get("Origin") != args.require_api_key_origin
|
2021-05-18 05:41:02 +02:00
|
|
|
):
|
|
|
|
abort(
|
|
|
|
403,
|
|
|
|
description="Please contact the server operator to obtain an API key",
|
|
|
|
)
|
2021-05-17 17:41:15 +02:00
|
|
|
|
|
|
|
return f(*a, **kw)
|
2021-05-18 05:41:02 +02:00
|
|
|
|
2021-05-17 17:41:15 +02:00
|
|
|
return func
|
|
|
|
|
2020-12-20 21:05:22 +01:00
|
|
|
@app.errorhandler(400)
|
|
|
|
def invalid_api(e):
|
|
|
|
return jsonify({"error": str(e.description)}), 400
|
|
|
|
|
|
|
|
@app.errorhandler(500)
|
|
|
|
def server_error(e):
|
|
|
|
return jsonify({"error": str(e.description)}), 500
|
|
|
|
|
|
|
|
@app.errorhandler(429)
|
|
|
|
def slow_down_error(e):
|
2021-05-16 17:50:22 +02:00
|
|
|
flood.report(get_remote_address())
|
2020-12-20 21:05:22 +01:00
|
|
|
return jsonify({"error": "Slowdown: " + str(e.description)}), 429
|
|
|
|
|
2021-05-16 17:50:22 +02:00
|
|
|
@app.errorhandler(403)
|
|
|
|
def denied(e):
|
|
|
|
return jsonify({"error": str(e.description)}), 403
|
|
|
|
|
2020-12-20 21:05:22 +01:00
|
|
|
@app.route("/")
|
2021-02-15 19:30:28 +01:00
|
|
|
@limiter.exempt
|
2020-12-20 21:05:22 +01:00
|
|
|
def index():
|
2021-05-18 05:41:02 +02:00
|
|
|
return render_template(
|
|
|
|
"index.html",
|
|
|
|
gaId=args.ga_id,
|
|
|
|
frontendTimeout=args.frontend_timeout,
|
|
|
|
api_keys=args.api_keys,
|
|
|
|
web_version=os.environ.get("LT_WEB") is not None,
|
2021-10-26 21:32:06 +02:00
|
|
|
version=get_version()
|
2021-05-18 05:41:02 +02:00
|
|
|
)
|
2020-12-20 21:05:22 +01:00
|
|
|
|
2021-05-18 05:41:02 +02:00
|
|
|
@app.route("/javascript-licenses", methods=["GET"])
|
2021-03-31 17:57:02 +02:00
|
|
|
@limiter.exempt
|
|
|
|
def javascript_licenses():
|
2021-05-18 05:41:02 +02:00
|
|
|
return render_template("javascript-licenses.html")
|
2021-03-31 17:57:02 +02:00
|
|
|
|
2021-05-18 05:41:02 +02:00
|
|
|
@app.route("/languages", methods=["GET", "POST"])
|
2021-02-15 19:30:28 +01:00
|
|
|
@limiter.exempt
|
2020-12-20 21:05:22 +01:00
|
|
|
def langs():
|
|
|
|
"""
|
|
|
|
Retrieve list of supported languages
|
|
|
|
---
|
|
|
|
tags:
|
|
|
|
- translate
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: List of languages
|
2021-01-10 09:38:11 +01:00
|
|
|
schema:
|
|
|
|
id: languages
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
code:
|
|
|
|
type: string
|
|
|
|
description: Language code
|
|
|
|
name:
|
|
|
|
type: string
|
|
|
|
description: Human-readable language name (in English)
|
2020-12-20 21:05:22 +01:00
|
|
|
429:
|
|
|
|
description: Slow down
|
2021-01-10 09:38:11 +01:00
|
|
|
schema:
|
|
|
|
id: error-slow-down
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Reason for slow down
|
2020-12-20 21:05:22 +01:00
|
|
|
"""
|
2021-05-18 05:41:02 +02:00
|
|
|
return jsonify([{"code": l.code, "name": l.name} for l in languages])
|
2020-12-20 21:05:22 +01:00
|
|
|
|
|
|
|
# Add cors
|
|
|
|
@app.after_request
|
|
|
|
def after_request(response):
|
2021-05-18 05:41:02 +02:00
|
|
|
response.headers.add("Access-Control-Allow-Origin", "*")
|
|
|
|
response.headers.add(
|
|
|
|
"Access-Control-Allow-Headers", "Authorization, Content-Type"
|
|
|
|
)
|
|
|
|
response.headers.add("Access-Control-Expose-Headers", "Authorization")
|
|
|
|
response.headers.add("Access-Control-Allow-Methods", "GET, POST")
|
|
|
|
response.headers.add("Access-Control-Allow-Credentials", "true")
|
|
|
|
response.headers.add("Access-Control-Max-Age", 60 * 60 * 24 * 20)
|
2020-12-20 21:05:22 +01:00
|
|
|
return response
|
|
|
|
|
2021-05-18 05:41:02 +02:00
|
|
|
@app.route("/translate", methods=["POST"])
|
2021-05-17 17:41:15 +02:00
|
|
|
@access_check
|
2020-12-20 21:05:22 +01:00
|
|
|
def translate():
|
|
|
|
"""
|
|
|
|
Translate text from a language to another
|
|
|
|
---
|
|
|
|
tags:
|
|
|
|
- translate
|
|
|
|
parameters:
|
|
|
|
- in: formData
|
|
|
|
name: q
|
|
|
|
schema:
|
2021-01-19 17:51:10 +01:00
|
|
|
oneOf:
|
|
|
|
- type: string
|
|
|
|
example: Hello world!
|
|
|
|
- type: array
|
|
|
|
example: ['Hello world!']
|
2020-12-20 21:05:22 +01:00
|
|
|
required: true
|
2021-01-19 17:51:10 +01:00
|
|
|
description: Text(s) to translate
|
2020-12-20 21:05:22 +01:00
|
|
|
- in: formData
|
|
|
|
name: source
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: en
|
|
|
|
required: true
|
2021-01-19 17:51:10 +01:00
|
|
|
description: Source language code
|
2020-12-20 21:05:22 +01:00
|
|
|
- in: formData
|
|
|
|
name: target
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: es
|
|
|
|
required: true
|
|
|
|
description: Target language code
|
2021-09-11 15:08:57 +02:00
|
|
|
- in: formData
|
|
|
|
name: format
|
|
|
|
schema:
|
|
|
|
type: string
|
2021-09-11 22:02:10 +02:00
|
|
|
enum: [text, html]
|
|
|
|
default: text
|
|
|
|
example: text
|
2021-09-11 15:08:57 +02:00
|
|
|
required: false
|
2021-09-11 22:02:10 +02:00
|
|
|
description: >
|
|
|
|
Format of source text:
|
|
|
|
* `text` - Plain text
|
|
|
|
* `html` - HTML markup
|
2021-02-15 19:30:28 +01:00
|
|
|
- in: formData
|
|
|
|
name: api_key
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
|
|
required: false
|
|
|
|
description: API key
|
2020-12-20 21:05:22 +01:00
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: Translated text
|
2021-01-10 09:38:11 +01:00
|
|
|
schema:
|
|
|
|
id: translate
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
translatedText:
|
2021-01-19 17:51:10 +01:00
|
|
|
oneOf:
|
|
|
|
- type: string
|
|
|
|
- type: array
|
|
|
|
description: Translated text(s)
|
2020-12-20 21:05:22 +01:00
|
|
|
400:
|
|
|
|
description: Invalid request
|
2021-01-10 09:38:11 +01:00
|
|
|
schema:
|
|
|
|
id: error-response
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Error message
|
2020-12-20 21:05:22 +01:00
|
|
|
500:
|
|
|
|
description: Translation error
|
2021-01-10 09:38:11 +01:00
|
|
|
schema:
|
|
|
|
id: error-response
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Error message
|
2020-12-20 21:05:22 +01:00
|
|
|
429:
|
|
|
|
description: Slow down
|
2021-01-10 09:38:11 +01:00
|
|
|
schema:
|
|
|
|
id: error-slow-down
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Reason for slow down
|
2021-05-16 17:50:22 +02:00
|
|
|
403:
|
|
|
|
description: Banned
|
|
|
|
schema:
|
|
|
|
id: error-response
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Error message
|
2020-12-20 21:05:22 +01:00
|
|
|
"""
|
|
|
|
if request.is_json:
|
2021-03-07 23:23:25 +01:00
|
|
|
json = get_json_dict(request)
|
2021-05-18 05:41:02 +02:00
|
|
|
q = json.get("q")
|
|
|
|
source_lang = json.get("source")
|
|
|
|
target_lang = json.get("target")
|
2021-09-11 15:08:57 +02:00
|
|
|
text_format = json.get("format")
|
2020-12-20 21:05:22 +01:00
|
|
|
else:
|
|
|
|
q = request.values.get("q")
|
|
|
|
source_lang = request.values.get("source")
|
|
|
|
target_lang = request.values.get("target")
|
2021-09-11 15:08:57 +02:00
|
|
|
text_format = request.values.get("format")
|
2020-12-20 21:05:22 +01:00
|
|
|
|
|
|
|
if not q:
|
|
|
|
abort(400, description="Invalid request: missing q parameter")
|
|
|
|
if not source_lang:
|
|
|
|
abort(400, description="Invalid request: missing source parameter")
|
|
|
|
if not target_lang:
|
|
|
|
abort(400, description="Invalid request: missing target parameter")
|
|
|
|
|
2021-01-19 17:51:10 +01:00
|
|
|
batch = isinstance(q, list)
|
|
|
|
|
2021-02-15 19:30:28 +01:00
|
|
|
if batch and args.batch_limit != -1:
|
2021-05-18 05:41:02 +02:00
|
|
|
batch_size = len(q)
|
|
|
|
if args.batch_limit < batch_size:
|
|
|
|
abort(
|
|
|
|
400,
|
|
|
|
description="Invalid request: Request (%d) exceeds text limit (%d)"
|
2021-10-24 18:27:37 +02:00
|
|
|
% (batch_size, args.batch_limit),
|
2021-05-18 05:41:02 +02:00
|
|
|
)
|
2021-01-19 18:53:53 +01:00
|
|
|
|
2021-02-15 19:30:28 +01:00
|
|
|
if args.char_limit != -1:
|
2021-01-19 17:51:10 +01:00
|
|
|
if batch:
|
2021-05-18 05:41:02 +02:00
|
|
|
chars = sum([len(text) for text in q])
|
2021-01-19 17:51:10 +01:00
|
|
|
else:
|
2021-05-18 05:41:02 +02:00
|
|
|
chars = len(q)
|
2021-01-19 17:51:10 +01:00
|
|
|
|
2021-02-15 19:30:28 +01:00
|
|
|
if args.char_limit < chars:
|
2021-05-18 05:41:02 +02:00
|
|
|
abort(
|
|
|
|
400,
|
|
|
|
description="Invalid request: Request (%d) exceeds character limit (%d)"
|
2021-10-24 18:27:37 +02:00
|
|
|
% (chars, args.char_limit),
|
2021-05-18 05:41:02 +02:00
|
|
|
)
|
2020-12-20 21:05:22 +01:00
|
|
|
|
2021-05-18 05:41:02 +02:00
|
|
|
if source_lang == "auto":
|
2021-08-02 07:06:56 +02:00
|
|
|
source_langs = []
|
|
|
|
if batch:
|
2021-10-24 18:27:37 +02:00
|
|
|
auto_detect_texts = q
|
2021-08-02 07:06:56 +02:00
|
|
|
else:
|
2021-10-24 18:27:37 +02:00
|
|
|
auto_detect_texts = [q]
|
2021-08-02 07:06:56 +02:00
|
|
|
|
|
|
|
overall_candidates = detect_languages(q)
|
2021-10-24 18:27:37 +02:00
|
|
|
|
2021-08-02 07:06:56 +02:00
|
|
|
for text_to_check in auto_detect_texts:
|
2021-10-24 18:27:37 +02:00
|
|
|
if len(text_to_check) > 40:
|
|
|
|
candidate_langs = detect_languages(text_to_check)
|
|
|
|
else:
|
|
|
|
# Unable to accurately detect languages for short texts
|
|
|
|
candidate_langs = overall_candidates
|
|
|
|
source_langs.append(candidate_langs[0]["language"])
|
|
|
|
|
|
|
|
if args.debug:
|
|
|
|
print(text_to_check, candidate_langs)
|
|
|
|
print("Auto detected: %s" % candidate_langs[0]["language"])
|
2021-08-02 07:06:56 +02:00
|
|
|
else:
|
2021-10-24 18:27:37 +02:00
|
|
|
if batch:
|
|
|
|
source_langs = [source_lang for text in q]
|
|
|
|
else:
|
|
|
|
source_langs = [source_lang]
|
2021-01-19 17:51:10 +01:00
|
|
|
|
2021-08-02 07:06:56 +02:00
|
|
|
src_langs = [next(iter([l for l in languages if l.code == source_lang]), None) for source_lang in source_langs]
|
2021-10-24 18:27:37 +02:00
|
|
|
|
2021-08-02 07:06:56 +02:00
|
|
|
for idx, lang in enumerate(src_langs):
|
2021-10-24 18:27:37 +02:00
|
|
|
if lang is None:
|
|
|
|
abort(400, description="%s is not supported" % source_langs[idx])
|
2021-01-13 15:33:58 +01:00
|
|
|
|
2020-12-20 21:05:22 +01:00
|
|
|
tgt_lang = next(iter([l for l in languages if l.code == target_lang]), None)
|
2021-01-19 17:51:10 +01:00
|
|
|
|
2020-12-20 21:05:22 +01:00
|
|
|
if tgt_lang is None:
|
|
|
|
abort(400, description="%s is not supported" % target_lang)
|
|
|
|
|
2021-09-11 15:08:57 +02:00
|
|
|
if not text_format:
|
|
|
|
text_format = "text"
|
|
|
|
|
|
|
|
if text_format not in ["text", "html"]:
|
|
|
|
abort(400, description="%s format is not supported" % text_format)
|
|
|
|
|
2020-12-20 21:05:22 +01:00
|
|
|
try:
|
2021-05-18 05:41:02 +02:00
|
|
|
if batch:
|
2021-08-02 07:06:56 +02:00
|
|
|
results = []
|
|
|
|
for idx, text in enumerate(q):
|
2021-10-24 18:27:37 +02:00
|
|
|
translator = src_langs[idx].get_translation(tgt_lang)
|
2021-09-11 15:08:57 +02:00
|
|
|
|
2021-10-24 18:27:37 +02:00
|
|
|
if text_format == "html":
|
|
|
|
translated_text = str(translate_html(translator, text))
|
|
|
|
else:
|
|
|
|
translated_text = translator.translate(transliterate(text, target_lang=source_langs[idx]))
|
2021-09-11 15:08:57 +02:00
|
|
|
|
2021-10-24 18:27:37 +02:00
|
|
|
results.append(translated_text)
|
2021-05-18 05:41:02 +02:00
|
|
|
return jsonify(
|
|
|
|
{
|
2021-08-02 07:06:56 +02:00
|
|
|
"translatedText": results
|
2021-05-18 05:41:02 +02:00
|
|
|
}
|
|
|
|
)
|
|
|
|
else:
|
2021-08-02 07:06:56 +02:00
|
|
|
translator = src_langs[0].get_translation(tgt_lang)
|
2021-09-11 15:08:57 +02:00
|
|
|
|
|
|
|
if text_format == "html":
|
2021-09-24 17:30:19 +02:00
|
|
|
translated_text = str(translate_html(translator, q))
|
2021-09-11 15:08:57 +02:00
|
|
|
else:
|
|
|
|
translated_text = translator.translate(transliterate(q, target_lang=source_langs[0]))
|
2021-05-18 05:41:02 +02:00
|
|
|
return jsonify(
|
|
|
|
{
|
2021-09-11 15:08:57 +02:00
|
|
|
"translatedText": translated_text
|
2021-05-18 05:41:02 +02:00
|
|
|
}
|
|
|
|
)
|
2020-12-20 21:05:22 +01:00
|
|
|
except Exception as e:
|
|
|
|
abort(500, description="Cannot translate text: %s" % str(e))
|
|
|
|
|
2021-10-24 18:27:37 +02:00
|
|
|
@app.route("/translate_file", methods=["POST"])
|
|
|
|
@access_check
|
|
|
|
def translate_file():
|
|
|
|
"""
|
|
|
|
Translate file from a language to another
|
|
|
|
---
|
|
|
|
tags:
|
|
|
|
- translate
|
|
|
|
consumes:
|
|
|
|
- multipart/form-data
|
|
|
|
parameters:
|
|
|
|
- in: formData
|
|
|
|
name: file
|
|
|
|
type: file
|
|
|
|
required: true
|
2021-10-26 22:04:50 +02:00
|
|
|
description: File to translate
|
2021-10-24 18:27:37 +02:00
|
|
|
- in: formData
|
|
|
|
name: source
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: en
|
|
|
|
required: true
|
|
|
|
description: Source language code
|
|
|
|
- in: formData
|
|
|
|
name: target
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: es
|
|
|
|
required: true
|
|
|
|
description: Target language code
|
|
|
|
- in: formData
|
|
|
|
name: api_key
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
|
|
required: false
|
|
|
|
description: API key
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: Translated file
|
|
|
|
schema:
|
|
|
|
id: translate
|
|
|
|
type: object
|
|
|
|
properties:
|
2021-10-25 10:50:55 +02:00
|
|
|
translatedFileUrl:
|
|
|
|
type: string
|
|
|
|
description: Translated file url
|
2021-10-24 18:27:37 +02:00
|
|
|
400:
|
|
|
|
description: Invalid request
|
|
|
|
schema:
|
|
|
|
id: error-response
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Error message
|
|
|
|
500:
|
|
|
|
description: Translation error
|
|
|
|
schema:
|
|
|
|
id: error-response
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Error message
|
|
|
|
429:
|
|
|
|
description: Slow down
|
|
|
|
schema:
|
|
|
|
id: error-slow-down
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Reason for slow down
|
|
|
|
403:
|
|
|
|
description: Banned
|
|
|
|
schema:
|
|
|
|
id: error-response
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Error message
|
|
|
|
"""
|
2021-10-25 17:09:23 +02:00
|
|
|
if args.disable_files_translation:
|
|
|
|
abort(403, description="Files translation are disabled on this server.")
|
|
|
|
|
2021-10-24 19:14:09 +02:00
|
|
|
source_lang = request.form.get("source")
|
|
|
|
target_lang = request.form.get("target")
|
2021-10-24 18:27:37 +02:00
|
|
|
file = request.files['file']
|
|
|
|
|
|
|
|
if not file:
|
2021-10-26 22:04:50 +02:00
|
|
|
abort(400, description="Invalid request: missing file parameter")
|
2021-10-24 18:27:37 +02:00
|
|
|
if not source_lang:
|
|
|
|
abort(400, description="Invalid request: missing source parameter")
|
|
|
|
if not target_lang:
|
|
|
|
abort(400, description="Invalid request: missing target parameter")
|
|
|
|
|
|
|
|
if file.filename == '':
|
|
|
|
abort(400, description="Invalid request: empty file")
|
|
|
|
|
|
|
|
if os.path.splitext(file.filename)[1] not in frontend_argos_supported_files_format:
|
|
|
|
abort(400, description="Invalid request: file format not supported")
|
|
|
|
|
|
|
|
source_langs = [source_lang]
|
|
|
|
src_langs = [next(iter([l for l in languages if l.code == source_lang]), None) for source_lang in source_langs]
|
|
|
|
|
|
|
|
for idx, lang in enumerate(src_langs):
|
|
|
|
if lang is None:
|
|
|
|
abort(400, description="%s is not supported" % source_langs[idx])
|
|
|
|
|
|
|
|
tgt_lang = next(iter([l for l in languages if l.code == target_lang]), None)
|
|
|
|
|
|
|
|
if tgt_lang is None:
|
|
|
|
abort(400, description="%s is not supported" % target_lang)
|
|
|
|
|
|
|
|
try:
|
|
|
|
filename = str(uuid.uuid4()) + '.' + secure_filename(file.filename)
|
2021-10-25 11:06:39 +02:00
|
|
|
filepath = os.path.join(get_upload_dir(), filename)
|
2021-10-24 18:27:37 +02:00
|
|
|
|
|
|
|
file.save(filepath)
|
|
|
|
|
|
|
|
translated_file_path = argostranslatefiles.translate_file(src_langs[0].get_translation(tgt_lang), filepath)
|
2021-10-24 18:38:35 +02:00
|
|
|
translated_filename = os.path.basename(translated_file_path)
|
2021-10-25 10:56:17 +02:00
|
|
|
|
2021-10-24 18:27:37 +02:00
|
|
|
return jsonify(
|
|
|
|
{
|
2021-10-25 10:50:55 +02:00
|
|
|
"translatedFileUrl": url_for('download_file', filename=translated_filename, _external=True)
|
2021-10-24 18:27:37 +02:00
|
|
|
}
|
|
|
|
)
|
|
|
|
except Exception as e:
|
|
|
|
abort(500, description=e)
|
|
|
|
|
2021-10-24 18:38:35 +02:00
|
|
|
@app.route("/download_file/<string:filename>", methods=["GET"])
|
|
|
|
@access_check
|
2021-10-24 18:44:35 +02:00
|
|
|
def download_file(filename: str):
|
2021-10-24 18:38:35 +02:00
|
|
|
"""
|
|
|
|
Download a translated file
|
|
|
|
"""
|
2021-10-25 17:09:23 +02:00
|
|
|
if args.disable_files_translation:
|
2021-10-26 21:41:14 +02:00
|
|
|
abort(400, description="Files translation are disabled on this server.")
|
|
|
|
|
2021-10-25 11:06:39 +02:00
|
|
|
filepath = os.path.join(get_upload_dir(), filename)
|
2021-10-26 21:41:14 +02:00
|
|
|
try:
|
|
|
|
checked_filepath = security.path_traversal_check(filepath, get_upload_dir())
|
|
|
|
if os.path.isfile(checked_filepath):
|
|
|
|
filepath = checked_filepath
|
|
|
|
except security.SuspiciousFileOperation:
|
|
|
|
abort(400, description="Invalid filename")
|
2021-10-24 19:14:09 +02:00
|
|
|
|
|
|
|
return_data = io.BytesIO()
|
|
|
|
with open(filepath, 'rb') as fo:
|
|
|
|
return_data.write(fo.read())
|
|
|
|
return_data.seek(0)
|
|
|
|
|
2021-10-25 12:05:39 +02:00
|
|
|
download_filename = filename.split('.')
|
|
|
|
download_filename.pop(0)
|
|
|
|
download_filename = '.'.join(download_filename)
|
2021-10-24 18:44:35 +02:00
|
|
|
|
2021-10-25 12:05:39 +02:00
|
|
|
return send_file(return_data, as_attachment=True, attachment_filename=download_filename)
|
2021-10-24 18:38:35 +02:00
|
|
|
|
2021-05-18 05:41:02 +02:00
|
|
|
@app.route("/detect", methods=["POST"])
|
2021-05-17 17:41:15 +02:00
|
|
|
@access_check
|
2021-02-10 16:51:17 +01:00
|
|
|
def detect():
|
|
|
|
"""
|
|
|
|
Detect the language of a single text
|
|
|
|
---
|
|
|
|
tags:
|
|
|
|
- translate
|
|
|
|
parameters:
|
|
|
|
- in: formData
|
|
|
|
name: q
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: Hello world!
|
|
|
|
required: true
|
|
|
|
description: Text to detect
|
2021-02-15 19:30:28 +01:00
|
|
|
- in: formData
|
|
|
|
name: api_key
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
|
|
required: false
|
|
|
|
description: API key
|
2021-02-10 16:51:17 +01:00
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: Detections
|
|
|
|
schema:
|
|
|
|
id: detections
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
confidence:
|
|
|
|
type: number
|
|
|
|
format: float
|
|
|
|
minimum: 0
|
|
|
|
maximum: 1
|
|
|
|
description: Confidence value
|
|
|
|
example: 0.6
|
|
|
|
language:
|
|
|
|
type: string
|
|
|
|
description: Language code
|
|
|
|
example: en
|
|
|
|
400:
|
|
|
|
description: Invalid request
|
|
|
|
schema:
|
|
|
|
id: error-response
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
2021-05-18 05:41:02 +02:00
|
|
|
description: Error message
|
2021-02-10 16:51:17 +01:00
|
|
|
500:
|
|
|
|
description: Detection error
|
|
|
|
schema:
|
|
|
|
id: error-response
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Error message
|
|
|
|
429:
|
|
|
|
description: Slow down
|
|
|
|
schema:
|
|
|
|
id: error-slow-down
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Reason for slow down
|
2021-05-16 17:50:22 +02:00
|
|
|
403:
|
|
|
|
description: Banned
|
|
|
|
schema:
|
|
|
|
id: error-response
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Error message
|
2021-02-10 16:51:17 +01:00
|
|
|
"""
|
2021-05-16 17:50:22 +02:00
|
|
|
if flood.is_banned(get_remote_address()):
|
|
|
|
abort(403, description="Too many request limits violations")
|
|
|
|
|
2021-02-10 16:51:17 +01:00
|
|
|
if request.is_json:
|
2021-03-07 23:23:25 +01:00
|
|
|
json = get_json_dict(request)
|
2021-05-18 05:41:02 +02:00
|
|
|
q = json.get("q")
|
2021-02-10 16:51:17 +01:00
|
|
|
else:
|
|
|
|
q = request.values.get("q")
|
|
|
|
|
|
|
|
if not q:
|
|
|
|
abort(400, description="Invalid request: missing q parameter")
|
|
|
|
|
2021-03-11 10:01:12 +01:00
|
|
|
return jsonify(detect_languages(q))
|
2021-02-10 16:51:17 +01:00
|
|
|
|
2021-01-10 09:07:56 +01:00
|
|
|
@app.route("/frontend/settings")
|
2021-02-15 19:30:28 +01:00
|
|
|
@limiter.exempt
|
2021-01-10 09:07:56 +01:00
|
|
|
def frontend_settings():
|
|
|
|
"""
|
|
|
|
Retrieve frontend specific settings
|
|
|
|
---
|
|
|
|
tags:
|
|
|
|
- frontend
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: frontend settings
|
|
|
|
schema:
|
|
|
|
id: frontend-settings
|
|
|
|
type: object
|
|
|
|
properties:
|
2021-01-10 10:24:42 +01:00
|
|
|
charLimit:
|
|
|
|
type: integer
|
|
|
|
description: Character input limit for this language (-1 indicates no limit)
|
2021-01-28 17:16:55 +01:00
|
|
|
frontendTimeout:
|
|
|
|
type: integer
|
|
|
|
description: Frontend translation timeout
|
2021-10-09 16:04:16 +02:00
|
|
|
suggestions:
|
|
|
|
type: boolean
|
|
|
|
description: Whether submitting suggestions is enabled.
|
2021-10-24 16:57:45 +02:00
|
|
|
supportedFilesFormat:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
type: string
|
|
|
|
description: Supported files format
|
2021-01-10 09:07:56 +01:00
|
|
|
language:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
source:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
code:
|
|
|
|
type: string
|
|
|
|
description: Language code
|
|
|
|
name:
|
|
|
|
type: string
|
|
|
|
description: Human-readable language name (in English)
|
|
|
|
target:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
code:
|
|
|
|
type: string
|
|
|
|
description: Language code
|
|
|
|
name:
|
|
|
|
type: string
|
|
|
|
description: Human-readable language name (in English)
|
|
|
|
"""
|
2021-05-18 05:41:02 +02:00
|
|
|
return jsonify(
|
|
|
|
{
|
|
|
|
"charLimit": args.char_limit,
|
|
|
|
"frontendTimeout": args.frontend_timeout,
|
2021-10-09 15:45:58 +02:00
|
|
|
"suggestions": args.suggestions,
|
2021-10-25 17:09:23 +02:00
|
|
|
"filesTranslation": not args.disable_files_translation,
|
|
|
|
"supportedFilesFormat": [] if args.disable_files_translation else frontend_argos_supported_files_format,
|
2021-05-18 05:41:02 +02:00
|
|
|
"language": {
|
|
|
|
"source": {
|
|
|
|
"code": frontend_argos_language_source.code,
|
|
|
|
"name": frontend_argos_language_source.name,
|
|
|
|
},
|
|
|
|
"target": {
|
|
|
|
"code": frontend_argos_language_target.code,
|
|
|
|
"name": frontend_argos_language_target.name,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
)
|
2020-12-20 21:05:22 +01:00
|
|
|
|
2021-10-09 11:25:56 +02:00
|
|
|
@app.route("/suggest", methods=["POST"])
|
|
|
|
@limiter.exempt
|
|
|
|
def suggest():
|
2021-10-09 16:04:16 +02:00
|
|
|
"""
|
|
|
|
Submit a suggestion to improve a translation
|
|
|
|
---
|
|
|
|
tags:
|
|
|
|
- feedback
|
|
|
|
parameters:
|
|
|
|
- in: formData
|
|
|
|
name: q
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: Hello world!
|
|
|
|
required: true
|
|
|
|
description: Original text
|
|
|
|
- in: formData
|
|
|
|
name: s
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: ¡Hola mundo!
|
|
|
|
required: true
|
|
|
|
description: Suggested translation
|
|
|
|
- in: formData
|
|
|
|
name: source
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: en
|
|
|
|
required: true
|
|
|
|
description: Language of original text
|
|
|
|
- in: formData
|
|
|
|
name: target
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: es
|
|
|
|
required: true
|
|
|
|
description: Language of suggested translation
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: Success
|
|
|
|
schema:
|
|
|
|
id: suggest-response
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
success:
|
|
|
|
type: boolean
|
|
|
|
description: Whether submission was successful
|
|
|
|
403:
|
|
|
|
description: Not authorized
|
|
|
|
schema:
|
|
|
|
id: error-response
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
error:
|
|
|
|
type: string
|
|
|
|
description: Error message
|
|
|
|
"""
|
|
|
|
if not args.suggestions:
|
|
|
|
abort(403, description="Suggestions are disabled on this server.")
|
2021-10-09 15:45:58 +02:00
|
|
|
|
2021-10-09 11:44:00 +02:00
|
|
|
q = request.values.get("q")
|
|
|
|
s = request.values.get("s")
|
|
|
|
source_lang = request.values.get("source")
|
|
|
|
target_lang = request.values.get("target")
|
|
|
|
|
|
|
|
SuggestionsDatabase().add(q, s, source_lang, target_lang)
|
2021-10-09 11:25:56 +02:00
|
|
|
return jsonify({"success": True})
|
|
|
|
|
2021-10-09 16:04:16 +02:00
|
|
|
swag = swagger(app)
|
|
|
|
swag["info"]["version"] = "1.2.1"
|
|
|
|
swag["info"]["title"] = "LibreTranslate"
|
|
|
|
|
|
|
|
@app.route("/spec")
|
|
|
|
@limiter.exempt
|
|
|
|
def spec():
|
|
|
|
return jsonify(swag)
|
|
|
|
|
2021-05-18 05:41:02 +02:00
|
|
|
SWAGGER_URL = "/docs" # URL for exposing Swagger UI (without trailing '/')
|
|
|
|
API_URL = "/spec"
|
2020-12-20 23:11:06 +01:00
|
|
|
|
2020-12-20 21:05:22 +01:00
|
|
|
# Call factory function to create our blueprint
|
2021-05-18 05:41:02 +02:00
|
|
|
swaggerui_blueprint = get_swaggerui_blueprint(SWAGGER_URL, API_URL)
|
2020-12-20 21:05:22 +01:00
|
|
|
|
|
|
|
app.register_blueprint(swaggerui_blueprint)
|
|
|
|
|
2020-12-21 00:17:06 +01:00
|
|
|
return app
|