Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
djangoldp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
djangoldp-packages
djangoldp
Compare revisions
master to 277-ldp-serializer
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
djangoldp-packages/djangoldp
Select target project
No results found
277-ldp-serializer
Select Git revision
Swap
Target
djangoldp-packages/djangoldp
Select target project
djangoldp-packages/djangoldp
decentral1se/djangoldp
femmefaytale/djangoldp
jvtrudel/djangoldp
4 results
master
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
feature: barebones simple LDPSerializer alternative
· 8584976a
Calum Mackervoy
authored
3 years ago
8584976a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
djangoldp/serializers_new.py
+88
-0
88 additions, 0 deletions
djangoldp/serializers_new.py
with
88 additions
and
0 deletions
djangoldp/serializers_new.py
0 → 100644
View file @
8584976a
from
django.conf
import
settings
from
rest_framework.relations
import
HyperlinkedRelatedField
,
RelatedField
from
rest_framework.serializers
import
Serializer
from
djangoldp.models
import
Model
from
djangoldp.serializers
import
_serialize_rdf_fields
class
NewJsonLDRelatedField
(
RelatedField
):
'''
Requirements for use:
* model has a urlid field (URL string)
'''
def
to_representation
(
self
,
instance
):
data
=
{
'
@id
'
:
instance
.
urlid
}
rdf_type
=
Model
.
get_meta
(
instance
,
'
rdf_type
'
,
None
)
if
rdf_type
is
not
None
:
data
.
update
({
'
@type
'
:
rdf_type
})
return
data
def
to_internal_value
(
self
,
data
):
# TODO: ...
# you have JSON-LD data, you want model instance
# main issue is not knowing the type
# the connected instance MUST exist
# the connected instance MAY be foreign
if
'
@type
'
in
data
:
model_class
=
Model
.
get_subclass_with_rdf_type
(
data
[
'
@type
'
])
return
model_class
.
objects
.
get
(
urlid
=
data
[
'
@id
'
])
class
NewLDPSerializer
(
Serializer
):
'''
Requirements for use:
* model has a urlid field, used as a unique identifier on the instance
'''
def
external_instance_to_representation
(
self
,
instance
):
'''
called by to_representation when serializing external instances
'''
data
=
{
'
@id
'
:
instance
.
urlid
}
return
_serialize_rdf_fields
(
instance
,
data
)
def
to_representation
(
self
,
instance
):
# external Models should only be returned with rdf values
if
Model
.
is_external
(
instance
):
return
self
.
external_instance_to_representation
(
instance
)
data
=
super
().
to_representation
(
instance
)
'''
slug_field = Model.slug_field(obj)
for field in data:
if isinstance(data[field], dict) and
'
@id
'
in data[field]:
data[field][
'
@id
'
] = data[field][
'
@id
'
].format(Model.container_id(obj), str(getattr(obj, slug_field)))
'''
# prioritise urlid field over generated @id
if
'
urlid
'
in
data
and
data
[
'
urlid
'
]
is
not
None
:
data
[
'
@id
'
]
=
data
.
pop
(
'
urlid
'
)[
'
@id
'
]
# TODO: raise error or try to treat it?
'''
if not
'
@id
'
in data:
try:
data[
'
@id
'
] =
'
{}{}
'
.format(settings.SITE_URL, Model.resource(obj))
except AttributeError, NoReverseMatch:
pass
'''
data
=
_serialize_rdf_fields
(
instance
,
data
,
include_context
=
True
)
# permissions serialization: depends on request!
'''
if hasattr(obj,
'
get_model_class
'
):
model_class = obj.get_model_class()
else:
model_class = type(obj)
data[
'
permissions
'
] = _serialize_object_permissions(
Model.get_permissions(model_class, self.context[
'
request
'
], self.context[
'
view
'
], obj))
'''
return
data
def
to_internal_value
(
self
,
data
):
if
'
@id
'
in
data
and
not
'
urlid
'
in
data
:
data
[
'
urlid
'
]
=
data
.
pop
(
'
@id
'
)
return
super
().
to_internal_value
(
data
)
This diff is collapsed.
Click to expand it.