Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
self-reg-form
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Krish Moodbidri
self-reg-form
Commits
b81897c3
Commit
b81897c3
authored
4 years ago
by
Mitchell Moore
Browse files
Options
Downloads
Patches
Plain Diff
Implemented referrer to capture user entrypoint, to be used to redirect to on account creation
- Feat redirect - Fix redir logic
parent
9c756ddd
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
app/__init__.py
+7
-2
7 additions, 2 deletions
app/__init__.py
app/templates/auth/SignUp.html
+8
-6
8 additions, 6 deletions
app/templates/auth/SignUp.html
run.py
+4
-2
4 additions, 2 deletions
run.py
tasks.py
+2
-0
2 additions, 0 deletions
tasks.py
vars.py
+1
-0
1 addition, 0 deletions
vars.py
with
22 additions
and
10 deletions
app/__init__.py
+
7
−
2
View file @
b81897c3
...
...
@@ -2,6 +2,7 @@
# local imports
from
__future__
import
print_function
import
vars
# third-party imports
import
uuid
...
...
@@ -21,9 +22,13 @@ def create_app(config_name):
session
[
'
uid
'
]
=
str
(
uuid
.
uuid4
())
if
"
redir
"
in
request
.
args
and
'
return_url
'
not
in
session
:
# check for redir arg in url
session
[
'
return_url
'
]
=
request
.
args
.
get
(
"
redir
"
)
or
"
/pun/sys/dashboard
"
session
[
'
return_url
'
]
=
request
.
args
.
get
(
"
redir
"
)
elif
"
redir
"
not
in
request
.
args
and
'
return_url
'
not
in
session
:
session
[
'
return_url
'
]
=
vars
.
default_referrer
else
:
session
[
'
return_url
'
]
=
request
.
referrer
return
render_template
(
'
auth/SignUp.html
'
,
room_id
=
session
[
'
uid
'
])
return
render_template
(
'
auth/SignUp.html
'
,
room_id
=
session
[
'
uid
'
]
,
referrer
=
session
[
'
return_url
'
]
)
# misc page error catching
@app.errorhandler
(
403
)
...
...
This diff is collapsed.
Click to expand it.
app/templates/auth/SignUp.html
+
8
−
6
View file @
b81897c3
...
...
@@ -11,23 +11,26 @@
var
socket
=
io
.
connect
(
'
http://
'
+
document
.
domain
+
'
:
'
+
location
.
port
);
socket
.
on
(
'
connect
'
,
function
()
{
socket
.
emit
(
'
join_room
'
)
socket
.
emit
(
'
join_room
'
,
{
referrer
:
'
{{ referrer }}
'
});
socket
.
on
(
'
creating account
'
,
function
(
msg
)
{
document
.
getElementById
(
"
error
"
).
innerText
=
""
;
displayloading
();
})
})
;
socket
.
on
(
'
account ready
'
,
function
(
msg
)
{
$
(
'
#myModal
'
).
modal
(
'
hide
'
);
alert
(
"
Account has been created!
"
);
})
window
.
location
.
replace
(
'
{{ referrer }}
'
);
});
socket
.
on
(
'
Account creation failed
'
,
function
(
msg
)
{
document
.
getElementById
(
"
error
"
).
innerText
=
"
Registration Failed. Please try again.
"
;
})
})
;
})
})
;
</script>
<style
type=
"text/css"
>
...
...
@@ -130,4 +133,3 @@
</footer>
</body>
</html>
This diff is collapsed.
Click to expand it.
run.py
+
4
−
2
View file @
b81897c3
...
...
@@ -2,7 +2,6 @@
import
os
import
time
import
signal
import
tasks
import
vars
...
...
@@ -20,12 +19,15 @@ app.config['SECRET_KEY'] = vars.key
socketio
=
SocketIO
(
app
,
message_queue
=
vars
.
message_queue
)
@socketio.on
(
'
join_room
'
)
def
on_room
():
def
on_room
(
json
):
room
=
str
(
session
[
'
uid
'
])
referrer
=
json
[
'
referrer
'
]
join_room
(
room
)
print
(
'
\t\t\t
|-----Room ID:
'
+
room
)
print
(
'
\t\t\t
|-----Referrer:
'
+
referrer
)
@socketio.on
(
'
request account
'
)
...
...
This diff is collapsed.
Click to expand it.
tasks.py
+
2
−
0
View file @
b81897c3
...
...
@@ -12,10 +12,12 @@ celery = Celery('flask_user_reg', broker=broker_url)
socketio
=
SocketIO
(
message_queue
=
vars
.
message_queue
)
def
send_msg
(
event
,
room
):
print
(
"
Post
'
{}
'
to room
'
{}
'"
.
format
(
event
,
room
))
socketio
.
emit
(
event
,
room
=
room
)
@celery.task
def
celery_create_account
(
username
,
fullname
,
reason
,
session
):
room
=
session
...
...
This diff is collapsed.
Click to expand it.
vars.py
+
1
−
0
View file @
b81897c3
...
...
@@ -3,3 +3,4 @@ password = 'reggie'
key
=
'
vnkdjnfjknfl1232
'
broker_url
=
'
amqp://
'
+
id
+
'
:
'
+
password
+
'
@ohpc:5672/
'
message_queue
=
broker_url
+
'
socketio
'
default_referrer
=
"
https://docs.uabgrid.uab.edu/wiki/Cheaha_Quick_Start
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment