Example #1
0
def untag_photo(photo_id, tag_name, user_id=None):
    """
	Untags a photo.

	Returns true if the photo was untagged, false otherwise.

	If the photo already does not have the tag, this is considered a success.
	"""
    db = get_database()

    photo = get_photo(photo_id, user_id)
    if not photo:
        return False

    tag_name = tag_name.strip().lower()
    tag = Tag.query.filter_by(tag=tag_name).first()
    if not tag:
        return True

    photo_tag = PhotoTag.query.filter_by(tag_id=tag.id,
                                         photo_id=photo.id).first()

    if photo_tag:
        db.session.delete(photo_tag)

    return True
Example #2
0
def upload_existing_photo(photo, file):
    """
	Overwrites an existing photo.
	"""
    _, extension = os.path.splitext(file.filename)
    local_filename = "photos/%d%s" % (photo.id, extension)
    filename = "%s/%s" % (current_app.instance_path, local_filename)

    try:
        root_path = "%s/photos" % current_app.instance_path
        if not os.path.exists(root_path):
            os.makedirs(root_path)
    except:
        # os.path.exists -> os.makedirs is not atomic.
        # The directory can be created between those calls.
        # So we really don't care if the directory exists.
        pass

    file.save(filename)

    # Update tags from Google
    update_photo_tags(photo, filename)

    # Update photo
    photo.url = local_filename

    db = get_database()
    db.session.add(photo)
    db.session.commit()
Example #3
0
def tag_photo(photo_id, tag_name, user_id=None):
    """
	Tags a photo.

	Returns true if the photo was tagged, false otherwise.

	If the photo already has the tag, this is considered a success.
	"""
    db = get_database()

    photo = get_photo(photo_id, user_id)
    if not photo:
        return False

    tag_name = tag_name.strip().lower()
    tag = Tag.query.filter_by(tag=tag_name).first()
    if not tag:
        tag = Tag(tag=tag_name)
        db.session.add(tag)
        db.session.commit()

    photo = get_photo(photo_id, user_id)
    photo_tag = PhotoTag(tag_id=tag.id, photo_id=photo.id)
    db.session.add(photo_tag)
    db.session.commit()

    return True
Example #4
0
def rename_photo(photo, name):
    """
	Renames a photo.
	"""
    photo.name = name

    db = get_database()
    db.session.add(photo)
    db.session.commit()
Example #5
0
def get_tagged_photos(tag_name, user_id=None):
    db = get_database()

    if user_id == None:
        user_id = current_user.get_user().id

    tag_name = tag_name.strip().lower()

    return (db.session.query(Photo, PhotoTag, Tag).filter(
        Tag.tag == tag_name).filter(PhotoTag.tag_id == Tag.id).filter(
            PhotoTag.photo_id == Photo.id).all())
Example #6
0
def create_user(email, name, password):
    user = User.query.filter_by(email=email).first()
    if user:
        return False

    password = generate_password_hash(password)

    db = get_database()
    user = User(email=email, name=name, password=password)
    db.session.add(user)
    db.session.flush()
    return True
Example #7
0
def delete_photo(photo):
    """
	Deletes a photo.

	The photo is removed from storage as well.
	"""

    filename = "%s/%s" % (current_app.instance_path, photo.url)
    try:
        os.remove(filename)
    except:
        # The file doesn't exist.
        pass

    db = get_database()
    db.session.delete(photo)
    db.session.commit()
Example #8
0
def create_photo(name, user_id=None):
    """
	Create a photo without any file data with the given name.

	The photo is assigned to the currently logged in user
	if user_id is not specified.
	"""

    if user_id == None:
        user_id = current_user.get_user().id

    db = get_database()
    photo = Photo(name=name, user_id=user_id)
    db.session.add(photo)
    db.session.flush()

    return photo