示例#1
0
def song_variant_existence(variant_id):
    try:
        variant = g.model.variants.find_one(variant_id=variant_id)
    except ValueError:
        raise AppException(
            EVENTS.REQUEST_EXCEPTION, 404,
            (EXCODES.DOES_NOT_EXIST, STRINGS.SONG_VARIANT_NOT_FOUND_ERROR))

    if variant is None:
        raise AppException(
            EVENTS.BASE_EXCEPTION, 404,
            (EXCODES.DOES_NOT_EXIST, STRINGS.SONG_VARIANT_NOT_FOUND_ERROR))
    return variant
示例#2
0
def songbook_existence(songbook_id):
    try:
        songbook = g.model.songbooks.find_one(songbook_id=songbook_id)
    except ValueError:
        raise AppException(
            EVENTS.REQUEST_EXCEPTION, 404,
            (EXCODES.DOES_NOT_EXIST, STRINGS.SONGBOOK_NOT_FOUND_ERROR))

    if songbook is None:
        raise AppException(
            EVENTS.BASE_EXCEPTION, 404,
            (EXCODES.DOES_NOT_EXIST, STRINGS.SONGBOOK_NOT_FOUND_ERROR))
    return songbook
示例#3
0
def author_existence(author_id):
    try:
        author = g.model.authors.find_one(author_id=author_id)
    except ValueError:
        raise AppException(
            EVENTS.REQUEST_EXCEPTION, 404,
            (EXCODES.DOES_NOT_EXIST, STRINGS.AUTHOR_NOT_FOUND_ERROR))

    if author is None:
        raise AppException(
            EVENTS.BASE_EXCEPTION, 404,
            (EXCODES.DOES_NOT_EXIST, STRINGS.AUTHOR_NOT_FOUND_ERROR))
    return author
示例#4
0
def interpreter_existence(interpreter_id):
    try:
        interpreter = g.model.interpreters.find_one(
            interpreter_id=interpreter_id)
    except ValueError:
        raise AppException(
            EVENTS.REQUEST_EXCEPTION, 404,
            (EXCODES.DOES_NOT_EXIST, STRINGS.INTERPRETER_NOT_FOUND_ERROR))

    if interpreter is None:
        raise AppException(
            EVENTS.BASE_EXCEPTION, 404,
            (EXCODES.DOES_NOT_EXIST, STRINGS.INTERPRETER_NOT_FOUND_ERROR))
    return interpreter
示例#5
0
def song_variant_request(request):
    ex = AppException(EVENTS.REQUEST_EXCEPTION, 422)

    if 'title' not in request or not request['title']:
        ex.add_error(EXCODES.MISSING_FIELD,
                     STRINGS.REQUEST_VARIANT_TITLE_MISSING, 'title')
    if 'text' not in request or not request['text']:
        ex.add_error(EXCODES.MISSING_FIELD,
                     STRINGS.REQUEST_VARIANT_TEXT_MISSING, 'text')
    if 'description' not in request:
        ex.add_error(EXCODES.MISSING_FIELD,
                     STRINGS.REQUEST_VARIANT_DESCRIPTION_MISSING,
                     'description')

    if ex.errors:
        raise ex

    data = {
        'title': request['title'],
        'text': request['text'],
        'description': request['description']
    }
    if 'visibility' in request:
        data['visibility'] = request['visibility']

    return data
示例#6
0
def interpreter_nonexistence(name):
    interpreter = g.model.interpreters.find_one(name=name)
    if interpreter is not None:
        raise AppException(
            EVENTS.BASE_EXCEPTION, 422,
            (EXCODES.ALREADY_EXISTS, STRINGS.INTERPRETER_ALREADY_EXISTS_ERROR))
    return True
示例#7
0
def author_nonexistence(name):
    author = g.model.authors.find_one(name=name)
    if author is not None:
        raise AppException(
            EVENTS.BASE_EXCEPTION, 422,
            (EXCODES.ALREADY_EXISTS, STRINGS.AUTHOR_ALREADY_EXISTS_ERROR))
    return True
示例#8
0
def songbook_options(data):
    options = {}
    if 'format' in data:
        if data['format'] not in format_dict:
            raise AppException(
                EVENTS.REQUEST_EXCEPTION, 422,
                (EXCODES.WRONG_VALUE, STRINGS.JSON_REQUEST_ERROR, 'format'))

    options['format'] = data[
        'format'] if 'format' in data else DEFAULTS.SONGBOOK_OPTIONS['format']
    options['columns'] = int(
        data['columns']
    ) if 'columns' in data else DEFAULTS.SONGBOOK_OPTIONS['columns']
    options['index'] = bool(
        data['index']
    ) if 'index' in data else DEFAULTS.SONGBOOK_OPTIONS['index']
    options['chorded'] = bool(
        data['chorded']
    ) if 'chorded' in data else DEFAULTS.SONGBOOK_OPTIONS['chorded']
    options['front_index'] = bool(
        data['front_index']
    ) if 'front_index' in data else DEFAULTS.SONGBOOK_OPTIONS['front_index']
    options['page_numbering'] = bool(
        data['page_numbering']) if 'page_numbering' in data else DEFAULTS.SONGBOOK_OPTIONS['page_numbering'] # yapf: disable
    options['song_numbering'] = bool(
        data['song_numbering']) if 'song_numbering' in data else DEFAULTS.SONGBOOK_OPTIONS['song_numbering'] # yapf: disable

    return options
