mirror of
https://github.com/inventree/inventree-app.git
synced 2025-04-28 05:26:47 +00:00
972 lines
23 KiB
Dart
972 lines
23 KiB
Dart
import 'dart:async';
|
|
import 'dart:convert';
|
|
import 'dart:io';
|
|
|
|
import 'package:InvenTree/inventree/sentry.dart';
|
|
import 'package:InvenTree/user_profile.dart';
|
|
import 'package:InvenTree/widget/snacks.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
|
|
import 'package:InvenTree/widget/dialogs.dart';
|
|
import 'package:InvenTree/l10.dart';
|
|
import 'package:InvenTree/inventree/sentry.dart';
|
|
|
|
import 'package:http/http.dart' as http;
|
|
import 'package:one_context/one_context.dart';
|
|
|
|
/**
|
|
* Custom FileService for caching network images
|
|
* Requires a custom badCertificateCallback,
|
|
* so we can accept "dodgy" certificates
|
|
*/
|
|
class InvenTreeFileService extends FileService {
|
|
|
|
HttpClient? _client = null;
|
|
|
|
InvenTreeFileService({HttpClient? client, bool strictHttps = false}) {
|
|
_client = client ?? HttpClient();
|
|
|
|
if (_client != null) {
|
|
_client?.badCertificateCallback = (cert, host, port) {
|
|
print("BAD CERTIFICATE CALLBACK FOR IMAGE REQUEST");
|
|
return !strictHttps;
|
|
};
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<FileServiceResponse> get(String url,
|
|
{Map<String, String>? headers}) async {
|
|
final Uri resolved = Uri.base.resolve(url);
|
|
final HttpClientRequest req = await _client!.getUrl(resolved);
|
|
|
|
if (headers != null) {
|
|
headers.forEach((key, value) {
|
|
req.headers.add(key, value);
|
|
});
|
|
}
|
|
|
|
final HttpClientResponse httpResponse = await req.close();
|
|
final http.StreamedResponse _response = http.StreamedResponse(
|
|
httpResponse.timeout(Duration(seconds: 60)), httpResponse.statusCode,
|
|
contentLength: httpResponse.contentLength,
|
|
reasonPhrase: httpResponse.reasonPhrase,
|
|
isRedirect: httpResponse.isRedirect,
|
|
);
|
|
return HttpGetResponse(_response);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* InvenTree API - Access to the InvenTree REST interface.
|
|
*
|
|
* InvenTree implements token-based authentication, which is
|
|
* initialised using a username:password combination.
|
|
*/
|
|
|
|
|
|
class InvenTreeAPI {
|
|
|
|
// Minimum required API version for server
|
|
static const _minApiVersion = 6;
|
|
|
|
// Endpoint for requesting an API token
|
|
static const _URL_GET_TOKEN = "user/token/";
|
|
|
|
static const _URL_GET_ROLES = "user/roles/";
|
|
|
|
// Base URL for InvenTree API e.g. http://192.168.120.10:8000
|
|
String _BASE_URL = "";
|
|
|
|
// Accessors for various url endpoints
|
|
String get baseUrl {
|
|
String url = _BASE_URL;
|
|
|
|
if (!url.endsWith("/")) {
|
|
url += "/";
|
|
}
|
|
|
|
return url;
|
|
}
|
|
|
|
String _makeUrl(String url) {
|
|
if (url.startsWith('/')) {
|
|
url = url.substring(1, url.length);
|
|
}
|
|
|
|
url = url.replaceAll('//', '/');
|
|
|
|
return baseUrl + url;
|
|
}
|
|
|
|
String get apiUrl => _makeUrl("/api/");
|
|
|
|
String get imageUrl => _makeUrl("/image/");
|
|
|
|
String makeApiUrl(String endpoint) => _makeUrl("/api/" + endpoint);
|
|
|
|
String makeUrl(String endpoint) => _makeUrl(endpoint);
|
|
|
|
UserProfile? profile = null;
|
|
|
|
Map<String, dynamic> roles = {};
|
|
|
|
// Authentication token (initially empty, must be requested)
|
|
String _token = "";
|
|
|
|
/*
|
|
* Check server connection and display messages if not connected.
|
|
* Useful as a precursor check before performing operations.
|
|
*/
|
|
bool checkConnection(BuildContext context) {
|
|
// Firstly, is the server connected?
|
|
if (!isConnected()) {
|
|
|
|
showSnackIcon(
|
|
L10().notConnected,
|
|
success: false,
|
|
icon: FontAwesomeIcons.server
|
|
);
|
|
|
|
return false;
|
|
}
|
|
|
|
// Finally
|
|
return true;
|
|
}
|
|
|
|
// Server instance information
|
|
String instance = '';
|
|
|
|
// Server version information
|
|
String _version = '';
|
|
|
|
// API version of the connected server
|
|
int _apiVersion = 1;
|
|
|
|
// Getter for server version information
|
|
String get version => _version;
|
|
|
|
// Connection status flag - set once connection has been validated
|
|
bool _connected = false;
|
|
|
|
bool _connecting = false;
|
|
|
|
bool isConnected() {
|
|
return profile != null && _connected && baseUrl.isNotEmpty && _token.isNotEmpty;
|
|
}
|
|
|
|
bool isConnecting() {
|
|
return !isConnected() && _connecting;
|
|
}
|
|
|
|
// Ensure we only ever create a single instance of the API class
|
|
static final InvenTreeAPI _api = new InvenTreeAPI._internal();
|
|
|
|
factory InvenTreeAPI() {
|
|
return _api;
|
|
}
|
|
|
|
InvenTreeAPI._internal();
|
|
|
|
|
|
/**
|
|
* Connect to the remote InvenTree server:
|
|
*
|
|
* - Check that the InvenTree server exists
|
|
* - Request user token from the server
|
|
* - Request user roles from the server
|
|
*/
|
|
Future<bool> _connect() async {
|
|
|
|
if (profile == null) return false;
|
|
|
|
var ctx = OneContext().context;
|
|
|
|
String address = profile?.server ?? "";
|
|
String username = profile?.username ?? "";
|
|
String password = profile?.password ?? "";
|
|
|
|
address = address.trim();
|
|
username = username.trim();
|
|
password = password.trim();
|
|
|
|
if (address.isEmpty || username.isEmpty || password.isEmpty) {
|
|
showSnackIcon(
|
|
"Incomplete profile details",
|
|
icon: FontAwesomeIcons.exclamationCircle,
|
|
success: false
|
|
);
|
|
return false;
|
|
}
|
|
|
|
if (!address.endsWith('/')) {
|
|
address = address + '/';
|
|
}
|
|
/* TODO: Better URL validation
|
|
* - If not a valid URL, return error
|
|
* - If no port supplied, append a default port
|
|
*/
|
|
|
|
_BASE_URL = address;
|
|
|
|
print("Connecting to ${apiUrl} -> username=${username}");
|
|
|
|
HttpClientResponse? response;
|
|
|
|
dynamic data;
|
|
|
|
response = await getResponse("");
|
|
|
|
// Null response means something went horribly wrong!
|
|
// Most likely, the server cannot be contacted
|
|
if (response == null) {
|
|
// An error message has already been displayed!
|
|
return false;
|
|
}
|
|
|
|
if (response.statusCode != 200) {
|
|
showStatusCodeError(response.statusCode);
|
|
return false;
|
|
}
|
|
|
|
data = await responseToJson(response);
|
|
|
|
// We expect certain response from the server
|
|
if (data == null || !data.containsKey("server") || !data.containsKey("version") || !data.containsKey("instance")) {
|
|
|
|
showServerError(
|
|
L10().missingData,
|
|
L10().serverMissingData,
|
|
);
|
|
|
|
return false;
|
|
}
|
|
|
|
// Record server information
|
|
_version = data["version"];
|
|
instance = data['instance'] ?? '';
|
|
|
|
// Default API version is 1 if not provided
|
|
_apiVersion = (data['apiVersion'] ?? 1) as int;
|
|
|
|
if (_apiVersion < _minApiVersion) {
|
|
|
|
String message = L10().serverApiVersion + ": ${_apiVersion}";
|
|
|
|
message += "\n";
|
|
message += L10().serverApiRequired + ": ${_minApiVersion}";
|
|
|
|
message += "\n\n";
|
|
|
|
message += "Ensure your InvenTree server version is up to date!";
|
|
|
|
showServerError(
|
|
L10().serverOld,
|
|
message
|
|
);
|
|
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Request user token information from the server
|
|
* This is the stage that we check username:password credentials!
|
|
*/
|
|
// Clear the existing token value
|
|
_token = "";
|
|
|
|
print("Requesting token from server");
|
|
|
|
response = await getResponse(_URL_GET_TOKEN);
|
|
|
|
// A "null" response means that the request was unsuccessful
|
|
if (response == null) {
|
|
return false;
|
|
}
|
|
|
|
if (response.statusCode != 200) {
|
|
|
|
switch (response.statusCode) {
|
|
case 401:
|
|
case 403:
|
|
showServerError(
|
|
L10().serverAuthenticationError,
|
|
L10().invalidUsernamePassword,
|
|
);
|
|
break;
|
|
default:
|
|
showStatusCodeError(response.statusCode);
|
|
break;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
data = await responseToJson(response);
|
|
|
|
if (data == null || !data.containsKey("token")) {
|
|
showServerError(
|
|
L10().tokenMissing,
|
|
L10().tokenMissingFromResponse,
|
|
);
|
|
|
|
return false;
|
|
}
|
|
|
|
// Return the received token
|
|
_token = data["token"];
|
|
print("Received token - $_token");
|
|
|
|
// Request user role information
|
|
await getUserRoles();
|
|
|
|
// Ok, probably pretty good...
|
|
return true;
|
|
|
|
}
|
|
|
|
void disconnectFromServer() {
|
|
print("InvenTreeAPI().disconnectFromServer()");
|
|
|
|
_connected = false;
|
|
_connecting = false;
|
|
_token = '';
|
|
profile = null;
|
|
}
|
|
|
|
Future<bool> connectToServer() async {
|
|
|
|
// Ensure server is first disconnected
|
|
disconnectFromServer();
|
|
|
|
// Load selected profile
|
|
profile = await UserProfileDBManager().getSelectedProfile();
|
|
|
|
print("API Profile: ${profile.toString()}");
|
|
|
|
if (profile == null) {
|
|
showSnackIcon(
|
|
L10().profileSelect,
|
|
success: false,
|
|
icon: FontAwesomeIcons.exclamationCircle
|
|
);
|
|
return false;
|
|
}
|
|
|
|
_connecting = true;
|
|
|
|
_connected = await _connect();
|
|
|
|
print("_connect() returned result: ${_connected}");
|
|
|
|
_connecting = false;
|
|
|
|
if (_connected) {
|
|
showSnackIcon(
|
|
L10().serverConnected,
|
|
icon: FontAwesomeIcons.server,
|
|
success: true,
|
|
);
|
|
}
|
|
|
|
return _connected;
|
|
}
|
|
|
|
|
|
Future<void> getUserRoles() async {
|
|
|
|
roles.clear();
|
|
|
|
print("Requesting user role data");
|
|
|
|
// Next we request the permissions assigned to the current user
|
|
// Note: 2021-02-27 this "roles" feature for the API was just introduced.
|
|
// Any 'older' version of the server allows any API method for any logged in user!
|
|
// We will return immediately, but request the user roles in the background
|
|
|
|
var response = await get(_URL_GET_ROLES);
|
|
|
|
// Null response from server
|
|
if (response == null) {
|
|
print("null response requesting user roles");
|
|
return;
|
|
}
|
|
|
|
if (response.containsKey('roles')) {
|
|
// Save a local copy of the user roles
|
|
roles = response['roles'];
|
|
}
|
|
}
|
|
|
|
bool checkPermission(String role, String permission) {
|
|
/*
|
|
* Check if the user has the given role.permission assigned
|
|
*
|
|
* e.g. 'part', 'change'
|
|
*/
|
|
|
|
// If we do not have enough information, assume permission is allowed
|
|
if (roles == null || roles.isEmpty) {
|
|
return true;
|
|
}
|
|
|
|
if (!roles.containsKey(role)) {
|
|
return true;
|
|
}
|
|
|
|
List<String> perms = List.from(roles[role]);
|
|
|
|
return perms.contains(permission);
|
|
}
|
|
|
|
|
|
// Perform a PATCH request
|
|
Future<dynamic> patch(String url, {Map<String, String> body = const {}, int expectedStatusCode=200}) async {
|
|
var _url = makeApiUrl(url);
|
|
var _body = Map<String, String>();
|
|
|
|
// Copy across provided data
|
|
body.forEach((K, V) => _body[K] = V);
|
|
|
|
print("PATCH: " + _url);
|
|
|
|
final uri = Uri.parse(_url);
|
|
|
|
// Check for invalid host
|
|
if (uri.host.isEmpty) {
|
|
showServerError(L10().invalidHost, L10().invalidHostDetails);
|
|
return null;
|
|
}
|
|
|
|
var client = createClient(true);
|
|
|
|
// Open a connection to the server
|
|
HttpClientRequest request = await client.patchUrl(uri)
|
|
.timeout(Duration(seconds: 10))
|
|
.catchError((error, stackTrace) {
|
|
print("PATCH request return error");
|
|
print("URL: ${uri}");
|
|
print("Error: ${error.toString()}");
|
|
|
|
var ctx = OneContext().context;
|
|
|
|
if (error is SocketException) {
|
|
showServerError(
|
|
L10().connectionRefused,
|
|
error.toString(),
|
|
);
|
|
} else if (error is TimeoutException) {
|
|
showTimeoutError();
|
|
} else {
|
|
showServerError(
|
|
L10().serverError,
|
|
error.toString()
|
|
);
|
|
|
|
sentryReportError(error, stackTrace);
|
|
}
|
|
|
|
return null;
|
|
});
|
|
|
|
// Request could not be made
|
|
if (request == null) {
|
|
return null;
|
|
}
|
|
|
|
var data = json.encode(body);
|
|
|
|
// Set headers
|
|
request.headers.set('Accept', 'application/json');
|
|
request.headers.set('Content-type', 'application/json');
|
|
request.headers.set('Content-Length', data.length.toString());
|
|
request.headers.set(HttpHeaders.authorizationHeader, _authorizationHeader());
|
|
|
|
request.add(utf8.encode(data));
|
|
|
|
HttpClientResponse response = await request.close()
|
|
.timeout(Duration(seconds: 30))
|
|
.catchError((error, stackTrace) {
|
|
print("PATCH request returned error");
|
|
print("URL: ${_url}");
|
|
print("Error: ${error.toString()}");
|
|
|
|
var ctx = OneContext().context;
|
|
|
|
if (error is SocketException) {
|
|
showServerError(
|
|
L10().connectionRefused,
|
|
error.toString()
|
|
);
|
|
} else if (error is TimeoutException) {
|
|
showTimeoutError();
|
|
} else {
|
|
showServerError(
|
|
L10().serverError,
|
|
error.toString()
|
|
);
|
|
|
|
sentryReportError(error, stackTrace);
|
|
}
|
|
|
|
return null;
|
|
});
|
|
|
|
var responseData = await responseToJson(response);
|
|
|
|
if (response.statusCode != expectedStatusCode) {
|
|
showStatusCodeError(response.statusCode);
|
|
|
|
print("PATCH to ${_url} returned status code ${response.statusCode}");
|
|
print("Data:");
|
|
print(responseData);
|
|
|
|
// Server error
|
|
if (response.statusCode >= 500) {
|
|
sentryReportMessage(
|
|
"Server error on PATCH request",
|
|
context: {
|
|
"url": _url,
|
|
"statusCode": "${response.statusCode}",
|
|
"data": responseData.toString(),
|
|
}
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
return responseData;
|
|
}
|
|
|
|
/*
|
|
* Upload a file to the given URL
|
|
*/
|
|
Future<http.StreamedResponse> uploadFile(String url, File f,
|
|
{String name = "attachment", String method="POST", Map<String, String>? fields}) async {
|
|
|
|
var _url = makeApiUrl(url);
|
|
|
|
var request = http.MultipartRequest(method, Uri.parse(_url));
|
|
|
|
request.headers.addAll(defaultHeaders());
|
|
|
|
if (fields != null) {
|
|
fields.forEach((String key, String value) {
|
|
request.fields[key] = value;
|
|
});
|
|
}
|
|
|
|
var _file = await http.MultipartFile.fromPath(name, f.path);
|
|
|
|
request.files.add(_file);
|
|
|
|
var response = await request.send();
|
|
|
|
return response;
|
|
}
|
|
|
|
/**
|
|
* Perform a HTTP POST request
|
|
* Returns a json object (or null if unsuccessful)
|
|
*/
|
|
Future<dynamic> post(String url, {Map<String, dynamic> body = const {}, int expectedStatusCode=201}) async {
|
|
|
|
var _url = makeApiUrl(url);
|
|
|
|
print("POST: ${_url} -> ${body.toString()}");
|
|
|
|
var client = createClient(true);
|
|
|
|
final uri = Uri.parse(_url);
|
|
|
|
if (uri.host.isEmpty) {
|
|
showServerError(L10().invalidHost, L10().invalidHostDetails);
|
|
return null;
|
|
}
|
|
|
|
// Open a connection to the server
|
|
HttpClientRequest request = await client.postUrl(uri)
|
|
.timeout(Duration(seconds: 10))
|
|
.catchError((error, stackTrace) {
|
|
print("POST request returned error");
|
|
print("URL: ${uri}");
|
|
print("Error: ${error.toString()}");
|
|
|
|
var ctx = OneContext().context;
|
|
|
|
if (error is SocketException) {
|
|
showServerError(
|
|
L10().connectionRefused,
|
|
error.toString()
|
|
);
|
|
} else if (error is TimeoutException) {
|
|
showTimeoutError();
|
|
} else {
|
|
showServerError(
|
|
L10().serverError,
|
|
error.toString()
|
|
);
|
|
|
|
sentryReportError(error, stackTrace);
|
|
}
|
|
|
|
return null;
|
|
});
|
|
|
|
var data = json.encode(body);
|
|
|
|
// Set headers
|
|
// Ref: https://stackoverflow.com/questions/59713003/body-not-sending-using-map-in-flutter
|
|
request.headers.set('Accept', 'application/json');
|
|
request.headers.set('Content-type', 'application/json');
|
|
request.headers.set('Content-Length', data.length.toString());
|
|
request.headers.set(HttpHeaders.authorizationHeader, _authorizationHeader());
|
|
|
|
// Add JSON data to the request
|
|
request.add(utf8.encode(data));
|
|
|
|
HttpClientResponse response = await request.close()
|
|
.timeout(Duration(seconds: 30))
|
|
.catchError((error, stackTrace) {
|
|
print("POST request returned error");
|
|
print("URL: ${_url}");
|
|
print("Error: ${error.toString()}");
|
|
|
|
var ctx = OneContext().context;
|
|
|
|
if (error is SocketException) {
|
|
showServerError(
|
|
L10().connectionRefused,
|
|
error.toString()
|
|
);
|
|
} else if (error is TimeoutException) {
|
|
showTimeoutError();
|
|
} else {
|
|
showServerError(
|
|
L10().serverError,
|
|
error.toString()
|
|
);
|
|
|
|
sentryReportError(error, stackTrace);
|
|
}
|
|
|
|
return null;
|
|
});
|
|
|
|
if (response == null) {
|
|
print("null response from POST ${_url}");
|
|
return null;
|
|
}
|
|
|
|
var responseData = await responseToJson(response);
|
|
|
|
if (response.statusCode != expectedStatusCode) {
|
|
showStatusCodeError(response.statusCode);
|
|
|
|
print("POST to ${_url} returned status code ${response.statusCode}");
|
|
print("Data:");
|
|
print(responseData);
|
|
|
|
// Server error
|
|
if (response.statusCode >= 500) {
|
|
sentryReportMessage(
|
|
"Server error on POST request",
|
|
context: {
|
|
"url": _url,
|
|
"statusCode": "${response.statusCode}",
|
|
"data": responseData.toString(),
|
|
}
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
return responseData;
|
|
}
|
|
|
|
HttpClient createClient(bool allowBadCert) {
|
|
|
|
var client = new HttpClient();
|
|
|
|
client.badCertificateCallback = ((X509Certificate cert, String host, int port) {
|
|
// TODO - Introspection of actual certificate?
|
|
|
|
allowBadCert = true;
|
|
|
|
if (allowBadCert) {
|
|
return true;
|
|
} else {
|
|
showServerError(
|
|
L10().serverCertificateError,
|
|
L10().serverCertificateInvalid,
|
|
);
|
|
return false;
|
|
}
|
|
|
|
return allowBadCert;
|
|
});
|
|
|
|
// Set the connection timeout
|
|
client.connectionTimeout = Duration(seconds: 30);
|
|
|
|
return client;
|
|
}
|
|
|
|
/**
|
|
* Perform a HTTP GET request,
|
|
* and return the Response object
|
|
* (or null if the request fails)
|
|
*/
|
|
Future<HttpClientResponse?> getResponse(String url, {Map<String, String> params = const {}}) async {
|
|
var _url = makeApiUrl(url);
|
|
|
|
print("GET: ${_url}");
|
|
|
|
// If query parameters are supplied, form a query string
|
|
if (params.isNotEmpty) {
|
|
String query = '?';
|
|
|
|
params.forEach((K, V) => query += K + '=' + V + '&');
|
|
|
|
_url += query;
|
|
}
|
|
|
|
// Remove extraneous character if present
|
|
if (_url.endsWith('&')) {
|
|
_url = _url.substring(0, _url.length - 1);
|
|
}
|
|
|
|
var client = createClient(true);
|
|
|
|
Uri? uri = Uri.tryParse(_url);
|
|
|
|
if (uri == null) {
|
|
showServerError(L10().invalidHost, L10().invalidHostDetails);
|
|
return null;
|
|
}
|
|
|
|
// Check for invalid host
|
|
if (uri.host.isEmpty) {
|
|
showServerError(L10().invalidHost, L10().invalidHostDetails);
|
|
return null;
|
|
}
|
|
|
|
HttpClientRequest? request;
|
|
|
|
try {
|
|
// Open a connection
|
|
request = await client.getUrl(uri)
|
|
.timeout(Duration(seconds: 10))
|
|
.catchError((error, stackTrace) {
|
|
print("GET request returned error");
|
|
print("URL: ${uri}");
|
|
print("Error: ${error.toString()}");
|
|
|
|
var ctx = OneContext().context;
|
|
|
|
if (error is SocketException) {
|
|
showServerError(
|
|
L10().connectionRefused,
|
|
error.toString()
|
|
);
|
|
} else if (error is TimeoutException) {
|
|
showTimeoutError();
|
|
} else {
|
|
showServerError(
|
|
L10().serverError,
|
|
error.toString()
|
|
);
|
|
|
|
sentryReportError(error, stackTrace);
|
|
}
|
|
|
|
return null;
|
|
});
|
|
} catch (error, stackTrace) {
|
|
if (error is FormatException) {
|
|
showServerError(
|
|
L10().invalidHost,
|
|
L10().invalidHostDetails)
|
|
;
|
|
} else if (error is SocketException) {
|
|
showServerError(
|
|
L10().connectionRefused,
|
|
error.toString()
|
|
);
|
|
} else {
|
|
showServerError(
|
|
L10().serverError,
|
|
error.toString()
|
|
);
|
|
|
|
// Report to sentry
|
|
sentryReportError(error, stackTrace);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
if (request == null) {
|
|
return null;
|
|
}
|
|
|
|
// Set connection headers
|
|
request.headers.set(HttpHeaders.contentTypeHeader, 'application/json');
|
|
request.headers.set(HttpHeaders.authorizationHeader, _authorizationHeader());
|
|
|
|
HttpClientResponse response = await request.close()
|
|
.timeout(Duration(seconds: 10))
|
|
.catchError((error, stackTrace) {
|
|
print("GET request returned error");
|
|
print("URL: ${_url}");
|
|
print("Error: ${error.toString()}");
|
|
|
|
var ctx = OneContext().context;
|
|
|
|
if (error is SocketException) {
|
|
showServerError(
|
|
L10().connectionRefused,
|
|
error.toString()
|
|
);
|
|
} else if (error is TimeoutException) {
|
|
showTimeoutError();
|
|
} else {
|
|
showServerError(
|
|
L10().serverError,
|
|
error.toString()
|
|
);
|
|
|
|
sentryReportError(error, stackTrace);
|
|
}
|
|
|
|
return null;
|
|
});
|
|
|
|
return response;
|
|
}
|
|
|
|
dynamic responseToJson(HttpClientResponse response) async {
|
|
|
|
String body = await response.transform(utf8.decoder).join();
|
|
|
|
try {
|
|
var data = json.decode(body);
|
|
|
|
return data;
|
|
} on FormatException {
|
|
|
|
print("JSON format exception!");
|
|
print("${body}");
|
|
|
|
showServerError(
|
|
L10().formatException,
|
|
L10().formatExceptionJson + ":\n${body}"
|
|
);
|
|
return null;
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Perform a HTTP GET request
|
|
* Returns a json object (or null if did not complete)
|
|
*/
|
|
Future<dynamic> get(String url, {Map<String, String> params = const {}, int expectedStatusCode=200}) async {
|
|
|
|
var response = await getResponse(url, params: params);
|
|
|
|
// A null response means something has gone wrong...
|
|
if (response == null) {
|
|
print("null response from GET ${url}");
|
|
return null;
|
|
}
|
|
|
|
var responseData = await responseToJson(response);
|
|
|
|
// Check the status code of the response
|
|
if (response.statusCode != expectedStatusCode) {
|
|
showStatusCodeError(response.statusCode);
|
|
|
|
// Server error
|
|
if (response.statusCode >= 500) {
|
|
sentryReportMessage(
|
|
"Server error on GET request",
|
|
context: {
|
|
"url": url,
|
|
"statusCode": "${response.statusCode}",
|
|
"data": responseData.toString(),
|
|
}
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
return responseData;
|
|
}
|
|
|
|
Map<String, String> defaultHeaders() {
|
|
var headers = Map<String, String>();
|
|
|
|
headers[HttpHeaders.authorizationHeader] = _authorizationHeader();
|
|
|
|
return headers;
|
|
}
|
|
|
|
Map<String, String> jsonHeaders() {
|
|
var headers = defaultHeaders();
|
|
headers['Content-Type'] = 'application/json';
|
|
return headers;
|
|
}
|
|
|
|
String _authorizationHeader() {
|
|
if (_token.isNotEmpty) {
|
|
return "Token $_token";
|
|
} else if (profile != null) {
|
|
return "Basic " + base64Encode(utf8.encode('${profile?.username}:${profile?.password}'));
|
|
} else {
|
|
return "";
|
|
}
|
|
}
|
|
|
|
static String get staticImage => "/static/img/blank_image.png";
|
|
|
|
static String get staticThumb => "/static/img/blank_image.thumbnail.png";
|
|
|
|
/**
|
|
* Load image from the InvenTree server,
|
|
* or from local cache (if it has been cached!)
|
|
*/
|
|
CachedNetworkImage getImage(String imageUrl, {double? height, double? width}) {
|
|
if (imageUrl.isEmpty) {
|
|
imageUrl = staticImage;
|
|
}
|
|
|
|
String url = makeUrl(imageUrl);
|
|
|
|
const key = "inventree_network_image";
|
|
|
|
CacheManager manager = CacheManager(
|
|
Config(
|
|
key,
|
|
fileService: InvenTreeFileService(),
|
|
)
|
|
);
|
|
|
|
return new CachedNetworkImage(
|
|
imageUrl: url,
|
|
placeholder: (context, url) => CircularProgressIndicator(),
|
|
errorWidget: (context, url, error) => Icon(FontAwesomeIcons.exclamation),
|
|
httpHeaders: defaultHeaders(),
|
|
height: height,
|
|
width: width,
|
|
cacheManager: manager,
|
|
);
|
|
}
|
|
} |