Example #1
0
def admin_events_add_photo_and_document(request):
    document_file = request.POST.get("document_file", "")
    photo_file = request.POST.get("photo_file", "")

    # PROCESS PDF
    storage_helper = StorageHelper(document_file)
    try:
        file_content = storage_helper.get_file_content()
    except BadFile:
        request.session.flash(u"ERROR: File error (PDF).")
        return HTTPFound(location=request.route_url("admin_events_packages"))

    new_filename_with_path = storage_helper.get_new_filename_with_path(file_content)
    Documents.save_original(new_filename_with_path, file_content)
    document = Documents.save_to_db(new_filename_with_path)

    # PROCESS IMG
    storage_helper = StorageHelper(photo_file)
    try:
        file_content = storage_helper.get_file_content()
    except BadFile:
        request.session.flash(u"ERROR: File error (IMAGE).")
        return HTTPFound(location=request.route_url("admin_events_packages"))

    new_filename_with_path = storage_helper.get_new_filename_with_path(file_content)

    Photos.save_original(new_filename_with_path, file_content)
    photo = Photos.save_to_db(new_filename_with_path)

    img = storage_helper.get_pil_object(new_filename_with_path)
    Photos.resize(img, Photos.SMALL_THUMBNAIL, storage_helper.new_filename, "small_")
    Photos.resize(img, Photos.BIG_THUMBNAIL, storage_helper.new_filename, "big_")

    Event.save(photo, document)

    request.session.flash(u"INFO: Menu is added!")
    return HTTPFound(location=request.route_url("admin_events_packages"))
Example #2
0
def admin_event_delete(request):
    Event.delete_one(request.matchdict.get("id"))
    request.session.flash(u"INFO: Deleted!")
    return HTTPFound(location=request.route_url("admin_events_packages"))
Example #3
0
def admin_events_packages(request):
    return {"events": Event.get_all()}