Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gutyán Gábor
/
circlestack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
33262020
authored
Jun 04, 2014
by
Kálmán Viktor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard: use gravatar avatar option
parent
8e6400ed
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
74 additions
and
12 deletions
+74
-12
circle/dashboard/migrations/0007_auto__add_field_profile_use_gravatar.py
+0
-0
circle/dashboard/models.py
+2
-1
circle/dashboard/static/dashboard/dashboard.css
+4
-0
circle/dashboard/static/dashboard/img/avatar.png
+0
-0
circle/dashboard/static/dashboard/profile.js
+27
-0
circle/dashboard/templates/dashboard/profile.html
+11
-3
circle/dashboard/urls.py
+3
-2
circle/dashboard/views.py
+27
-6
No files found.
circle/dashboard/migrations/0007_auto__add_field_profile_use_gravatar.py
0 → 100644
View file @
33262020
This diff is collapsed.
Click to expand it.
circle/dashboard/models.py
View file @
33262020
...
...
@@ -26,7 +26,7 @@ from django.contrib.auth.signals import user_logged_in
from
django.core.urlresolvers
import
reverse
from
django.db.models
import
(
Model
,
ForeignKey
,
OneToOneField
,
CharField
,
IntegerField
,
TextField
,
DateTimeField
,
permalink
,
DateTimeField
,
permalink
,
BooleanField
)
from
django.template.loader
import
render_to_string
from
django.utils.translation
import
ugettext_lazy
as
_
,
override
,
ugettext
...
...
@@ -83,6 +83,7 @@ class Profile(Model):
unique
=
True
,
blank
=
True
,
null
=
True
,
max_length
=
64
,
help_text
=
_
(
'Unique identifier of the person, e.g. a student number.'
))
instance_limit
=
IntegerField
(
default
=
5
)
use_gravatar
=
BooleanField
(
default
=
False
)
def
notify
(
self
,
subject
,
template
,
context
=
{},
valid_until
=
None
):
return
Notification
.
send
(
self
.
user
,
subject
,
template
,
context
,
...
...
circle/dashboard/static/dashboard/dashboard.css
View file @
33262020
...
...
@@ -672,3 +672,7 @@ textarea[name="list-new-namelist"] {
color
:
#555
!important
;
text-decoration
:
none
;
}
#dashboard-profile-avatar
{
max-width
:
200px
;
}
circle/dashboard/static/dashboard/img/avatar.png
0 → 100644
View file @
33262020
8.83 KB
circle/dashboard/static/dashboard/profile.js
0 → 100644
View file @
33262020
$
(
function
()
{
// change user avatar
$
(
"#dashboard-profile-use-gravatar"
).
click
(
function
()
{
var
checked
=
$
(
this
).
prop
(
"checked"
);
var
user
=
$
(
this
).
data
(
"user"
);
$
.
ajax
({
type
:
'POST'
,
url
:
"/dashboard/profile/"
+
user
+
"/use_gravatar/"
,
headers
:
{
"X-CSRFToken"
:
getCookie
(
'csrftoken'
)},
success
:
function
(
re
)
{
if
(
re
.
new_avatar_url
)
{
$
(
"#dashboard-profile-avatar"
).
prop
(
"src"
,
re
.
new_avatar_url
);
}
},
error
:
function
(
xhr
,
textStatus
,
error
)
{
if
(
xhr
.
status
==
403
)
{
addMessage
(
gettext
(
"You have no permission to change this profile."
),
"danger"
);
}
else
{
addMessage
(
gettext
(
"Unknown error."
),
"danger"
);
}
}
});
});
});
circle/dashboard/templates/dashboard/profile.html
View file @
33262020
...
...
@@ -19,7 +19,7 @@
<div
class=
"panel-body"
>
<div>
<div
class=
""
style=
"float: left"
>
<img
src=
"{{ avatar_url }}?s=200
"
class=
"img-rounded"
/>
<img
id=
"dashboard-profile-avatar"
src=
"{{ avatar_url }}
"
class=
"img-rounded"
/>
</div>
<div
class=
""
style=
"padding-left: 215px;"
>
<p>
Username: {{ profile.username }}
</p>
...
...
@@ -27,10 +27,14 @@
<p>
First name: {{ profile.first_name|default:"-" }}
</p>
<p>
Last name: {{ profile.last_name|default:"-" }}
</p>
<p>
Email address: {{ profile.email }}
</p>
{% if request.user == profile %}
<p>
Use email address as Gravatar profile image:
<input
type=
"checkbox"
/>
<a
href=
"https://gravatar.com"
>
What's Gravatar?
</a>
</p>
<input
id=
"dashboard-profile-use-gravatar"
data-user=
"{{ profile.pk }}"
{%
if
profile
.
profile
.
use_gravatar
%}
checked=
"checked"
{%
endif
%}
type=
"checkbox"
/>
<a
href=
"https://gravatar.com"
>
What's Gravatar?
</a>
</p>
{% endif %}
</div>
<div
class=
"clearfix"
></div>
</div>
...
...
@@ -96,3 +100,7 @@
</div>
{% endblock %}
{% block extra_js %}
<script
src=
"{{ STATIC_URL }}dashboard/profile.js"
></script>
{% endblock %}
circle/dashboard/urls.py
View file @
33262020
...
...
@@ -34,7 +34,7 @@ from .views import (
GroupCreate
,
TemplateChoose
,
UserCreationView
,
ProfileView
,
ProfileView
,
toggle_use_gravatar
,
)
urlpatterns
=
patterns
(
...
...
@@ -133,8 +133,9 @@ urlpatterns = patterns(
url
(
r'^interface/(?P<pk>\d+)/delete/$'
,
InterfaceDeleteView
.
as_view
(),
name
=
"dashboard.views.interface-delete"
),
url
(
r'^profile/(?P<pk>\d+)$'
,
ProfileView
.
as_view
(),
url
(
r'^profile/(?P<pk>\d+)
/
$'
,
ProfileView
.
as_view
(),
name
=
"dashboard.views.profile"
),
url
(
r'^profile/(?P<pk>\d+)/use_gravatar/$'
,
toggle_use_gravatar
),
url
(
r'^group/(?P<group_pk>\d+)/remove/acl/user/(?P<member_pk>\d+)/$'
,
GroupRemoveAclUserView
.
as_view
(),
...
...
circle/dashboard/views.py
View file @
33262020
...
...
@@ -36,7 +36,7 @@ from django.core.urlresolvers import reverse, reverse_lazy
from
django.db.models
import
Count
from
django.http
import
HttpResponse
,
HttpResponseRedirect
,
Http404
from
django.shortcuts
import
redirect
,
render
,
get_object_or_404
from
django.views.decorators.http
import
require_GET
from
django.views.decorators.http
import
require_GET
,
require_POST
from
django.views.generic.detail
import
SingleObjectMixin
from
django.views.generic
import
(
TemplateView
,
DetailView
,
View
,
DeleteView
,
UpdateView
,
CreateView
,
ListView
)
...
...
@@ -46,6 +46,7 @@ from django.utils.translation import ungettext as __
from
django.template.defaultfilters
import
title
as
title_filter
from
django.template.loader
import
render_to_string
from
django.template
import
RequestContext
from
django.templatetags.static
import
static
from
django.forms.models
import
inlineformset_factory
from
django_tables2
import
SingleTableView
...
...
@@ -2652,14 +2653,14 @@ class InterfaceDeleteView(DeleteView):
self
.
object
.
instance
.
get_absolute_url
()
class
ProfileView
(
DetailView
):
class
ProfileView
(
LoginRequiredMixin
,
DetailView
):
template_name
=
"dashboard/profile.html"
model
=
User
def
get_context_data
(
self
,
**
kwargs
):
context
=
super
(
ProfileView
,
self
)
.
get_context_data
(
**
kwargs
)
context
[
'profile'
]
=
self
.
get_object
()
context
[
'avatar_url'
]
=
self
.
get_avatar_url
(
)
context
[
'avatar_url'
]
=
get_user_avatar_url
(
context
[
'profile'
]
)
context
[
'instances_owned'
]
=
Instance
.
get_objects_with_level
(
"owner"
,
self
.
get_object
(),
disregard_superuser
=
True
)
.
filter
(
destroyed_at
=
None
)
...
...
@@ -2694,7 +2695,27 @@ class ProfileView(DetailView):
'instances_with_access'
]
.
filter
(
template__in
=
it
)
return
context
def
get_avatar_url
(
self
):
user
=
self
.
get_object
()
@require_POST
def
toggle_use_gravatar
(
request
,
**
kwargs
):
user
=
get_object_or_404
(
User
,
pk
=
kwargs
[
'pk'
])
if
not
request
.
user
==
user
:
raise
PermissionDenied
()
profile
=
user
.
profile
profile
.
use_gravatar
=
not
profile
.
use_gravatar
profile
.
save
()
new_avatar_url
=
get_user_avatar_url
(
user
)
return
HttpResponse
(
json
.
dumps
({
'new_avatar_url'
:
new_avatar_url
}),
content_type
=
"application/json"
,
)
def
get_user_avatar_url
(
user
):
if
user
.
profile
.
use_gravatar
:
gravatar_hash
=
md5
(
user
.
email
)
.
hexdigest
()
return
"https://gravatar.com/avatar/
%
s"
%
gravatar_hash
return
"https://secure.gravatar.com/avatar/
%
s?s=200"
%
gravatar_hash
else
:
return
static
(
"dashboard/img/avatar.png"
)
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