Compare commits

..

No commits in common. "ba9ea87aaa4beb5b3b341a35ea511bbdfc4b5bde" and "168272761a6d5bfc8951e2caf9e0a9c0b656421c" have entirely different histories.

5 changed files with 10 additions and 19 deletions

View File

@ -31,7 +31,6 @@ async def index(request):
return render_template("index.html", request, locals()) return render_template("index.html", request, locals())
data = await request.post() data = await request.post()
rand_name = bool(data.get('rand_name')) rand_name = bool(data.get('rand_name'))
response_type = data.get('reponse_type')
files = [] files = []
for filefield in data.getall('files'): for filefield in data.getall('files'):
@ -60,20 +59,13 @@ async def index(request):
for file in files: for file in files:
t = (int(request.cookies.get('userid')), file[0], file[1], expiration_date) t = (int(request.cookies.get('userid')), file[0], file[1], expiration_date)
files_insert.append(t) files_insert.append(t)
async with request.app['pool'] as conn:
async with request.app['pool'].acquire() as conn:
await conn.executemany( await conn.executemany(
"INSERT INTO upload (user_id, id, filename, expiration_date) " "INSERT INTO upload (user_id, id, filename, expiration_date) "
"VALUES ($1, $2, $3, $4)", "VALUES ($1, $2, $3, $4)",
files_insert) files_insert)
urls = [config.upload_url + f[1] for f in files] urls = [config.upload_url + f[1] for f in files]
if response_type == 'html':
return render_template("result.html", request, locals()) return render_template("result.html", request, locals())
elif response_type == 'plain':
return web.Response(body='\n'.join(urls))
elif response_type == 'json':
return web.json_response(urls)
@routes.get('/gallery/{user_id}', name='gallery') @routes.get('/gallery/{user_id}', name='gallery')
@ -84,7 +76,7 @@ async def gallery(request):
except ValueError: except ValueError:
raise web.HTTPNotFound raise web.HTTPNotFound
async with request.app['pool'].acquire() as conn: async with request.app['pool'] as conn:
uploads = await conn.fetch( uploads = await conn.fetch(
"SELECT * FROM upload WHERE user_id = $1", "SELECT * FROM upload WHERE user_id = $1",
user_id) user_id)

View File

@ -8,7 +8,7 @@
</head> </head>
<body> <body>
<header> <header>
{% include 'header.html' %} <h1>Saddle</h1>
</header> </header>
<main> <main>
<section> <section>

View File

@ -1,5 +0,0 @@
<div id="logo_line">
<object id="logo" title="Saddle Logo" data="/static/saddle.svg"></object>
<h1>Saddle</h1>
</div>
<nav><span><a href="./gallery/{{ request.cookies.get('userid') }}">Gallery</a></span></nav>

View File

@ -8,7 +8,11 @@
</head> </head>
<body> <body>
<header> <header>
{% include 'header.html' %} <div id="logo_line">
<object id="logo" title="Saddle Logo" data="/static/saddle.svg"></object>
<h1>Saddle</h1>
</div>
<nav><span><a href="./gallery/{{ request.cookies.get('userid') }}">Gallery</a></span></nav>
</header> </header>
<main> <main>
<section> <section>

View File

@ -8,7 +8,7 @@
</head> </head>
<body> <body>
<header> <header>
{% include 'header.html' %} <h1>Saddle</h1>
</header> </header>
<main> <main>
<section> <section>