Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
22c1ffb0
Commit
22c1ffb0
authored
10 years ago
by
Mark Haines
Browse files
Options
Downloads
Patches
Plain Diff
Add a media/v1/identicon resource for generating identicons using pydenticon
parent
6e856d77
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
setup.py
+1
-0
1 addition, 0 deletions
setup.py
synapse/rest/media/v1/identicon_resource.py
+48
-0
48 additions, 0 deletions
synapse/rest/media/v1/identicon_resource.py
synapse/rest/media/v1/media_repository.py
+2
-0
2 additions, 0 deletions
synapse/rest/media/v1/media_repository.py
with
51 additions
and
0 deletions
setup.py
+
1
−
0
View file @
22c1ffb0
...
...
@@ -43,6 +43,7 @@ setup(
"
py-bcrypt
"
,
"
frozendict>=0.4
"
,
"
pillow
"
,
"
pydenticon
"
,
],
dependency_links
=
[
"
https://github.com/matrix-org/syutil/tarball/v0.0.2#egg=syutil-0.0.2
"
,
...
...
This diff is collapsed.
Click to expand it.
synapse/rest/media/v1/identicon_resource.py
0 → 100644
+
48
−
0
View file @
22c1ffb0
from
pydenticon
import
Generator
from
twisted.web.resource
import
Resource
FOREGROUND
=
[
"
rgb(45,79,255)
"
,
"
rgb(254,180,44)
"
,
"
rgb(226,121,234)
"
,
"
rgb(30,179,253)
"
,
"
rgb(232,77,65)
"
,
"
rgb(49,203,115)
"
,
"
rgb(141,69,170)
"
]
BACKGROUND
=
"
rgb(224,224,224)
"
SIZE
=
5
class
IdenticonResource
(
Resource
):
isLeaf
=
True
def
__init__
(
self
):
Resource
.
__init__
(
self
)
self
.
generator
=
Generator
(
SIZE
,
SIZE
,
foreground
=
FOREGROUND
,
background
=
BACKGROUND
,
)
def
generate_identicon
(
self
,
name
,
width
,
height
):
v_padding
=
width
%
SIZE
h_padding
=
height
%
SIZE
top_padding
=
v_padding
//
2
left_padding
=
h_padding
//
2
bottom_padding
=
v_padding
-
top_padding
right_padding
=
h_padding
-
left_padding
width
-=
v_padding
height
-=
h_padding
padding
=
(
top_padding
,
bottom_padding
,
left_padding
,
right_padding
)
identicon
=
self
.
generator
.
generate
(
name
,
width
,
height
,
padding
=
padding
)
return
identicon
def
render_GET
(
self
,
request
):
name
=
"
/
"
.
join
(
request
.
postpath
)
width
=
int
(
request
.
args
.
get
(
"
width
"
,
96
))
height
=
int
(
request
.
args
.
get
(
"
width
"
,
96
))
identicon_bytes
=
self
.
generate_identicon
(
name
,
width
,
height
)
request
.
setHeader
(
b
"
Content-Type
"
,
b
"
image/png
"
)
return
identicon_bytes
This diff is collapsed.
Click to expand it.
synapse/rest/media/v1/media_repository.py
+
2
−
0
View file @
22c1ffb0
...
...
@@ -16,6 +16,7 @@
from
.upload_resource
import
UploadResource
from
.download_resource
import
DownloadResource
from
.thumbnail_resource
import
ThumbnailResource
from
.identicon_resource
import
IdenticonResource
from
.filepath
import
MediaFilePaths
from
twisted.web.resource
import
Resource
...
...
@@ -75,3 +76,4 @@ class MediaRepositoryResource(Resource):
self
.
putChild
(
"
upload
"
,
UploadResource
(
hs
,
filepaths
))
self
.
putChild
(
"
download
"
,
DownloadResource
(
hs
,
filepaths
))
self
.
putChild
(
"
thumbnail
"
,
ThumbnailResource
(
hs
,
filepaths
))
self
.
putChild
(
"
identicon
"
,
IdenticonResource
())
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