-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Moving anon user tracking from image element to form submit #433
base: main
Are you sure you want to change the base?
Changes from 4 commits
12fdd70
6dd80be
8648385
72139e2
426e753
ce31a8a
902e2dc
80ba99d
424e5cd
8c41e6c
507e6b3
24380f4
6f88b9d
b9234e9
3c1fa76
6f34e5d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -207,3 +207,37 @@ | |
</script> | ||
{%- endwith %} | ||
{%- endmacro -%} | ||
|
||
{%- macro anon_user_script() -%} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can this be moved into There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. But if we move it to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It will load only once because |
||
{%- if not g.user and not g.anon_user %} | ||
<script type="text/javascript"> | ||
$(function () { | ||
var sniffurl = "{{ url_for('sniffle') }}"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. “Sniff” is the wrong term for this. We’re looking for an interactive session. |
||
var sniffed = false; | ||
var sniff = function (event) { | ||
jQuery.post( | ||
sniffurl, | ||
{ | ||
event: event, | ||
token: "{{ session['au'] }}" | ||
}, | ||
function (data) { | ||
console.log(data); | ||
}) | ||
sniffed = true; | ||
} | ||
window.onscroll = function (e) { | ||
if (!sniffed) { | ||
sniff("scolll"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Spelling. |
||
} | ||
} | ||
window.onpointermove = function (e) { | ||
if (!sniffed) { | ||
sniff("pointermove"); | ||
} | ||
} | ||
}) | ||
</script> | ||
{%- endif %} | ||
{%- endmacro -%} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{% from "macros.html.jinja2" import anon_user_script %} | ||
{%- extends "layout.html.jinja2" -%} | ||
{% block pageheaders %} | ||
<link href="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.14/c3.min.css" rel="stylesheet"/> | ||
|
@@ -31,4 +32,5 @@ | |
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script> | ||
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/c3/0.4.14/c3.min.js"></script> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @jace should these static files be in tablayout template? Shouldn't they be in individual templates that inherit them and needs c3/d3? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We now use C3 enough that it should be in the top level requirements, and all these direct references should be removed. |
||
{% block footerscripts %}{% endblock %} | ||
{{ anon_user_script() }} | ||
{% endblock %} |
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -10,7 +10,7 @@ | |||
from sqlalchemy import or_ | ||||
from sqlalchemy.exc import IntegrityError | ||||
from geoip2.errors import AddressNotFoundError | ||||
from flask import Markup, request, g, session | ||||
from flask import Markup, request, g, session, Response | ||||
from flask_rq import job | ||||
from flask_lastuser import signal_user_looked_up | ||||
from coaster.sqlalchemy import failsafe_add | ||||
|
@@ -28,14 +28,38 @@ | |||
gif1x1 = 'R0lGODlhAQABAJAAAP8AAAAAACH5BAUQAAAALAAAAAABAAEAAAICBAEAOw=='.decode('base64') | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This line can go. It's not needed anymore. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @jace there is a hasjob/hasjob/views/listing.py Line 397 in 41450f7
|
||||
|
||||
|
||||
@app.route('/_sniffle.gif') | ||||
@app.route('/_sniffle', methods=['POST']) | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This will now be |
||||
def sniffle(): | ||||
return gif1x1, 200, { | ||||
'Content-Type': 'image/gif', | ||||
'Cache-Control': 'no-cache, no-store, must-revalidate', | ||||
'Pragma': 'no-cache', | ||||
'Expires': '0' | ||||
} | ||||
""" | ||||
Load anon user: | ||||
|
||||
1. If there's g.user and session['anon_user'], it loads that anon_user and tags with user=g.user, then removes anon | ||||
2. If there's no g.user and no session['anon_user'] and form submitted token matches session['au'], sets session['anon_user'] = 'test' | ||||
3. If there's no g.user and there is session['au'] != form['token'], loads g.anon_user | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 2 and 3 seem to be reversed. Also, you don’t need a test token in |
||||
""" | ||||
if not g.user: | ||||
if unicode(session['au']).startswith('test') and unicode(session['au']) == request.form.get('token'): | ||||
# This client sent us back our test cookie, so set a real value now | ||||
g.anon_user = AnonUser() | ||||
db.session.add(g.anon_user) | ||||
g.esession = EventSession.new_from_request(request) | ||||
g.esession.anon_user = g.anon_user | ||||
db.session.add(g.esession) | ||||
g.esession.load_from_cache(session['au'], UserEvent) | ||||
# We'll update session['au'] below after database commit | ||||
else: | ||||
# form submitted token doesn't match the already set session['au'] | ||||
# XXX: We got a fake value? This shouldn't happen | ||||
g.event_data['anon_cookie_test'] = session['au'] | ||||
session['au'] = u'test-' + unicode(uuid4()) # Try again | ||||
g.esession = EventSessionBase.new_from_request(request) | ||||
db.session.commit() | ||||
|
||||
if g.anon_user: | ||||
session['au'] = g.anon_user.id | ||||
session.permanent = True | ||||
|
||||
return Response("OK") | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don’t reply with text. Return |
||||
|
||||
|
||||
def index_is_paginated(): | ||||
|
@@ -66,18 +90,13 @@ def load_user_data(user): | |||
""" | ||||
All pre-request utilities, run after g.user becomes available. | ||||
|
||||
Part 1: Load anon user: | ||||
|
||||
1. If there's g.user and session['anon_user'], it loads that anon_user and tags with user=g.user, then removes anon | ||||
2. If there's no g.user and no session['anon_user'], sets session['anon_user'] = 'test' | ||||
3. If there's no g.user and there is session['anon_user'] = 'test', creates a new anon user, then saves to cookie | ||||
4. If there's no g.user and there is session['anon_user'] != 'test', loads g.anon_user | ||||
|
||||
Part 1: If session['au'] exists, either set g.anon_user or set anon_user.user (if g.user exists). | ||||
If session['au'] does not exist, set it | ||||
Part 2: Are we in kiosk mode? Is there a preview campaign? | ||||
Part 3: Look up user's IP address location as geonameids for use in targeting. | ||||
""" | ||||
g.anon_user = None # Could change below | ||||
g.event_data = {} # Views can add data to the current pageview event | ||||
g.anon_user = None | ||||
g.event_data = {} | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Keep the comments. |
||||
g.esession = None | ||||
g.viewcounts = {} | ||||
g.impressions = session.pop('impressions', {}) # Retrieve from cookie session if present there | ||||
|
@@ -87,65 +106,35 @@ def load_user_data(user): | |||
now = datetime.utcnow() | ||||
|
||||
if request.endpoint not in ('static', 'baseframe.static'): | ||||
# Loading an anon user only if we're not rendering static resources | ||||
if user: | ||||
if 'au' in session and session['au'] is not None and not unicode(session['au']).startswith(u'test'): | ||||
if 'au' in session and session['au'] is not None: | ||||
if not unicode(session['au']).startswith(u'test'): | ||||
# fetch anon user and set anon_user.user | ||||
anon_user = AnonUser.query.get(session['au']) | ||||
if anon_user: | ||||
anon_user.user = user | ||||
session.pop('au', None) | ||||
else: | ||||
if not session.get('au'): | ||||
session['au'] = u'test-' + unicode(uuid4()) | ||||
g.esession = EventSessionBase.new_from_request(request) | ||||
g.event_data['anon_cookie_test'] = session['au'] | ||||
# elif session['au'] == 'test': # Legacy test cookie, original request now lost | ||||
# g.anon_user = AnonUser() | ||||
# db.session.add(g.anon_user) | ||||
# g.esession = EventSession.new_from_request(request) | ||||
# g.esession.anon_user = g.anon_user | ||||
# db.session.add(g.esession) | ||||
# # We'll update session['au'] below after database commit | ||||
# elif unicode(session['au']).startswith('test-'): # Newer redis-backed test cookie | ||||
# # This client sent us back our test cookie, so set a real value now | ||||
# g.anon_user = AnonUser() | ||||
# db.session.add(g.anon_user) | ||||
# g.esession = EventSession.new_from_request(request) | ||||
# g.esession.anon_user = g.anon_user | ||||
# db.session.add(g.esession) | ||||
# g.esession.load_from_cache(session['au'], UserEvent) | ||||
# # We'll update session['au'] below after database commit | ||||
else: | ||||
anon_user = None # AnonUser.query.get(session['au']) | ||||
if not anon_user: | ||||
# XXX: We got a fake value? This shouldn't happen | ||||
g.event_data['anon_cookie_test'] = session['au'] | ||||
session['au'] = u'test-' + unicode(uuid4()) # Try again | ||||
g.esession = EventSessionBase.new_from_request(request) | ||||
else: | ||||
if anon_user and g.user: | ||||
# we have anon user id in session['au'], set anon_user.user to current user | ||||
anon_user.user = g.user | ||||
g.db_commit_needed = True | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ugh, what is this? We should be doing automatic database commits if there’s a dirty session and no exception was raised. Better than such hacky flags. |
||||
session.pop('au', None) | ||||
elif anon_user and not g.user: | ||||
# set g.anon_user | ||||
g.anon_user = anon_user | ||||
|
||||
# Prepare event session if it's not already present | ||||
if g.user or g.anon_user and not g.esession: | ||||
g.esession = EventSession.get_session(uuid=session.get('es'), user=g.user, anon_user=g.anon_user) | ||||
if g.esession: | ||||
session['es'] = g.esession.uuid | ||||
|
||||
# Don't commit here. It flushes SQLAlchemy's session cache and forces | ||||
# fresh database hits. Let after_request commit. (Commented out 30-03-2016) | ||||
# db.session.commit() | ||||
g.db_commit_needed = True | ||||
|
||||
if g.anon_user: | ||||
session['au'] = g.anon_user.id | ||||
session.permanent = True | ||||
if 'impressions' in session: | ||||
elif not g.user: | ||||
session['au'] = u'test-' + unicode(uuid4()) | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is no longer needed since we’ll use the CSRF token cookie now. |
||||
g.esession = EventSessionBase.new_from_request(request) | ||||
g.event_data['anon_cookie_test'] = session['au'] | ||||
|
||||
# Prepare event session if it's not already present | ||||
if g.user or g.anon_user and not g.esession: | ||||
g.esession = EventSession.get_session(uuid=session.get('es'), user=g.user, anon_user=g.anon_user) | ||||
if g.esession: | ||||
session['es'] = g.esession.uuid | ||||
|
||||
if g.anon_user and 'impressions' in session: | ||||
# Run this in the foreground since we need this later in the request for A/B display consistency. | ||||
# This is most likely being called from the UI-non-blocking sniffle.gif anyway. | ||||
save_impressions(g.esession.id, session.pop('impressions').values(), now) | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Move this to a function that is called both here and in the the anonsession endpoint after setting g.anon_user. Comment needs to change as well. |
||||
|
||||
# We have a user, now look up everything else | ||||
|
||||
if session.get('kiosk'): | ||||
g.kiosk = True | ||||
else: | ||||
|
@@ -313,7 +302,7 @@ def session_jobpost_ab(): | |||
Returns the user's B-group assignment (NA, True, False) for all jobs shown to the user | ||||
in the current event session (impressions or views) as a dictionary of {id: bgroup} | ||||
""" | ||||
if not g.esession.persistent: | ||||
if g.esession and not g.esession.persistent: | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When does |
||||
return {key: value[2] for key, value in session.get('impressions', {}).items()} | ||||
result = {ji.jobpost_id: ji.bgroup for ji in JobImpression.query.filter_by(event_session=g.esession)} | ||||
result.update({jvs.jobpost_id: jvs.bgroup for jvs in JobViewSession.query.filter_by(event_session=g.esession)}) | ||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be in
layout.html.jinja2
only. We have a problem if we’re copy pasting an entire block between templates.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i went through the templates, and they need some reorganization. Some blocks have been redefined in several places. I can fix them, but seems a little off topic for this PR. Maybe a separate PR for it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will change with @vidya-ram's PWA PR (#425). We should revisit this PR once that is merged.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jace alright.