コード例 #1
0
ファイル: synset.py プロジェクト: atheik/imagenet-browser
    def get(self, wnid, hyponym_wnid):
        """
        Build and return the hyponym representation.
        """
        synset = Synset.query.filter_by(wnid=wnid).first()
        if not synset:
            return create_error_response(
                404,
                "Not found",
                "No synset with WordNet ID of '{}' found".format(wnid)
            )

        synset_hyponym = Synset.query.filter_by(wnid=hyponym_wnid).first()

        try:
            synset.hyponyms.index(synset_hyponym)
        except ValueError:
            return create_error_response(
                404,
                "Not found",
                "No synset hyponym with WordNet ID of '{}' found".format(hyponym_wnid)
            )

        body = ImagenetBrowserBuilder(
            wnid=hyponym_wnid,
            words=synset_hyponym.words,
            gloss=synset_hyponym.gloss
        )
        body.add_namespace("imagenet_browser", LINK_RELATIONS_URL)
        body.add_control("self", url_for("api.synsethyponymitem", wnid=wnid, hyponym_wnid=hyponym_wnid))
        body.add_control("profile", SYNSET_PROFILE)
        body.add_control("collection", url_for("api.synsethyponymcollection", wnid=wnid))
        body.add_control_delete_hyponym(wnid=wnid, hyponym_wnid=hyponym_wnid)

        return Response(json.dumps(body), 200, mimetype=MASON)
コード例 #2
0
    def post(self, wnid):
        """
        Add a new image to the synset and return its location in the response headers.
        The image representation must be valid against the image schema.
        """
        synset = Synset.query.filter_by(wnid=wnid).first()
        if not synset:
            return create_error_response(
                404,
                "Not found",
                "No synset with WordNet ID of '{}' found".format(wnid)
            )

        if not request.json:
            return create_error_response(
                415,
                "Unsupported media type",
                "Requests must be JSON"
            )

        try:
            validate(request.json, Image.get_schema())
        except ValidationError as e:
            return create_error_response(400, "Invalid JSON document", str(e))

        try:
            request.json["date"]
        except KeyError:
            request.json["date"] = datetime.now().isoformat().split("T")[0]

        image = Image(
            imid=request.json["imid"],
            url=request.json["url"],
            date=request.json["date"],
            synset=synset
        )

        try:
            db.session.add(image)
            db.session.commit()
        except IntegrityError:
            return create_error_response(
                409,
                "Already exists",
                "Image with WordNet ID of '{}' and image ID of '{}' already exists".format(
                    wnid, request.json["imid"]
                )
            )

        return Response(status=201, headers={
            "Location": url_for("api.synsetimageitem", wnid=wnid, imid=request.json["imid"])
        })
コード例 #3
0
ファイル: synset.py プロジェクト: atheik/imagenet-browser
    def get(self, wnid):
        """
        Build and return a list of all hyponyms of the synset.
        A list has SYNSET_PAGE_SIZE items with the starting index being controlled by the query parameter.
        As such, the next and prev controls become available when appropriate.
        """
        try:
            start = int(request.args.get("start", default=0))
        except ValueError:
            return create_error_response(
                400,
                "Invalid query parameter",
                "Query parameter 'start' must be an integer"
            )

        synset = Synset.query.filter_by(wnid=wnid).first()
        if not synset:
            return create_error_response(
                404,
                "Not found",
                "No synset with WordNet ID of '{}' found".format(wnid)
            )

        body = ImagenetBrowserBuilder(
            wnid=wnid,
            words=synset.words,
            gloss=synset.gloss
        )
        body.add_namespace("imagenet_browser", LINK_RELATIONS_URL)
        body.add_control("self", url_for("api.synsethyponymcollection", wnid=wnid) + "?start={}".format(start))
        body.add_control_add_hyponym(wnid=wnid)
        body.add_control("imagenet_browser:synsetitem", url_for("api.synsetitem", wnid=wnid))

        synset_hyponyms = synset.hyponyms[start:]

        if start >= SYNSET_PAGE_SIZE:
            body.add_control("prev", url_for("api.synsethyponymcollection", wnid=wnid) + "?start={}".format(start - SYNSET_PAGE_SIZE))
        if len(synset_hyponyms) > SYNSET_PAGE_SIZE:
            body.add_control("next", url_for("api.synsethyponymcollection", wnid=wnid) + "?start={}".format(start + SYNSET_PAGE_SIZE))

        body["items"] = []
        for synset_hyponym in synset_hyponyms[:SYNSET_PAGE_SIZE]:
            item = ImagenetBrowserBuilder(
                wnid=synset_hyponym.wnid,
                words=synset_hyponym.words,
                gloss=synset_hyponym.gloss
            )
            item.add_control("self", url_for("api.synsethyponymitem", wnid=wnid, hyponym_wnid=synset_hyponym.wnid))
            item.add_control("profile", SYNSET_PROFILE)
            body["items"].append(item)

        return Response(json.dumps(body), 200, mimetype=MASON)
コード例 #4
0
ファイル: synset.py プロジェクト: atheik/imagenet-browser
    def post(self, wnid):
        """
        Add a new hyponym to the synset with the hyponym being a previously added synset and return its location in the response headers.
        The synset representation must be valid against a subset of the synset schema that only requires the WordNet ID.
        """
        synset = Synset.query.filter_by(wnid=wnid).first()
        if not synset:
            return create_error_response(
                404,
                "Not found",
                "No synset with WordNet ID of '{}' found".format(wnid)
            )

        if not request.json:
            return create_error_response(
                415,
                "Unsupported media type",
                "Requests must be JSON"
            )

        try:
            validate(request.json, Synset.get_schema(wnid_only=True))
        except ValidationError as e:
            return create_error_response(400, "Invalid JSON document", str(e))

        synset_hyponym = Synset.query.filter_by(wnid=request.json["wnid"]).first()
        if not synset_hyponym:
            return create_error_response(
                404,
                "Not found",
                "No synset with WordNet ID of '{}' found".format(request.json["wnid"])
            )

        try:
            synset.hyponyms.index(synset_hyponym)
        except ValueError:
            pass
        else:
            return create_error_response(
                409,
                "Already exists",
                "Synset hyponym with WordNet ID of '{}' already exists".format(request.json["wnid"])
            )

        synset.hyponyms.append(synset_hyponym)
        db.session.commit()

        return Response(status=201, headers={
            "Location": url_for("api.synsethyponymitem", wnid=wnid, hyponym_wnid=request.json["wnid"])
        })
コード例 #5
0
    def get(self, wnid):
        """
        Build and return a list of all images of the synset.
        A list has IMAGE_PAGE_SIZE items with the starting index being controlled by the query parameter.
        As such, the next and prev controls become available when appropriate.
        """
        try:
            start = int(request.args.get("start", default=0))
        except ValueError:
            return create_error_response(
                400,
                "Invalid query parameter",
                "Query parameter 'start' must be an integer"
            )

        synset = Synset.query.filter_by(wnid=wnid).first()
        if not synset:
            return create_error_response(
                404,
                "Not found",
                "No synset with WordNet ID of '{}' found".format(wnid)
            )

        body = ImagenetBrowserBuilder()

        body.add_namespace("imagenet_browser", LINK_RELATIONS_URL)
        body.add_control("self", url_for("api.synsetimagecollection", wnid=wnid) + "?start={}".format(start))
        body.add_control_add_image(wnid=wnid)
        body.add_control("imagenet_browser:synsetitem", url_for("api.synsetitem", wnid=wnid))

        images = Image.query.filter(Image.synset_wnid == wnid).order_by(Image.imid).offset(start)

        if start >= IMAGE_PAGE_SIZE:
            body.add_control("prev", url_for("api.synsetimagecollection", wnid=wnid) + "?start={}".format(start - IMAGE_PAGE_SIZE))
        if images.count() > IMAGE_PAGE_SIZE:
            body.add_control("next", url_for("api.synsetimagecollection", wnid=wnid) + "?start={}".format(start + IMAGE_PAGE_SIZE))

        body["items"] = []
        for image in images.limit(IMAGE_PAGE_SIZE):
            item = ImagenetBrowserBuilder(
                imid=image.imid,
                url=image.url,
                date=image.date
            )
            item.add_control("self", url_for("api.synsetimageitem", wnid=wnid, imid=image.imid))
            item.add_control("profile", IMAGE_PROFILE)
            body["items"].append(item)

        return Response(json.dumps(body), 200, mimetype=MASON)
コード例 #6
0
    def get(self, wnid, imid):
        """
        Build and return the image representation.
        """
        image = Image.query.filter(Image.synset_wnid == wnid, Image.imid == imid).first()
        if not image:
            return create_error_response(
                404,
                "Not found",
                "No image with WordNet ID of '{}' and image ID of '{}' found".format(wnid, imid)
            )

        body = ImagenetBrowserBuilder(
            imid=imid,
            url=image.url,
            date=image.date
        )
        body.add_namespace("imagenet_browser", LINK_RELATIONS_URL)
        body.add_control("self", url_for("api.synsetimageitem", wnid=wnid, imid=imid))
        body.add_control("profile", IMAGE_PROFILE)
        body.add_control("collection", url_for("api.synsetimagecollection", wnid=wnid))
        body.add_control_edit_image(wnid=wnid, imid=imid)
        body.add_control_delete_image(wnid=wnid, imid=imid)
        body.add_control("imagecollection", url_for("api.imagecollection"))

        return Response(json.dumps(body), 200, mimetype=MASON)
コード例 #7
0
    def put(self, wnid, imid):
        """
        Replace the image representation with a new one.
        Must validate against the image schema.
        """
        image = Image.query.filter(Image.synset_wnid == wnid, Image.imid == imid).first()
        if not image:
            return create_error_response(
                404,
                "Not found",
                "No image with WordNet ID of '{}' and image ID of '{}' found".format(wnid, imid)
            )

        if not request.json:
            return create_error_response(
                415,
                "Unsupported media type",
                "Requests must be JSON"
            )

        try:
            validate(request.json, Image.get_schema())
        except ValidationError as e:
            return create_error_response(400, "Invalid JSON document", str(e))

        try:
            request.json["date"]
        except KeyError:
            request.json["date"] = image.date

        image.imid = request.json["imid"]
        image.url = request.json["url"]
        image.date = request.json["date"]

        try:
            db.session.commit()
        except IntegrityError:
            return create_error_response(
                409,
                "Already exists",
                "Image with WordNet ID of '{}' and image ID of '{}' already exists".format(
                    wnid, request.json["imid"]
                )
            )

        return Response(status=204)
コード例 #8
0
ファイル: synset.py プロジェクト: atheik/imagenet-browser
    def put(self, wnid):
        """
        Replace the synset representation with a new one.
        Must validate against the synset schema.
        """
        synset = Synset.query.filter_by(wnid=wnid).first()
        if not synset:
            return create_error_response(
                404,
                "Not found",
                "No synset with WordNet ID of '{}' found".format(wnid)
            )

        if not request.json:
            return create_error_response(
                415,
                "Unsupported media type",
                "Requests must be JSON"
            )

        try:
            validate(request.json, Synset.get_schema())
        except ValidationError as e:
            return create_error_response(400, "Invalid JSON document", str(e))

        synset.wnid = request.json["wnid"]
        synset.words = request.json["words"]
        synset.gloss = request.json["gloss"]

        try:
            db.session.commit()
        except IntegrityError:
            return create_error_response(
                409,
                "Already exists", 
                "Synset with WordNet ID of '{}' already exists".format(request.json["wnid"])
            )

        return Response(status=204)
