From 08dd6938c92e6b9e1e3907843d5f088ea9d69986 Mon Sep 17 00:00:00 2001 From: jonasled <jonas@jonasled.de> Date: Mon, 10 Feb 2020 10:11:47 +0100 Subject: [PATCH] fixed links in userprofile --- main.py | 2 +- userprofile.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index 834250b..4378e55 100644 --- a/main.py +++ b/main.py @@ -160,7 +160,7 @@ def redirectOwnLinks(): @app.route('/user/links<pageNumber>')#This function gives the user the posibility to see and delete his links def ownLinks(pageNumber): - return userProfile(request, cookieNotice, s, pageNumber) + return userProfile(request, cookieNotice, s, pageNumber, url_scheme) @app.route('/user/delete') #This function is called if a user deletes an entrie def delete(): diff --git a/userprofile.py b/userprofile.py index 5afe9af..7180973 100644 --- a/userprofile.py +++ b/userprofile.py @@ -2,7 +2,7 @@ import sqlite3 from flask import redirect, abort, render_template from html import escape #This is used to escape characters, if they are send in the url -def userProfile(request, cookieNotice, s, pageNumber): +def userProfile(request, cookieNotice, s, pageNumber, url_scheme): backButton = 0 nextButton = 0 lenEntries = 0 @@ -32,7 +32,7 @@ def userProfile(request, cookieNotice, s, pageNumber): calls = str(cursor2.execute('SELECT CALLS FROM ANALYTICS WHERE SHORT_URL=?', [entries[1]]).fetchone()[0]) except: calls = "0" - response = response + "<tr>\n<td>" + entries[0] + "</td>\n<td><a href=\"" + entries[1] + '">' + entries[1] + '</a></td>\n<td>' + calls + '</td>\n<td><a id="red" href="/user/delete?link=' + escape(entries[1]) + '">delete</a> <a href="#" id="dialog-link" onclick="buttonListener(\'' + entries[1] + '\', this)">QR</a></tr>\n' + response = response + "<tr>\n<td>" + entries[0] + "</td>\n<td><a href=\"" + url_scheme + "://" + entries[1] + '">' + entries[1] + '</a></td>\n<td>' + calls + '</td>\n<td><a id="red" href="/user/delete?link=' + escape(entries[1]) + '">delete</a> <a href="#" id="dialog-link" onclick="buttonListener(\'' + entries[1] + '\', this)">QR</a></tr>\n' response = response + "</table>" #Close the table if(len(entriesList) == 0): response = 'you have no shorten links.' #If user has no shorten links make this message -- GitLab