Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
REST w Pyramidzie
Search
Łukasz Oleś
January 16, 2013
0
58
REST w Pyramidzie
Łukasz Oleś
January 16, 2013
Tweet
Share
More Decks by Łukasz Oleś
See All by Łukasz Oleś
Jak napisać dobre CV? Historia zatrudniania w Mirantis PL
lukaszo
0
94
Fuel - czyli jak stworzyć własną chmurę w ciągu godziny
lukaszo
0
160
Featured
See All Featured
Into the Great Unknown - MozCon
thekraken
40
1.9k
A better future with KSS
kneath
238
17k
RailsConf 2023
tenderlove
30
1.1k
GraphQLとの向き合い方2022年版
quramy
49
14k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
Site-Speed That Sticks
csswizardry
10
690
Rebuilding a faster, lazier Slack
samanthasiow
83
9.1k
The Power of CSS Pseudo Elements
geoffreycrofte
77
5.9k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.4k
Embracing the Ebb and Flow
colly
86
4.7k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
34
5.9k
Transcript
REST w Pyramidzie Łukasz Oleś
None
Prostota Minimalizm Dokumentacja Szybkość Stabilność
Działa na: • Python 2.6 – 3.3 • PyPy •
Jython • GAE
REST http://autouzupelnij.pl GET http://api.autouzupelnij.pl/v1/public/city?term=gli
REST (…)/public/city?term=gli Nazwa konta (…)/public/city?term=gli
REST (…)/public/city?term=gli Nazwa konta Kontener
REST (…)/public/city?term=gli Nazwa konta Zapytanie Kontener
Nowy projekt pcreate -t starter api \api development.ini setup.py \api
__init__.py views.py
Plik api/__init__.py from pyramid.config import Configurator def main(global_config, **settings): config
= Configurator(settings=settings) config.add_route('completion', '/v1/{account}/{container}') config.scan() return config.make_wsgi_app() pserve development.ini
Plik api/views.py from pyramid.view import view_config @view_config(route_name='completion', renderer='json', request_method='GET') def
completion(request): account = request.matchdict['account'] container = request.matchdict['container'] query = request.params.get('term', u'') storage = get_storage(account) offers = storage.suggest(container, query)) return offers
Plik api/views.py @view_config(route_name='completion', renderer='json', request_method='DELETE', permission='edit') def delete_container(request): container =
request.matchdict['container'] account = request.matchdict['account'] storage = get_storage( account) storage.delete_container(container)
Nowy element Plik api/__init__.py config.add_route('items', '/v1/{account}/{container}/{item}')
Plik api/views.py @view_config(route_name='items', renderer='json', request_method='PUT', permission='edit') def add_item(request): container =
request.matchdict['container'] account = request.matchdict['account'] item = request.matchdict['item'] storage = get_storage(account) storage.store_item(container, item)
Walidacja - dodatkowe dane { ”population” : 20000, ”province” :
”slaskie” }
Colander http://docs.pylonsproject.org/projects/colander from colander import MappingSchema, SchemaNode, Int, String class
City(MappingSchema): province = SchemaNode(String()) population = SchemaNode(Int())
Plik api/views.py @view_config(route_name='items', renderer='json', request_method='PUT', permission='edit') def add_item(request): container =
request.matchdict['container'] account = request.matchdict['account'] item = request.matchdict['item'] city = City() data = city.deserialize(request.json_body) storage = get_storage(account) storage.store_item(container, item, data)
@view_config(context=colander.Invalid) def failed_valdation(exc, request): err = json.dumps(exc.asdict()) return HTTPBadRequest(err)
Autoryzacja http://docs.pylonsproject.org/projects/pyramid/en/ latest/tutorials/wiki2/authorization.html https://ziggurat-foundations.readthedocs.org
Plik api/__init__.py from api.auth import RootFactory, auth_check def main(global_config, **settings):
config = Configurator(settings=settings, root_factory=RootFactory, authentication_policy= AuthenticationPolicy(auth_check))
COSR – poziom zaawansowany JavaScript Ajax http://autouzupelnij.pl -> http://api.autouzupelnij.pl http://en.wikipedia.org/wiki/Cross-origin_resource_sharing
Access-Control-Allow-Origin: http://autouzupelnij.pl Access-Control-Allow-Origin: * Access-Control-Allow-Methods: POST, GET Access-Control-Allow-Headers: Content-Type COSR
– poziom zaawansowany
Plik api/__init__.py from pyramid.events import subscriber, NewResponse @subscriber(NewResponse) def add_access_list(event):
event.response.headerlist.append( ('Access-Control-Allow-Origin', '*')) COSR – poziom zaawansowany
Co dalej? Cornice http://cornice.readthedocs.org/
Pytania Łukasz Oleś
[email protected]
Dziękuję Łukasz Oleś
[email protected]