catocli 1.0.11__py3-none-any.whl → 1.0.13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of catocli might be problematic. Click here for more details.
- build/lib/catocli/Utils/clidriver.py +117 -0
- build/lib/catocli/__init__.py +2 -0
- build/lib/catocli/__main__.py +12 -0
- build/lib/catocli/parsers/custom/__init__.py +47 -0
- build/lib/catocli/parsers/custom/customLib.py +70 -0
- build/lib/catocli/parsers/mutation_admin/__init__.py +51 -0
- build/lib/catocli/parsers/mutation_container/__init__.py +23 -0
- build/lib/catocli/parsers/mutation_policy/__init__.py +357 -0
- build/lib/catocli/parsers/mutation_site/__init__.py +219 -0
- build/lib/catocli/parsers/mutation_sites/__init__.py +219 -0
- build/lib/catocli/parsers/parserApiClient.py +309 -0
- build/lib/catocli/parsers/query_accountBySubdomain/__init__.py +17 -0
- build/lib/catocli/parsers/query_accountMetrics/__init__.py +17 -0
- build/lib/catocli/parsers/query_accountRoles/__init__.py +17 -0
- build/lib/catocli/parsers/query_accountSnapshot/__init__.py +17 -0
- build/lib/catocli/parsers/query_admin/__init__.py +17 -0
- build/lib/catocli/parsers/query_admins/__init__.py +17 -0
- build/lib/catocli/parsers/query_appStats/__init__.py +17 -0
- build/lib/catocli/parsers/query_appStatsTimeSeries/__init__.py +17 -0
- build/lib/catocli/parsers/query_auditFeed/__init__.py +17 -0
- build/lib/catocli/parsers/query_container/__init__.py +17 -0
- build/lib/catocli/parsers/query_entityLookup/__init__.py +17 -0
- build/lib/catocli/parsers/query_events/__init__.py +17 -0
- build/lib/catocli/parsers/query_eventsFeed/__init__.py +17 -0
- build/lib/catocli/parsers/query_eventsTimeSeries/__init__.py +17 -0
- build/lib/catocli/parsers/query_hardwareManagement/__init__.py +17 -0
- build/lib/catocli/parsers/query_licensing/__init__.py +17 -0
- build/lib/catocli/parsers/query_policy/__init__.py +17 -0
- build/lib/catocli/parsers/query_siteLocation/__init__.py +17 -0
- build/lib/catocli/parsers/query_subDomains/__init__.py +17 -0
- build/lib/catocli/parsers/query_xdr/__init__.py +37 -0
- build/lib/catocli/parsers/raw/__init__.py +9 -0
- build/lib/graphql_client/__init__.py +11 -0
- build/lib/graphql_client/api/__init__.py +3 -0
- build/lib/graphql_client/api/call_api.py +73 -0
- build/lib/graphql_client/api_client.py +192 -0
- build/lib/graphql_client/api_client_types.py +404 -0
- build/lib/graphql_client/configuration.py +230 -0
- build/lib/graphql_client/models/__init__.py +13 -0
- build/lib/graphql_client/models/no_schema.py +71 -0
- build/lib/schema/catolib.py +1016 -0
- build/lib/schema/importSchema.py +60 -0
- build/lib/vendor/certifi/__init__.py +4 -0
- build/lib/vendor/certifi/__main__.py +12 -0
- build/lib/vendor/certifi/core.py +114 -0
- build/lib/vendor/certifi/py.typed +0 -0
- build/lib/vendor/six.py +998 -0
- build/lib/vendor/urllib3/__init__.py +211 -0
- build/lib/vendor/urllib3/_base_connection.py +172 -0
- build/lib/vendor/urllib3/_collections.py +483 -0
- build/lib/vendor/urllib3/_request_methods.py +278 -0
- build/lib/vendor/urllib3/_version.py +16 -0
- build/lib/vendor/urllib3/connection.py +1033 -0
- build/lib/vendor/urllib3/connectionpool.py +1182 -0
- build/lib/vendor/urllib3/contrib/__init__.py +0 -0
- build/lib/vendor/urllib3/contrib/emscripten/__init__.py +18 -0
- build/lib/vendor/urllib3/contrib/emscripten/connection.py +254 -0
- build/lib/vendor/urllib3/contrib/emscripten/fetch.py +418 -0
- build/lib/vendor/urllib3/contrib/emscripten/request.py +22 -0
- build/lib/vendor/urllib3/contrib/emscripten/response.py +285 -0
- build/lib/vendor/urllib3/contrib/pyopenssl.py +552 -0
- build/lib/vendor/urllib3/contrib/socks.py +228 -0
- build/lib/vendor/urllib3/exceptions.py +321 -0
- build/lib/vendor/urllib3/fields.py +341 -0
- build/lib/vendor/urllib3/filepost.py +89 -0
- build/lib/vendor/urllib3/http2/__init__.py +53 -0
- build/lib/vendor/urllib3/http2/connection.py +356 -0
- build/lib/vendor/urllib3/http2/probe.py +87 -0
- build/lib/vendor/urllib3/poolmanager.py +637 -0
- build/lib/vendor/urllib3/py.typed +2 -0
- build/lib/vendor/urllib3/response.py +1265 -0
- build/lib/vendor/urllib3/util/__init__.py +42 -0
- build/lib/vendor/urllib3/util/connection.py +137 -0
- build/lib/vendor/urllib3/util/proxy.py +43 -0
- build/lib/vendor/urllib3/util/request.py +256 -0
- build/lib/vendor/urllib3/util/response.py +101 -0
- build/lib/vendor/urllib3/util/retry.py +533 -0
- build/lib/vendor/urllib3/util/ssl_.py +513 -0
- build/lib/vendor/urllib3/util/ssl_match_hostname.py +159 -0
- build/lib/vendor/urllib3/util/ssltransport.py +276 -0
- build/lib/vendor/urllib3/util/timeout.py +275 -0
- build/lib/vendor/urllib3/util/url.py +471 -0
- build/lib/vendor/urllib3/util/util.py +42 -0
- build/lib/vendor/urllib3/util/wait.py +124 -0
- catocli/__init__.py +1 -1
- catocli/parsers/custom/__init__.py +1 -1
- catocli/parsers/custom/customLib.py +1 -2
- catocli/parsers/mutation_admin/__init__.py +3 -3
- catocli/parsers/mutation_admin_addAdmin/README.md +1 -1
- catocli/parsers/mutation_admin_removeAdmin/README.md +1 -1
- catocli/parsers/mutation_admin_updateAdmin/README.md +1 -1
- catocli/parsers/mutation_container/__init__.py +1 -1
- catocli/parsers/mutation_container_delete/README.md +1 -1
- catocli/parsers/mutation_policy/__init__.py +24 -24
- catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_addSection/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_createPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_discardPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_moveRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_moveSection/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_publishPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_removeRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_removeSection/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_updatePolicy/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_updateSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_addSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_createPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_discardPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_moveRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_moveSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_publishPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_removeRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_removeSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_updatePolicy/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_updateSection/README.md +1 -1
- catocli/parsers/mutation_site/__init__.py +15 -15
- catocli/parsers/mutation_site_addIpsecIkeV2Site/README.md +1 -1
- catocli/parsers/mutation_site_addIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_site_addNetworkRange/README.md +1 -1
- catocli/parsers/mutation_site_addSocketSite/README.md +1 -1
- catocli/parsers/mutation_site_addStaticHost/README.md +1 -1
- catocli/parsers/mutation_site_removeNetworkRange/README.md +1 -1
- catocli/parsers/mutation_site_removeSite/README.md +1 -1
- catocli/parsers/mutation_site_removeStaticHost/README.md +1 -1
- catocli/parsers/mutation_site_updateHa/README.md +1 -1
- catocli/parsers/mutation_site_updateIpsecIkeV2SiteGeneralDetails/README.md +1 -1
- catocli/parsers/mutation_site_updateIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_site_updateNetworkRange/README.md +1 -1
- catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md +2 -2
- catocli/parsers/mutation_site_updateSocketInterface/README.md +1 -1
- catocli/parsers/mutation_site_updateStaticHost/README.md +1 -1
- catocli/parsers/mutation_sites/__init__.py +15 -15
- catocli/parsers/mutation_sites_addIpsecIkeV2Site/README.md +1 -1
- catocli/parsers/mutation_sites_addIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_sites_addNetworkRange/README.md +1 -1
- catocli/parsers/mutation_sites_addSocketSite/README.md +1 -1
- catocli/parsers/mutation_sites_addStaticHost/README.md +1 -1
- catocli/parsers/mutation_sites_removeNetworkRange/README.md +1 -1
- catocli/parsers/mutation_sites_removeSite/README.md +1 -1
- catocli/parsers/mutation_sites_removeStaticHost/README.md +1 -1
- catocli/parsers/mutation_sites_updateHa/README.md +1 -1
- catocli/parsers/mutation_sites_updateIpsecIkeV2SiteGeneralDetails/README.md +1 -1
- catocli/parsers/mutation_sites_updateIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_sites_updateNetworkRange/README.md +1 -1
- catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md +2 -2
- catocli/parsers/mutation_sites_updateSocketInterface/README.md +1 -1
- catocli/parsers/mutation_sites_updateStaticHost/README.md +1 -1
- catocli/parsers/query_accountBySubdomain/README.md +1 -1
- catocli/parsers/query_accountBySubdomain/__init__.py +1 -1
- catocli/parsers/query_accountMetrics/README.md +1 -1
- catocli/parsers/query_accountMetrics/__init__.py +1 -1
- catocli/parsers/query_accountRoles/README.md +1 -1
- catocli/parsers/query_accountRoles/__init__.py +1 -1
- catocli/parsers/query_accountSnapshot/README.md +1 -1
- catocli/parsers/query_accountSnapshot/__init__.py +1 -1
- catocli/parsers/query_admin/README.md +1 -1
- catocli/parsers/query_admin/__init__.py +1 -1
- catocli/parsers/query_admins/README.md +1 -1
- catocli/parsers/query_admins/__init__.py +1 -1
- catocli/parsers/query_appStats/README.md +1 -1
- catocli/parsers/query_appStats/__init__.py +1 -1
- catocli/parsers/query_appStatsTimeSeries/README.md +1 -1
- catocli/parsers/query_appStatsTimeSeries/__init__.py +1 -1
- catocli/parsers/query_auditFeed/README.md +1 -1
- catocli/parsers/query_auditFeed/__init__.py +1 -1
- catocli/parsers/query_container/README.md +1 -1
- catocli/parsers/query_container/__init__.py +1 -1
- catocli/parsers/query_entityLookup/README.md +1 -1
- catocli/parsers/query_entityLookup/__init__.py +1 -1
- catocli/parsers/query_events/README.md +1 -1
- catocli/parsers/query_events/__init__.py +1 -1
- catocli/parsers/query_eventsFeed/README.md +2 -2
- catocli/parsers/query_eventsFeed/__init__.py +1 -1
- catocli/parsers/query_eventsTimeSeries/README.md +1 -1
- catocli/parsers/query_eventsTimeSeries/__init__.py +1 -1
- catocli/parsers/query_hardwareManagement/README.md +1 -1
- catocli/parsers/query_hardwareManagement/__init__.py +1 -1
- catocli/parsers/query_licensing/README.md +1 -1
- catocli/parsers/query_licensing/__init__.py +1 -1
- catocli/parsers/query_policy/README.md +1 -1
- catocli/parsers/query_policy/__init__.py +1 -1
- catocli/parsers/query_siteLocation/README.md +1 -1
- catocli/parsers/query_siteLocation/__init__.py +1 -1
- catocli/parsers/query_subDomains/README.md +1 -1
- catocli/parsers/query_subDomains/__init__.py +1 -1
- catocli/parsers/query_xdr/__init__.py +2 -2
- catocli/parsers/query_xdr_stories/README.md +1 -1
- catocli/parsers/query_xdr_story/README.md +1 -1
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/METADATA +1 -1
- catocli-1.0.13.dist-info/RECORD +344 -0
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/top_level.txt +2 -0
- models/mutation.site.updateSiteGeneralDetails.json +57 -0
- models/mutation.sites.updateSiteGeneralDetails.json +57 -0
- models/query.accountMetrics.json +80 -0
- models/query.accountSnapshot.json +40 -0
- models/query.auditFeed.json +60 -0
- models/query.events.json +240 -0
- models/query.eventsFeed.json +60 -0
- models/query.eventsTimeSeries.json +180 -0
- schema/catolib.py +6 -6
- catocli-1.0.11.dist-info/RECORD +0 -261
- vendor/.DS_Store +0 -0
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/LICENSE +0 -0
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/WHEEL +0 -0
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,278 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import json as _json
|
|
4
|
+
import typing
|
|
5
|
+
from urllib.parse import urlencode
|
|
6
|
+
|
|
7
|
+
from ._base_connection import _TYPE_BODY
|
|
8
|
+
from ._collections import HTTPHeaderDict
|
|
9
|
+
from .filepost import _TYPE_FIELDS, encode_multipart_formdata
|
|
10
|
+
from .response import BaseHTTPResponse
|
|
11
|
+
|
|
12
|
+
__all__ = ["RequestMethods"]
|
|
13
|
+
|
|
14
|
+
_TYPE_ENCODE_URL_FIELDS = typing.Union[
|
|
15
|
+
typing.Sequence[typing.Tuple[str, typing.Union[str, bytes]]],
|
|
16
|
+
typing.Mapping[str, typing.Union[str, bytes]],
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class RequestMethods:
|
|
21
|
+
"""
|
|
22
|
+
Convenience mixin for classes who implement a :meth:`urlopen` method, such
|
|
23
|
+
as :class:`urllib3.HTTPConnectionPool` and
|
|
24
|
+
:class:`urllib3.PoolManager`.
|
|
25
|
+
|
|
26
|
+
Provides behavior for making common types of HTTP request methods and
|
|
27
|
+
decides which type of request field encoding to use.
|
|
28
|
+
|
|
29
|
+
Specifically,
|
|
30
|
+
|
|
31
|
+
:meth:`.request_encode_url` is for sending requests whose fields are
|
|
32
|
+
encoded in the URL (such as GET, HEAD, DELETE).
|
|
33
|
+
|
|
34
|
+
:meth:`.request_encode_body` is for sending requests whose fields are
|
|
35
|
+
encoded in the *body* of the request using multipart or www-form-urlencoded
|
|
36
|
+
(such as for POST, PUT, PATCH).
|
|
37
|
+
|
|
38
|
+
:meth:`.request` is for making any kind of request, it will look up the
|
|
39
|
+
appropriate encoding format and use one of the above two methods to make
|
|
40
|
+
the request.
|
|
41
|
+
|
|
42
|
+
Initializer parameters:
|
|
43
|
+
|
|
44
|
+
:param headers:
|
|
45
|
+
Headers to include with all requests, unless other headers are given
|
|
46
|
+
explicitly.
|
|
47
|
+
"""
|
|
48
|
+
|
|
49
|
+
_encode_url_methods = {"DELETE", "GET", "HEAD", "OPTIONS"}
|
|
50
|
+
|
|
51
|
+
def __init__(self, headers: typing.Mapping[str, str] | None = None) -> None:
|
|
52
|
+
self.headers = headers or {}
|
|
53
|
+
|
|
54
|
+
def urlopen(
|
|
55
|
+
self,
|
|
56
|
+
method: str,
|
|
57
|
+
url: str,
|
|
58
|
+
body: _TYPE_BODY | None = None,
|
|
59
|
+
headers: typing.Mapping[str, str] | None = None,
|
|
60
|
+
encode_multipart: bool = True,
|
|
61
|
+
multipart_boundary: str | None = None,
|
|
62
|
+
**kw: typing.Any,
|
|
63
|
+
) -> BaseHTTPResponse: # Abstract
|
|
64
|
+
raise NotImplementedError(
|
|
65
|
+
"Classes extending RequestMethods must implement "
|
|
66
|
+
"their own ``urlopen`` method."
|
|
67
|
+
)
|
|
68
|
+
|
|
69
|
+
def request(
|
|
70
|
+
self,
|
|
71
|
+
method: str,
|
|
72
|
+
url: str,
|
|
73
|
+
body: _TYPE_BODY | None = None,
|
|
74
|
+
fields: _TYPE_FIELDS | None = None,
|
|
75
|
+
headers: typing.Mapping[str, str] | None = None,
|
|
76
|
+
json: typing.Any | None = None,
|
|
77
|
+
**urlopen_kw: typing.Any,
|
|
78
|
+
) -> BaseHTTPResponse:
|
|
79
|
+
"""
|
|
80
|
+
Make a request using :meth:`urlopen` with the appropriate encoding of
|
|
81
|
+
``fields`` based on the ``method`` used.
|
|
82
|
+
|
|
83
|
+
This is a convenience method that requires the least amount of manual
|
|
84
|
+
effort. It can be used in most situations, while still having the
|
|
85
|
+
option to drop down to more specific methods when necessary, such as
|
|
86
|
+
:meth:`request_encode_url`, :meth:`request_encode_body`,
|
|
87
|
+
or even the lowest level :meth:`urlopen`.
|
|
88
|
+
|
|
89
|
+
:param method:
|
|
90
|
+
HTTP request method (such as GET, POST, PUT, etc.)
|
|
91
|
+
|
|
92
|
+
:param url:
|
|
93
|
+
The URL to perform the request on.
|
|
94
|
+
|
|
95
|
+
:param body:
|
|
96
|
+
Data to send in the request body, either :class:`str`, :class:`bytes`,
|
|
97
|
+
an iterable of :class:`str`/:class:`bytes`, or a file-like object.
|
|
98
|
+
|
|
99
|
+
:param fields:
|
|
100
|
+
Data to encode and send in the URL or request body, depending on ``method``.
|
|
101
|
+
|
|
102
|
+
:param headers:
|
|
103
|
+
Dictionary of custom headers to send, such as User-Agent,
|
|
104
|
+
If-None-Match, etc. If None, pool headers are used. If provided,
|
|
105
|
+
these headers completely replace any pool-specific headers.
|
|
106
|
+
|
|
107
|
+
:param json:
|
|
108
|
+
Data to encode and send as JSON with UTF-encoded in the request body.
|
|
109
|
+
The ``"Content-Type"`` header will be set to ``"application/json"``
|
|
110
|
+
unless specified otherwise.
|
|
111
|
+
"""
|
|
112
|
+
method = method.upper()
|
|
113
|
+
|
|
114
|
+
if json is not None and body is not None:
|
|
115
|
+
raise TypeError(
|
|
116
|
+
"request got values for both 'body' and 'json' parameters which are mutually exclusive"
|
|
117
|
+
)
|
|
118
|
+
|
|
119
|
+
if json is not None:
|
|
120
|
+
if headers is None:
|
|
121
|
+
headers = self.headers
|
|
122
|
+
|
|
123
|
+
if not ("content-type" in map(str.lower, headers.keys())):
|
|
124
|
+
headers = HTTPHeaderDict(headers)
|
|
125
|
+
headers["Content-Type"] = "application/json"
|
|
126
|
+
|
|
127
|
+
body = _json.dumps(json, separators=(",", ":"), ensure_ascii=False).encode(
|
|
128
|
+
"utf-8"
|
|
129
|
+
)
|
|
130
|
+
|
|
131
|
+
if body is not None:
|
|
132
|
+
urlopen_kw["body"] = body
|
|
133
|
+
|
|
134
|
+
if method in self._encode_url_methods:
|
|
135
|
+
return self.request_encode_url(
|
|
136
|
+
method,
|
|
137
|
+
url,
|
|
138
|
+
fields=fields, # type: ignore[arg-type]
|
|
139
|
+
headers=headers,
|
|
140
|
+
**urlopen_kw,
|
|
141
|
+
)
|
|
142
|
+
else:
|
|
143
|
+
return self.request_encode_body(
|
|
144
|
+
method, url, fields=fields, headers=headers, **urlopen_kw
|
|
145
|
+
)
|
|
146
|
+
|
|
147
|
+
def request_encode_url(
|
|
148
|
+
self,
|
|
149
|
+
method: str,
|
|
150
|
+
url: str,
|
|
151
|
+
fields: _TYPE_ENCODE_URL_FIELDS | None = None,
|
|
152
|
+
headers: typing.Mapping[str, str] | None = None,
|
|
153
|
+
**urlopen_kw: str,
|
|
154
|
+
) -> BaseHTTPResponse:
|
|
155
|
+
"""
|
|
156
|
+
Make a request using :meth:`urlopen` with the ``fields`` encoded in
|
|
157
|
+
the url. This is useful for request methods like GET, HEAD, DELETE, etc.
|
|
158
|
+
|
|
159
|
+
:param method:
|
|
160
|
+
HTTP request method (such as GET, POST, PUT, etc.)
|
|
161
|
+
|
|
162
|
+
:param url:
|
|
163
|
+
The URL to perform the request on.
|
|
164
|
+
|
|
165
|
+
:param fields:
|
|
166
|
+
Data to encode and send in the URL.
|
|
167
|
+
|
|
168
|
+
:param headers:
|
|
169
|
+
Dictionary of custom headers to send, such as User-Agent,
|
|
170
|
+
If-None-Match, etc. If None, pool headers are used. If provided,
|
|
171
|
+
these headers completely replace any pool-specific headers.
|
|
172
|
+
"""
|
|
173
|
+
if headers is None:
|
|
174
|
+
headers = self.headers
|
|
175
|
+
|
|
176
|
+
extra_kw: dict[str, typing.Any] = {"headers": headers}
|
|
177
|
+
extra_kw.update(urlopen_kw)
|
|
178
|
+
|
|
179
|
+
if fields:
|
|
180
|
+
url += "?" + urlencode(fields)
|
|
181
|
+
|
|
182
|
+
return self.urlopen(method, url, **extra_kw)
|
|
183
|
+
|
|
184
|
+
def request_encode_body(
|
|
185
|
+
self,
|
|
186
|
+
method: str,
|
|
187
|
+
url: str,
|
|
188
|
+
fields: _TYPE_FIELDS | None = None,
|
|
189
|
+
headers: typing.Mapping[str, str] | None = None,
|
|
190
|
+
encode_multipart: bool = True,
|
|
191
|
+
multipart_boundary: str | None = None,
|
|
192
|
+
**urlopen_kw: str,
|
|
193
|
+
) -> BaseHTTPResponse:
|
|
194
|
+
"""
|
|
195
|
+
Make a request using :meth:`urlopen` with the ``fields`` encoded in
|
|
196
|
+
the body. This is useful for request methods like POST, PUT, PATCH, etc.
|
|
197
|
+
|
|
198
|
+
When ``encode_multipart=True`` (default), then
|
|
199
|
+
:func:`urllib3.encode_multipart_formdata` is used to encode
|
|
200
|
+
the payload with the appropriate content type. Otherwise
|
|
201
|
+
:func:`urllib.parse.urlencode` is used with the
|
|
202
|
+
'application/x-www-form-urlencoded' content type.
|
|
203
|
+
|
|
204
|
+
Multipart encoding must be used when posting files, and it's reasonably
|
|
205
|
+
safe to use it in other times too. However, it may break request
|
|
206
|
+
signing, such as with OAuth.
|
|
207
|
+
|
|
208
|
+
Supports an optional ``fields`` parameter of key/value strings AND
|
|
209
|
+
key/filetuple. A filetuple is a (filename, data, MIME type) tuple where
|
|
210
|
+
the MIME type is optional. For example::
|
|
211
|
+
|
|
212
|
+
fields = {
|
|
213
|
+
'foo': 'bar',
|
|
214
|
+
'fakefile': ('foofile.txt', 'contents of foofile'),
|
|
215
|
+
'realfile': ('barfile.txt', open('realfile').read()),
|
|
216
|
+
'typedfile': ('bazfile.bin', open('bazfile').read(),
|
|
217
|
+
'image/jpeg'),
|
|
218
|
+
'nonamefile': 'contents of nonamefile field',
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
When uploading a file, providing a filename (the first parameter of the
|
|
222
|
+
tuple) is optional but recommended to best mimic behavior of browsers.
|
|
223
|
+
|
|
224
|
+
Note that if ``headers`` are supplied, the 'Content-Type' header will
|
|
225
|
+
be overwritten because it depends on the dynamic random boundary string
|
|
226
|
+
which is used to compose the body of the request. The random boundary
|
|
227
|
+
string can be explicitly set with the ``multipart_boundary`` parameter.
|
|
228
|
+
|
|
229
|
+
:param method:
|
|
230
|
+
HTTP request method (such as GET, POST, PUT, etc.)
|
|
231
|
+
|
|
232
|
+
:param url:
|
|
233
|
+
The URL to perform the request on.
|
|
234
|
+
|
|
235
|
+
:param fields:
|
|
236
|
+
Data to encode and send in the request body.
|
|
237
|
+
|
|
238
|
+
:param headers:
|
|
239
|
+
Dictionary of custom headers to send, such as User-Agent,
|
|
240
|
+
If-None-Match, etc. If None, pool headers are used. If provided,
|
|
241
|
+
these headers completely replace any pool-specific headers.
|
|
242
|
+
|
|
243
|
+
:param encode_multipart:
|
|
244
|
+
If True, encode the ``fields`` using the multipart/form-data MIME
|
|
245
|
+
format.
|
|
246
|
+
|
|
247
|
+
:param multipart_boundary:
|
|
248
|
+
If not specified, then a random boundary will be generated using
|
|
249
|
+
:func:`urllib3.filepost.choose_boundary`.
|
|
250
|
+
"""
|
|
251
|
+
if headers is None:
|
|
252
|
+
headers = self.headers
|
|
253
|
+
|
|
254
|
+
extra_kw: dict[str, typing.Any] = {"headers": HTTPHeaderDict(headers)}
|
|
255
|
+
body: bytes | str
|
|
256
|
+
|
|
257
|
+
if fields:
|
|
258
|
+
if "body" in urlopen_kw:
|
|
259
|
+
raise TypeError(
|
|
260
|
+
"request got values for both 'fields' and 'body', can only specify one."
|
|
261
|
+
)
|
|
262
|
+
|
|
263
|
+
if encode_multipart:
|
|
264
|
+
body, content_type = encode_multipart_formdata(
|
|
265
|
+
fields, boundary=multipart_boundary
|
|
266
|
+
)
|
|
267
|
+
else:
|
|
268
|
+
body, content_type = (
|
|
269
|
+
urlencode(fields), # type: ignore[arg-type]
|
|
270
|
+
"application/x-www-form-urlencoded",
|
|
271
|
+
)
|
|
272
|
+
|
|
273
|
+
extra_kw["body"] = body
|
|
274
|
+
extra_kw["headers"].setdefault("Content-Type", content_type)
|
|
275
|
+
|
|
276
|
+
extra_kw.update(urlopen_kw)
|
|
277
|
+
|
|
278
|
+
return self.urlopen(method, url, **extra_kw)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# file generated by setuptools_scm
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
TYPE_CHECKING = False
|
|
4
|
+
if TYPE_CHECKING:
|
|
5
|
+
from typing import Tuple, Union
|
|
6
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
7
|
+
else:
|
|
8
|
+
VERSION_TUPLE = object
|
|
9
|
+
|
|
10
|
+
version: str
|
|
11
|
+
__version__: str
|
|
12
|
+
__version_tuple__: VERSION_TUPLE
|
|
13
|
+
version_tuple: VERSION_TUPLE
|
|
14
|
+
|
|
15
|
+
__version__ = version = '2.2.3'
|
|
16
|
+
__version_tuple__ = version_tuple = (2, 2, 3)
|