Skip to content
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

Add bando_state info in serializer #11

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}

# python cache
- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyroma.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}

# python cache
- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Tests
on:
push:
paths-ignore:
- '**.md'
- '**.rst'
- "**.md"
- "**.rst"
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Cache eggs
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: eggs
key: ${{ runner.OS }}-build-python${{ matrix.python }}-${{ matrix.plone }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/zpretty.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
python-version: [3.11]

steps:
# git checkout
Expand All @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}

# python cache
- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand All @@ -37,4 +37,4 @@ jobs:
# XXX: this doesn't work on gh actions (https://github.com/plone/plone.restapi/pull/1119/checks?check_run_id=2686474411)
# run git diff
- name: run git diff
run: git diff --exit-code
run: git diff --exit-code
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Changelog
1.0.5 (unreleased)
------------------

- Nothing changed yet.
- Add Bando serializer to return bando_state and approfondimento.
[cekk]


1.0.4 (2024-11-22)
Expand Down
19 changes: 6 additions & 13 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,10 @@ line_length = 200
not_skip = __init__.py

[flake8]
# black compatible flake8 rules:
ignore =
W503,
C812,
E501
T001
C813
# E203, E266
exclude = bootstrap.py,docs,*.egg.,omelette
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9
builtins = unicode,basestring

max-complexity = 15
max-line-length = 100000
extend-ignore =
E203,
C901,
C101
36 changes: 36 additions & 0 deletions src/iosanita/contenttypes/restapi/serializers/bando.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# -*- coding: utf-8 -*-
from plone.restapi.interfaces import ISerializeToJson
from plone.restapi.serializer.dxcontent import SerializeFolderToJson
from redturtle.bandi.interfaces.bandoSchema import IBandoSchema
from zope.component import adapter
from zope.interface import implementer
from zope.interface import Interface


@implementer(ISerializeToJson)
@adapter(IBandoSchema, Interface)
class BandoSerializeToJson(SerializeFolderToJson):
def get_approfondimenti(self, bando_view):
""" """
folders = bando_view.retrieveFolderDeepening()
results = []

for folder in folders:
contents = bando_view.retrieveContentsOfFolderDeepening(folder["path"])
if not contents:
continue
# fix results for enhancedlinks
for content in contents:
content["getObjSize"] = content.get("filesize", "")
content["mime_type"] = content.get("content-type", "")
content["enhanced_links_enabled"] = "filesize" in content
folder.update({"children": contents})
results.append(folder)
return results

def __call__(self, version=None, include_items=True):
result = super().__call__(version=version, include_items=include_items)
bando_view = self.context.restrictedTraverse("bando_view")
result["approfondimento"] = self.get_approfondimenti(bando_view)
result["bando_state"] = bando_view.getBandoState()
return result
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xmlns="http://namespaces.zope.org/zope"
xmlns:zcml="http://namespaces.zope.org/zcml"
>

<adapter factory=".bando.BandoSerializeToJson" />
<adapter factory=".news.NewsItemSerializeToJson" />
<adapter factory=".summary.IOSanitaJSONSummarySerializer" />
<adapter factory=".summary.PuntoDiContattoJSONSummarySerializer" />
Expand Down
Loading