Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
go
Commits
b6c271bb
Commit
b6c271bb
authored
Oct 14, 2013
by
Jean Michel Rouly
Browse files
Fixed registered user url submission to include username.
parent
9116ba17
Changes
2
Hide whitespace changes
Inline
Side-by-side
wsgi/library.py
View file @
b6c271bb
...
...
@@ -11,8 +11,8 @@ site.addsitedir('/srv/http/wsgi')
import
goconfig
#
Determine if a user is appropriately validated through LDAP
.
def
user_logged_in
(
environ
):
#
Extract the value of the cookie if one is set
.
def
get_cookie_value
(
environ
):
cookie
=
Cookie
.
SimpleCookie
()
# if the environment contains a cookie, check it out
...
...
@@ -21,23 +21,42 @@ def user_logged_in( environ ):
cookie
.
load
(
environ
[
'HTTP_COOKIE'
]);
if
cookie
.
has_key
(
'user'
):
user_hash
=
cookie
[
'user'
].
value
# see if it's in the database
mdb
,
cursor
=
connect_to_mysql
()
sql
=
"""SELECT count(*) FROM `%s` WHERE `user_hash`=%s;"""
cursor
.
execute
(
sql
,
(
goconfig
.
sql_usr_table
,
user_hash
)
)
((
num_rows
,),)
=
cursor
.
fetchall
()
mdb
.
commit
()
mdb
.
close
()
return
num_rows
>
0
return
user_hash
return
None
# Determine if a user is appropriately validated through LDAP.
def
user_logged_in
(
environ
):
user_hash
=
get_cookie_value
(
environ
)
if
(
user_hash
is
not
None
):
# see if it's in the database
mdb
,
cursor
=
connect_to_mysql
()
sql
=
"""SELECT count(*) FROM `%s` WHERE `user_hash`=%s;"""
cursor
.
execute
(
sql
,
(
goconfig
.
sql_usr_table
,
user_hash
)
)
((
num_rows
,),)
=
cursor
.
fetchall
()
mdb
.
commit
()
mdb
.
close
()
return
num_rows
>
0
return
False
def
get_username
(
environ
):
pass
user_hash
=
get_cookie_value
(
environ
)
username
=
None
if
(
user_hash
is
not
None
):
mdb
,
cursor
=
connect_to_mysql
()
try
:
sql
=
"""SELECT `user` FROM `%s` WHERE `user_hash`=%s;"""
cursor
.
execute
(
sql
,
(
goconfig
.
sql_usr_table
,
user_hash
)
)
((
username
,),)
=
cursor
.
fetchall
()
mdb
.
commit
()
finally
:
mdb
.
close
()
return
username
# Determine if the user has posting permissions via the registration
...
...
@@ -84,18 +103,11 @@ def eat_cookie():
# Register the user in the table of active users.
def
activate_user
(
hash_value
,
user
):
output
=
False
mdb
,
cursor
=
connect_to_mysql
()
try
:
sql
=
"""INSERT INTO `%s` (`user_hash`,`user`) VALUES (%s,%s);"""
cursor
.
execute
(
sql
,
(
goconfig
.
sql_usr_table
,
hash_value
,
user
)
)
mdb
.
commit
()
output
=
True
except
MySQLdb
.
IntegrityError
:
output
=
False
finally
:
mdb
.
close
()
return
True
sql
=
"""INSERT INTO `%s` (`user_hash`,`user`) VALUES (%s,%s);"""
cursor
.
execute
(
sql
,
(
goconfig
.
sql_usr_table
,
hash_value
,
user
)
)
mdb
.
commit
()
mdb
.
close
()
# Unregister the user in the table of active users.
...
...
@@ -218,11 +230,12 @@ def short_url_exists( short_url ):
# Inserts a short-url, long-url pairing into the database.
def
register_url
(
longurl
,
shorturl
,
expiration
):
def
register_url
(
longurl
,
shorturl
,
expiration
,
environ
):
username
=
get_username
(
environ
)
mdb
,
cursor
=
connect_to_mysql
()
sql
=
"""INSERT INTO `%s`(`id`, `longurl`, `shorturl`, `expiration`, `clicks`)
VALUES (NULL, %s, %s, %s, '0')"""
cursor
.
execute
(
sql
,
(
goconfig
.
sql_url_table
,
longurl
,
shorturl
,
expiration
)
)
sql
=
"""INSERT INTO `%s`(`id`, `longurl`, `shorturl`, `expiration`,
`user`,
`clicks`)
VALUES (NULL, %s, %s, %s,
%s,
'0')"""
cursor
.
execute
(
sql
,
(
goconfig
.
sql_url_table
,
longurl
,
shorturl
,
expiration
,
username
)
)
mdb
.
commit
()
mdb
.
close
()
...
...
wsgi/url-register.py
View file @
b6c271bb
...
...
@@ -114,7 +114,7 @@ def application(environ, start_response):
# ie. Display the long and short URLs.
if
not
(
INV_LU
or
INV_SU
or
SU_TS
or
SU_EX
):
# insert the longurl-shorturl pairing in the database.
library
.
register_url
(
long_url
,
short_url
,
end_stamp
)
library
.
register_url
(
long_url
,
short_url
,
end_stamp
,
environ
)
display_short
=
goconfig
.
domain
+
"/"
+
short_url
body
.
append
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment