@@ -78,6 +78,54 @@ public function dataGet($url, $headers = null, $options = array()) {
78
78
return (isset ($ json ['data ' ])) ? $ json ['data ' ] : $ json ['message ' ];
79
79
}
80
80
81
+ /**
82
+ * @param $url
83
+ * @param array $body
84
+ * @param array $headers
85
+ * @param array $options
86
+ * @return mixed
87
+ */
88
+ public function dataPut ($ url , $ body = null , $ headers = null , $ options = array ()) {
89
+ try {
90
+ if (is_array ($ body )) {
91
+ $ options ['form_params ' ] = $ body ;
92
+ }
93
+ if (is_array ($ headers )) {
94
+ $ options ['headers ' ] = $ headers ;
95
+ }
96
+ if (is_array ($ options ) && isset ($ options ['query ' ])) {
97
+ $ options ['query ' ] = array_merge ($ options ['query ' ], $ this ->defaultQuery );
98
+ }
99
+
100
+ $ response = $ this ->request ('PUT ' , $ url , $ options );
101
+ $ this ->checkErrors ($ response );
102
+ $ json = json_decode ($ response ->getBody (), true );
103
+ } catch (RequestException $ e ) {
104
+ if ($ e ->hasResponse ()) {
105
+ $ response = json_decode ($ e ->getResponse ()->getBody (), true );
106
+ $ msg = isset ($ response ['message ' ]) ? $ response ['message ' ] : 'Unknown error ' ;
107
+ if ($ e ->getResponse ()->getStatusCode () == 503 ) {
108
+ throw new NitrapiMaintenanceException ($ msg );
109
+ }
110
+ if ($ e ->getResponse ()->getStatusCode () == 428 ) {
111
+ throw new NitrapiConcurrencyException ($ msg );
112
+ }
113
+ throw new NitrapiHttpErrorException ($ msg );
114
+ }
115
+ throw new NitrapiHttpErrorException ($ e ->getMessage ());
116
+ }
117
+
118
+ if (isset ($ json ['data ' ]) && is_array ($ json ['data ' ])) {
119
+ return $ json ['data ' ];
120
+ }
121
+
122
+ if (!empty ($ json ['message ' ])) {
123
+ return $ json ['message ' ];
124
+ }
125
+
126
+ return true ;
127
+ }
128
+
81
129
/**
82
130
* @param $url
83
131
* @param array $body
0 commit comments