示例#9
0
def song_format(request):
    translation, log = translate_to_tex(request['text'])
    if log:
        raise AppException(
            EVENTS.COMPILATION_EXCEPTION, 422,
            (EXCODES.COMPILATION_ERROR, STRINGS.COMPILATION_ERROR, log))
    return translation
示例#10
0
def songbook_single(songbook_id):
    songbook = validators.songbook_existence(songbook_id)
    if current_user.get_id() != songbook.get_owner():
        raise AppException(EVENTS.BASE_EXCEPTION, 403,
                           (EXCODES.INSUFFICIENT_PERMISSIONS,
                            STRINGS.INSUFFICIENT_PERMISSIONS))

    if request.method == 'GET':
        if 'Accept' in request.headers and request.headers[
                'Accept'] == 'application/pdf':
            return jsonify(export_songbook(songbook)), 200
        return jsonify(songbook.get_serialized_data()), 200

    elif request.method == 'PUT':
        data = request.get_json()
        validators.json_request(data)
        data = validators.songbooks_request(data)

        data['options'] = validators.songbook_options(data['options'])
        data['songs'] = validators.songbook_songs(data['songs'])

        songbook.set_data(data)
        g.model.songbooks.save(songbook)

        data['songbook_id'] = songbook_id
        log_event(EVENTS.SONGBOOK_EDIT, current_user.get_id(), data)

        return jsonify(songbook.get_serialized_data()), 200

    else:
        g.model.songbooks.delete(songbook)
        log_event(EVENTS.SONGBOOK_DELETE, current_user.get_id(), songbook_id)

        return jsonify(), 204
示例#11
0
def songbooks_options_request(request):
    if 'options' not in request:
        raise AppException(
            EVENTS.REQUEST_EXCEPTION, 422,
            (EXCODES.MISSING_FIELD, STRINGS.REQUEST_SONGBOOK_OPTIONS_MISSING,
             'options'))
    return {'options': request['options']}
示例#12
0
def user_existence(user_id):
    user = g.model.users.find(int(user_id))
    if user is None:
        raise AppException(
            EVENTS.BASE_EXCEPTION, 404,
            (EXCODES.DOES_NOT_EXIST, STRINGS.USER_NOT_FOUND_ERROR))
    return user
示例#13
0
文件: songs.py 项目: zpevnik/backend
def song_variant_single(song_id, variant_id):
    song = validators.song_existence(song_id)

    variant = validators.song_variant_existence(variant_id)
    if not permissions.check_perm(current_user, variant, visibility=True):
        raise AppException(EVENTS.BASE_EXCEPTION, 403,
                           (EXCODES.INSUFFICIENT_PERMISSIONS, STRINGS.INSUFFICIENT_PERMISSIONS))

    if request.method == 'GET':
        return jsonify(variant.get_serialized_data()), 200

    elif request.method == 'PUT':
        if not permissions.check_perm(current_user, variant, editing=True):
            raise AppException(EVENTS.BASE_EXCEPTION, 403,
                               (EXCODES.INSUFFICIENT_PERMISSIONS, STRINGS.INSUFFICIENT_PERMISSIONS))

        data = request.get_json()
        validators.json_request(data)
        data = validators.song_variant_request(data)

        # Currently, translated and validated song is not saved.
        # This can be changed in the future.
        validators.song_format(data)
        variant.set_data(data)

        data['variant_id'] = variant_id
        g.model.variants.save(variant)
        log_event(EVENTS.VARIANT_EDIT, current_user.get_id(), data)

        return jsonify(variant.get_serialized_data()), 200

    else:
        if not permissions.check_perm(current_user, variant, editing=True):
            raise AppException(EVENTS.BASE_EXCEPTION, 403,
                               (EXCODES.INSUFFICIENT_PERMISSIONS, STRINGS.INSUFFICIENT_PERMISSIONS))

        g.model.variants.delete(variant)
        log_event(EVENTS.VARIANT_DELETE, current_user.get_id(), variant_id)

        # there is no remaining variant for this song
        if not len(g.model.variants.find(song_id=song_id)):
            g.model.songs.delete(song)
            log_event(EVENTS.SONG_DELETE, current_user.get_id(), song_id)

        return jsonify(), 204