コード例 #9
0
ファイル: synset.py プロジェクト: atheik/imagenet-browser
    def post(self):
        """
        Add a new synset and return its location in the response headers.
        The synset representation must be valid against the synset schema.
        """
        if not request.json:
            return create_error_response(
                415,
                "Unsupported media type",
                "Requests must be JSON"
            )

        try:
            validate(request.json, Synset.get_schema())
        except ValidationError as e:
            return create_error_response(400, "Invalid JSON document", str(e))

        synset = Synset(
            wnid=request.json["wnid"],
            words=request.json["words"],
            gloss=request.json["gloss"]
        )

        try:
            db.session.add(synset)
            db.session.commit()
        except IntegrityError:
            return create_error_response(
                409,
                "Already exists",
                "Synset with WordNet ID of '{}' already exists".format(request.json["wnid"])
            )

        return Response(status=201, headers={
            "Location": url_for("api.synsetitem", wnid=request.json["wnid"])
        })
コード例 #10
0
ファイル: synset.py プロジェクト: atheik/imagenet-browser
    def delete(self, wnid, hyponym_wnid):
        """
        Delete the hyponym.
        """
        synset = Synset.query.filter_by(wnid=wnid).first()
        if not synset:
            return create_error_response(
                404,
                "Not found",
                "No synset with WordNet ID of '{}' found".format(wnid)
            )

        try:
            synset.hyponyms.remove(Synset.query.filter_by(wnid=hyponym_wnid).first())
        except ValueError:
            return create_error_response(
                404,
                "Not found",
                "No synset hyponym with WordNet ID of '{}' found".format(hyponym_wnid)
            )

        db.session.commit()

        return Response(status=204)
コード例 #11
0
ファイル: synset.py プロジェクト: atheik/imagenet-browser
    def delete(self, wnid):
        """
        Delete the synset and its associated images.
        """
        synset = Synset.query.filter_by(wnid=wnid).first()
        if not synset:
            return create_error_response(
                404,
                "Not found",
                "No synset with WordNet ID of '{}' found".format(wnid)
            )

        db.session.delete(synset)
        db.session.commit()

        return Response(status=204)
コード例 #12
0
    def delete(self, wnid, imid):
        """
        Delete the image.
        """
        image = Image.query.filter(Image.synset_wnid == wnid, Image.imid == imid).first()
        if not image:
            return create_error_response(
                404,
                "Not found",
                "No image with WordNet ID of '{}' and image ID of '{}' found".format(wnid, imid)
            )

        db.session.delete(image)
        db.session.commit()

        return Response(status=204)
コード例 #13
0
ファイル: synset.py プロジェクト: atheik/imagenet-browser
    def get(self):
        """
        Build and return a list of all synsets known to the API.
        A list has SYNSET_PAGE_SIZE items with the starting index being controlled by the query parameter.
        As such, the next and prev controls become available when appropriate.
        """
        try:
            start = int(request.args.get("start", default=0))
        except ValueError:
            return create_error_response(
                400,
                "Invalid query parameter",
                "Query parameter 'start' must be an integer"
            )

        body = ImagenetBrowserBuilder()
        
        body.add_namespace("imagenet_browser", LINK_RELATIONS_URL)
        body.add_control("self", url_for("api.synsetcollection"))
        body.add_control_add_synset()

        synsets = Synset.query.order_by(Synset.wnid).offset(start)

        if start >= SYNSET_PAGE_SIZE:
            body.add_control("prev", url_for("api.synsetcollection") + "?start={}".format(start - SYNSET_PAGE_SIZE))
        if synsets.count() > SYNSET_PAGE_SIZE:
            body.add_control("next", url_for("api.synsetcollection") + "?start={}".format(start + SYNSET_PAGE_SIZE))

        body["items"] = []
        for synset in synsets.limit(SYNSET_PAGE_SIZE):
            item = ImagenetBrowserBuilder(
                wnid=synset.wnid,
                words=synset.words,
                gloss=synset.gloss
            )
            item.add_control("self", url_for("api.synsetitem", wnid=synset.wnid))
            item.add_control("profile", SYNSET_PROFILE)
            body["items"].append(item)
            
        return Response(json.dumps(body), 200, mimetype=MASON)