本文整理汇总了Python中util.rest.parse_string函数的典型用法代码示例。如果您正苦于以下问题:Python parse_string函数的具体用法?Python parse_string怎么用?Python parse_string使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了parse_string函数的18个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。
示例1: patch
def patch(self, request, strike_id):
"""Edits an existing Strike process and returns the updated details
:param request: the HTTP GET request
:type request: :class:`rest_framework.request.Request`
:param strike_id: The ID of the Strike process
:type strike_id: int encoded as a str
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
"""
title = rest_util.parse_string(request, 'title', required=False)
description = rest_util.parse_string(request, 'description', required=False)
configuration = rest_util.parse_dict(request, 'configuration', required=False)
try:
Strike.objects.edit_strike(strike_id, title, description, configuration)
strike = Strike.objects.get_details(strike_id)
except Strike.DoesNotExist:
raise Http404
except InvalidStrikeConfiguration as ex:
logger.exception('Unable to edit Strike process: %s', strike_id)
raise BadParameter(unicode(ex))
serializer = self.get_serializer(strike)
return Response(serializer.data)
开发者ID:AppliedIS,项目名称:scale,代码行数:27,代码来源:views.py
示例2: create
def create(self, request):
"""Creates a new Strike process and returns a link to the detail URL
:param request: the HTTP POST request
:type request: :class:`rest_framework.request.Request`
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
"""
name = rest_util.parse_string(request, 'name')
title = rest_util.parse_string(request, 'title', required=False)
description = rest_util.parse_string(request, 'description', required=False)
configuration = rest_util.parse_dict(request, 'configuration')
try:
strike = Strike.objects.create_strike(name, title, description, configuration)
except InvalidStrikeConfiguration as ex:
raise BadParameter('Strike configuration invalid: %s' % unicode(ex))
# Fetch the full strike process with details
try:
strike = Strike.objects.get_details(strike.id)
except Strike.DoesNotExist:
raise Http404
serializer = StrikeDetailsSerializer(strike)
strike_url = urlresolvers.reverse('strike_details_view', args=[strike.id])
return Response(serializer.data, status=status.HTTP_201_CREATED, headers=dict(location=strike_url))
开发者ID:AppliedIS,项目名称:scale,代码行数:28,代码来源:views.py
示例3: post
def post(self, request):
"""Validates a new Strike process and returns any warnings discovered
:param request: the HTTP POST request
:type request: :class:`rest_framework.request.Request`
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
"""
name = rest_util.parse_string(request, 'name')
configuration = rest_util.parse_dict(request, 'configuration')
rest_util.parse_string(request, 'title', required=False)
rest_util.parse_string(request, 'description', required=False)
# Validate the Strike configuration
try:
config = StrikeConfiguration(configuration)
warnings = config.validate()
except InvalidStrikeConfiguration as ex:
logger.exception('Unable to validate new Strike process: %s', name)
raise BadParameter(unicode(ex))
results = [{'id': w.key, 'details': w.details} for w in warnings]
return Response({'warnings': results})
开发者ID:AppliedIS,项目名称:scale,代码行数:25,代码来源:views.py
示例4: patch
def patch(self, request, workspace_id):
"""Edits an existing workspace and returns the updated details
:param request: the HTTP GET request
:type request: :class:`rest_framework.request.Request`
:param workspace_id: The ID for the workspace.
:type workspace_id: int encoded as a str
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
"""
title = rest_util.parse_string(request, "title", required=False)
description = rest_util.parse_string(request, "description", required=False)
json_config = rest_util.parse_dict(request, "json_config", required=False)
base_url = rest_util.parse_string(request, "base_url", required=False)
is_active = rest_util.parse_string(request, "is_active", required=False)
try:
Workspace.objects.edit_workspace(workspace_id, title, description, json_config, base_url, is_active)
workspace = Workspace.objects.get_details(workspace_id)
except Workspace.DoesNotExist:
raise Http404
except InvalidWorkspaceConfiguration as ex:
logger.exception("Unable to edit workspace: %s", workspace_id)
raise BadParameter(unicode(ex))
serializer = self.get_serializer(workspace)
return Response(serializer.data)
开发者ID:ngageoint,项目名称:scale,代码行数:29,代码来源:views.py
示例5: create
def create(self, request):
"""Creates a new Workspace and returns it in JSON form
:param request: the HTTP POST request
:type request: :class:`rest_framework.request.Request`
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
"""
name = rest_util.parse_string(request, "name")
title = rest_util.parse_string(request, "title", required=False)
description = rest_util.parse_string(request, "description", required=False)
json_config = rest_util.parse_dict(request, "json_config")
base_url = rest_util.parse_string(request, "base_url", required=False)
is_active = rest_util.parse_bool(request, "is_active", default_value=True, required=False)
try:
workspace = Workspace.objects.create_workspace(name, title, description, json_config, base_url, is_active)
except InvalidWorkspaceConfiguration as ex:
logger.exception("Unable to create new workspace: %s", name)
raise BadParameter(unicode(ex))
# Fetch the full workspace with details
try:
workspace = Workspace.objects.get_details(workspace.id)
except Workspace.DoesNotExist:
raise Http404
serializer = WorkspaceDetailsSerializer(workspace)
workspace_url = reverse("workspace_details_view", args=[workspace.id], request=request)
return Response(serializer.data, status=status.HTTP_201_CREATED, headers=dict(location=workspace_url))
开发者ID:ngageoint,项目名称:scale,代码行数:31,代码来源:views.py
示例6: post
def post(self, request):
"""Validates a new workspace and returns any warnings discovered
:param request: the HTTP POST request
:type request: :class:`rest_framework.request.Request`
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
"""
name = rest_util.parse_string(request, "name")
json_config = rest_util.parse_dict(request, "json_config")
rest_util.parse_string(request, "title", required=False)
rest_util.parse_string(request, "description", required=False)
rest_util.parse_string(request, "base_url", required=False)
rest_util.parse_string(request, "is_active", required=False)
# Validate the workspace configuration
try:
warnings = Workspace.objects.validate_workspace(name, json_config)
except InvalidWorkspaceConfiguration as ex:
logger.exception("Unable to validate new workspace: %s", name)
raise BadParameter(unicode(ex))
results = [{"id": w.key, "details": w.details} for w in warnings]
return Response({"warnings": results})
开发者ID:ngageoint,项目名称:scale,代码行数:26,代码来源:views.py
示例7: list
def list(self, request):
"""Gets jobs and their associated latest execution
:param request: the HTTP GET request
:type request: :class:`rest_framework.request.Request`
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
"""
started = rest_util.parse_timestamp(request, 'started', required=False)
ended = rest_util.parse_timestamp(request, 'ended', required=False)
rest_util.check_time_range(started, ended)
job_status = rest_util.parse_string(request, 'status', required=False)
job_ids = rest_util.parse_int_list(request, 'job_id', required=False)
job_type_ids = rest_util.parse_int_list(request, 'job_type_id', required=False)
job_type_names = rest_util.parse_string_list(request, 'job_type_name', required=False)
job_type_categories = rest_util.parse_string_list(request, 'job_type_category', required=False)
order = rest_util.parse_string_list(request, 'order', required=False)
jobs = Job.objects.get_jobs(started, ended, job_status, job_ids, job_type_ids, job_type_names,
job_type_categories, order)
# Add the latest execution for each matching job
page = self.paginate_queryset(jobs)
job_exes_dict = JobExecution.objects.get_latest(page)
for job in page:
job.latest_job_exe = job_exes_dict[job.id] if job.id in job_exes_dict else None
serializer = self.get_serializer(page, many=True)
return self.get_paginated_response(serializer.data)
开发者ID:cuulee,项目名称:scale,代码行数:30,代码来源:views.py
示例8: get
def get(self, request):
"""Retrieves the job updates for a given time range and returns it in JSON form
:param request: the HTTP GET request
:type request: :class:`rest_framework.request.Request`
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
"""
started = rest_util.parse_timestamp(request, 'started', required=False)
ended = rest_util.parse_timestamp(request, 'ended', required=False)
rest_util.check_time_range(started, ended)
job_status = rest_util.parse_string(request, 'status', required=False)
job_type_ids = rest_util.parse_int_list(request, 'job_type_id', required=False)
job_type_names = rest_util.parse_string_list(request, 'job_type_name', required=False)
job_type_categories = rest_util.parse_string_list(request, 'job_type_category', required=False)
order = rest_util.parse_string_list(request, 'order', required=False)
jobs = Job.objects.get_job_updates(started, ended, job_status, job_type_ids, job_type_names,
job_type_categories, order)
page = self.paginate_queryset(jobs)
Job.objects.populate_input_files(page)
serializer = self.get_serializer(page, many=True)
return self.get_paginated_response(serializer.data)
开发者ID:cuulee,项目名称:scale,代码行数:26,代码来源:views.py
示例9: patch
def patch(self, request, job_id):
"""Modify job info with a subset of fields
:param request: the HTTP GET request
:type request: :class:`rest_framework.request.Request`
:param job_id: The ID for the job.
:type job_id: int encoded as a str
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
"""
# Validate that no extra fields are included
rest_util.check_update(request, ['status'])
# Validate JSON
status_code = rest_util.parse_string(request, 'status')
if status_code != 'CANCELED':
raise rest_util.BadParameter('Invalid or read-only status. Allowed values: CANCELED')
try:
Queue.objects.handle_job_cancellation(job_id, datetime.utcnow())
job = Job.objects.get_details(job_id)
except (Job.DoesNotExist, JobExecution.DoesNotExist):
raise Http404
serializer = self.get_serializer(job)
return Response(serializer.data)
开发者ID:cuulee,项目名称:scale,代码行数:27,代码来源:views.py
示例10: get
def get(self, request):
'''Retrieves the product updates for a given time range and returns it in JSON form
:param request: the HTTP GET request
:type request: :class:`rest_framework.request.Request`
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
'''
started = rest_util.parse_timestamp(request, u'started', required=False)
ended = rest_util.parse_timestamp(request, u'ended', required=False)
rest_util.check_time_range(started, ended)
job_type_ids = rest_util.parse_int_list(request, u'job_type_id', required=False)
job_type_names = rest_util.parse_string_list(request, u'job_type_name', required=False)
job_type_categories = rest_util.parse_string_list(request, u'job_type_category', required=False)
is_operational = rest_util.parse_bool(request, u'is_operational', required=False)
file_name = rest_util.parse_string(request, u'file_name', required=False)
order = rest_util.parse_string_list(request, u'order', required=False)
products = ProductFile.objects.get_products(started, ended, job_type_ids, job_type_names, job_type_categories,
is_operational, file_name, order)
page = rest_util.perform_paging(request, products)
ProductFile.objects.populate_source_ancestors(page)
serializer = ProductFileUpdateListSerializer(page, context={'request': request})
return Response(serializer.data, status=status.HTTP_200_OK)
开发者ID:cshamis,项目名称:scale,代码行数:26,代码来源:views.py
示例11: get
def get(self, request):
'''Gets job executions and their associated job_type id, name, and version
:param request: the HTTP GET request
:type request: :class:`rest_framework.request.Request`
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
'''
started = rest_util.parse_timestamp(request, u'started', required=False)
ended = rest_util.parse_timestamp(request, u'ended', required=False)
rest_util.check_time_range(started, ended)
job_status = rest_util.parse_string(request, u'status', required=False)
job_type_ids = rest_util.parse_int_list(request, u'job_type_id', required=False)
job_type_names = rest_util.parse_string_list(request, u'job_type_name', required=False)
job_type_categories = rest_util.parse_string_list(request, u'job_type_category', required=False)
node_ids = rest_util.parse_int_list(request, u'node_id', required=False)
order = rest_util.parse_string_list(request, u'order', required=False)
job_exes = JobExecution.objects.get_exes(started, ended, job_status, job_type_ids, job_type_names,
job_type_categories, node_ids, order)
page = rest_util.perform_paging(request, job_exes)
serializer = JobExecutionListSerializer(page, context={u'request': request})
return Response(serializer.data, status=status.HTTP_200_OK)
开发者ID:Carl4,项目名称:scale,代码行数:27,代码来源:views.py
示例12: test_parse_string
def test_parse_string(self):
"""Tests parsing a required string parameter that is provided via GET."""
request = MagicMock(Request)
request.query_params = QueryDict('', mutable=True)
request.query_params.update({
'test': 'value1',
})
self.assertEqual(rest_util.parse_string(request, 'test'), 'value1')
开发者ID:ngageoint,项目名称:scale,代码行数:8,代码来源:test_rest.py
示例13: test_parse_string_post
def test_parse_string_post(self):
'''Tests parsing a required string parameter that is provided via POST.'''
request = MagicMock(Request)
request.DATA = QueryDict('', mutable=True)
request.DATA.update({
'test': 'value1',
})
self.assertEqual(rest_util.parse_string(request, 'test'), 'value1')
开发者ID:dev-geo,项目名称:scale,代码行数:8,代码来源:test_rest.py
示例14: test_parse_string_optional
def test_parse_string_optional(self):
'''Tests parsing an optional string parameter that is missing.'''
request = MagicMock(Request)
request.QUERY_PARAMS = QueryDict('', mutable=True)
request.QUERY_PARAMS.update({
'test': 'value1',
})
self.assertIsNone(rest_util.parse_string(request, 'test2', required=False))
开发者ID:dev-geo,项目名称:scale,代码行数:8,代码来源:test_rest.py
示例15: test_parse_string_default
def test_parse_string_default(self):
'''Tests parsing an optional string parameter that is provided via default value.'''
request = MagicMock(Request)
request.QUERY_PARAMS = QueryDict('', mutable=True)
request.QUERY_PARAMS.update({
'test': 'value1',
})
self.assertEqual(rest_util.parse_string(request, 'test2', 'value2'), 'value2')
开发者ID:dev-geo,项目名称:scale,代码行数:8,代码来源:test_rest.py
示例16: post
def post(self, request):
'''Creates a new Strike process and returns its ID in JSON form
:param request: the HTTP POST request
:type request: :class:`rest_framework.request.Request`
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
'''
name = rest_util.parse_string(request, 'name')
title = rest_util.parse_string(request, 'title', required=False)
description = rest_util.parse_string(request, 'description', required=False)
configuration = rest_util.parse_dict(request, 'configuration')
try:
strike = Strike.objects.create_strike_process(name, title, description, configuration)
except InvalidStrikeConfiguration:
raise BadParameter('Configuration failed to validate.')
return Response({'strike_id': strike.id})
开发者ID:Carl4,项目名称:scale,代码行数:18,代码来源:views.py
示例17: test_parse_string_accepted_all
def test_parse_string_accepted_all(self):
'''Tests parsing a string parameter where the value is acceptable.'''
request = MagicMock(Request)
request.QUERY_PARAMS = QueryDict('', mutable=True)
request.QUERY_PARAMS.update({
'test': 'value1',
})
self.assertEqual(rest_util.parse_string(request, 'test', accepted_values=['value1']), 'value1')
开发者ID:dev-geo,项目名称:scale,代码行数:9,代码来源:test_rest.py
示例18: list
def list(self, request):
"""Retrieves the list of all ingests and returns it in JSON form
:param request: the HTTP GET request
:type request: :class:`rest_framework.request.Request`
:rtype: :class:`rest_framework.response.Response`
:returns: the HTTP response to send back to the user
"""
started = rest_util.parse_timestamp(request, 'started', required=False)
ended = rest_util.parse_timestamp(request, 'ended', required=False)
rest_util.check_time_range(started, ended)
ingest_status = rest_util.parse_string(request, 'status', required=False)
file_name = rest_util.parse_string(request, 'file_name', required=False)
order = rest_util.parse_string_list(request, 'order', required=False)
ingests = Ingest.objects.get_ingests(started, ended, ingest_status, file_name, order)
page = self.paginate_queryset(ingests)
serializer = self.get_serializer(page, many=True)
return self.get_paginated_response(serializer.data)
开发者ID:dancollar,项目名称:scale,代码行数:22,代码来源:views.py
注:本文中的util.rest.parse_string函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论