示例#14
0
文件: export.py 项目: zpevnik/backend
    def error(err, output):
        error = "Error during " + err + ":\n"
        for line in output.decode('latin-1').split("\n"):
            if line.startswith("!"):
                error += line + "\n"

        raise AppException(
            EVENTS.COMPILATION_EXCEPTION, 500,
            (EXCODES.COMPILATION_ERROR, STRINGS.COMPILATION_ERROR, error))
示例#15
0
def songbook_duplicate(songbook_id):
    songbook = validators.songbook_existence(songbook_id)
    if current_user.get_id() != songbook.get_owner():
        raise AppException(EVENTS.BASE_EXCEPTION, 403,
                           (EXCODES.INSUFFICIENT_PERMISSIONS,
                            STRINGS.INSUFFICIENT_PERMISSIONS))

    data = songbook.get_serialized_data()
    data['owner'] = current_user.get_id()

    new_songbook = g.model.songbooks.create_songbook(data)
    log_event(EVENTS.SONGBOOK_NEW, current_user.get_id(), data)

    return jsonify(link='songbooks/{}'.format(new_songbook.get_id())), 201, \
          {'location': '/songbooks/{}'.format(new_songbook.get_id())}
示例#16
0
def handle_GET_request(request):
    data = {
        'query':
        request['query']
        if 'query' in request and request['query'] is not None else "",
        'page':
        0,
        'per_page':
        30,
        'order':
        None
    }

    if 'page' in request and request['page'] is not None:
        if int(request['page']) < 0:
            raise AppException(
                EVENTS.REQUEST_EXCEPTION, 400,
                (EXCODES.WRONG_VALUE, STRINGS.REQUEST_PAGE_OOR_ERROR, 'page'))
        data['page'] = int(request['page'])

    if 'per_page' in request and request['per_page'] is not None:
        if int(request['per_page']) < 1 or int(request['per_page']) > 200:
            raise AppException(
                EVENTS.REQUEST_EXCEPTION, 400,
                (EXCODES.WRONG_VALUE, STRINGS.REQUEST_PER_PAGE_OOR_ERROR,
                 'per_page'))
        data['per_page'] = int(request['per_page'])

    if 'order' in request and request['order'] is not None:
        if request['order'] not in ORDERING:
            raise AppException(
                EVENTS.REQUEST_EXCEPTION, 400,
                (EXCODES.WRONG_VALUE, STRINGS.REQUEST_PAGE_OOR_ERROR, 'order'))
        data['order'] = request['order']

    return data
示例#17
0
def songbook_title(songbook_id):
    songbook = validators.songbook_existence(songbook_id)
    if current_user.get_id() != songbook.get_owner():
        raise AppException(EVENTS.BASE_EXCEPTION, 403,
                           (EXCODES.INSUFFICIENT_PERMISSIONS,
                            STRINGS.INSUFFICIENT_PERMISSIONS))

    data = request.get_json()
    validators.json_request(data)
    data = validators.songbooks_title_request(data)

    songbook.set_title(data['title'])
    g.model.songbooks.save(songbook)

    data['songbook_id'] = songbook_id
    log_event(EVENTS.SONGBOOK_EDIT, current_user.get_id(), data)

    return jsonify(songbook.get_serialized_data()), 200
示例#18
0
def songbooks_request(request):
    ex = AppException(EVENTS.REQUEST_EXCEPTION, 422)

    if 'title' not in request or not request['title']:
        ex.add_error(EXCODES.MISSING_FIELD,
                     STRINGS.REQUEST_SONGBOOK_TITLE_MISSING, 'title')
    if 'options' not in request:
        ex.add_error(EXCODES.MISSING_FIELD,
                     STRINGS.REQUEST_SONGBOOK_OPTIONS_MISSING, 'options')
    if 'songs' not in request:
        ex.add_error(EXCODES.MISSING_FIELD,
                     STRINGS.REQUEST_SONGBOOK_SONGS_MISSING, 'songs')

    if ex.errors:
        raise ex

    return {
        'title': request['title'],
        'options': request['options'],
        'songs': request['songs']
    }
示例#19
0
文件: songs.py 项目: zpevnik/backend
def song_variant_duplicate(song_id, variant_id):
    validators.song_existence(song_id)

    variant = validators.song_variant_existence(variant_id)
    if not permissions.check_perm(current_user, variant, visibility=True):
        raise AppException(EVENTS.BASE_EXCEPTION, 403,
                           (EXCODES.INSUFFICIENT_PERMISSIONS, STRINGS.INSUFFICIENT_PERMISSIONS))

    data = variant.get_serialized_data()
    data['owner'] = current_user.get_id()
    data['visibility'] = PERMISSION.PRIVATE
    data['title'] = '{} duplicate'.format(data['title'])

    g.model.variants.create_variant(data)
    log_event(EVENTS.VARIANT_NEW, current_user.get_id(), data)

    song = validators.song_existence(song_id)

    return jsonify(song.get_serialized_data(current_user.get_id())), 200
示例#20
0
def songs_request(request):
    ex = AppException(EVENTS.REQUEST_EXCEPTION, 422)

    if 'title' not in request or not request['title']:
        ex.add_error(EXCODES.MISSING_FIELD, STRINGS.REQUEST_SONG_TITLE_MISSING,
                     'title')
    if 'authors' not in request:
        ex.add_error(EXCODES.MISSING_FIELD,
                     STRINGS.REQUEST_SONG_AUTHORS_MISSING, 'authors')
    if 'interpreters' not in request:
        ex.add_error(EXCODES.MISSING_FIELD,
            STRINGS.REQUEST_SONG_INTERPRETERS_MISSING, 'interpreters') # yapf: disable

    if ex.errors:
        raise ex

    data = {
        'title': request['title'],
        'authors': request['authors'],
        'interpreters': request['interpreters']
    }

    return data
示例#21
0
def songbook_songs(data):
    def _get_position():
        if not songs:
            return 0
        return max(
            (item['order'] if 'order' in item else 0) for item in songs) + 1

    songs = []
    for variant in data:
        if 'variant_id' not in variant:
            raise AppException(EVENTS.REQUEST_EXCEPTION, 422,
                               (EXCODES.MISSING_FIELD,
                                STRINGS.REQUEST_SONGBOOK_SONGS_VARIANT_MISSING,
                                'songs/variant_id'))

        song_variant_existence(variant['variant_id'])
        if 'order' not in variant:
            variant['order'] = _get_position()
        songs.append({
            'variant_id': variant['variant_id'],
            'order': variant['order']
        })
    return songs
示例#22
0
def songs_extended_request(request):
    ex = AppException(EVENTS.REQUEST_EXCEPTION, 422)

    if 'title' not in request or not request['title']:
        ex.add_error(EXCODES.MISSING_FIELD, STRINGS.REQUEST_SONG_TITLE_MISSING,
                     'title')
    if 'authors' not in request:
        ex.add_error(EXCODES.MISSING_FIELD,
                     STRINGS.REQUEST_SONG_AUTHORS_MISSING, 'authors')
    if 'interpreters' not in request:
        ex.add_error(EXCODES.MISSING_FIELD,
            STRINGS.REQUEST_SONG_INTERPRETERS_MISSING, 'interpreters') # yapf: disable
    if 'variant' not in request:
        ex.add_error(EXCODES.MISSING_FIELD,
                     STRINGS.REQUEST_SONG_VARIANT_MISSING, 'variant')
    else:
        if 'title' not in request['variant'] or not request['variant']['title']:
            ex.add_error(EXCODES.MISSING_FIELD,
                         STRINGS.REQUEST_VARIANT_TITLE_MISSING,
                         'variant/title')
        if 'text' not in request['variant'] or not request['variant']['text']:
            ex.add_error(EXCODES.MISSING_FIELD,
                         STRINGS.REQUEST_VARIANT_TEXT_MISSING, 'variant/text')
        if 'description' not in request['variant']:
            ex.add_error(EXCODES.MISSING_FIELD,
                STRINGS.REQUEST_VARIANT_DESCRIPTION_MISSING, 'variant/description') # yapf: disable

    if ex.errors:
        raise ex

    data = {
        'title': request['title'],
        'authors': request['authors'],
        'interpreters': request['interpreters'],
        'variant': {
            'title': request['variant']['title'],
            'text': request['variant']['text'],
            'description': request['variant']['description']
        }
    }
    if 'visibility' in request['variant']:
        data['variant']['visibility'] = request['variant']['visibility']

    return data
示例#23
0
def songbooks_title_request(request):
    if 'title' not in request or not request['title']:
        raise AppException(EVENTS.REQUEST_EXCEPTION, 422,
                           (EXCODES.MISSING_FIELD,
                            STRINGS.REQUEST_SONGBOOK_TITLE_MISSING, 'title'))
    return {'title': request['title']}
示例#24
0
def json_request(request):
    if not request:
        raise AppException(
            EVENTS.REQUEST_EXCEPTION, 400,
            (EXCODES.INVALID_REQUEST, STRINGS.JSON_REQUEST_ERROR))
    return True
示例#25
0
def interpreters_request(request):
    if 'name' not in request or not request['name']:
        raise AppException(EVENTS.REQUEST_EXCEPTION, 422,
                           (EXCODES.MISSING_FIELD,
                            STRINGS.REQUEST_INTERPRETER_NAME_MISSING, 'name'))
    return {'name': request['name']}