Browse Source

refactor(nextcloud): Move version support to helpers

Signed-off-by: jld3103 <jld3103yt@gmail.com>
pull/869/head
jld3103 1 year ago
parent
commit
563bd36f81
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 2
      packages/nextcloud/lib/nextcloud.dart
  2. 20
      packages/nextcloud/lib/src/helpers/core.dart
  3. 18
      packages/nextcloud/lib/src/helpers/news.dart
  4. 21
      packages/nextcloud/lib/src/helpers/notes.dart
  5. 59
      packages/nextcloud/lib/src/version_supported.dart

2
packages/nextcloud/lib/nextcloud.dart

@ -25,8 +25,8 @@ export 'src/app_type.dart';
export 'src/client.dart'; export 'src/client.dart';
export 'src/helpers/core.dart'; export 'src/helpers/core.dart';
export 'src/helpers/news.dart'; export 'src/helpers/news.dart';
export 'src/helpers/notes.dart';
export 'src/helpers/notifications.dart'; export 'src/helpers/notifications.dart';
export 'src/version_supported.dart';
export 'src/webdav/client.dart'; export 'src/webdav/client.dart';
export 'src/webdav/file.dart'; export 'src/webdav/file.dart';
export 'src/webdav/props.dart'; export 'src/webdav/props.dart';

20
packages/nextcloud/lib/src/helpers/core.dart

@ -1,5 +1,25 @@
// ignore_for_file: public_member_api_docs // ignore_for_file: public_member_api_docs
import 'package:nextcloud/src/api/core.openapi.dart';
/// Version of core/Server supported
const coreSupportedVersion = 27;
extension CoreVersionSupported on CoreClient {
/// Check if the core/Server version is supported by this client
///
/// Also returns the supported version number
(bool, int) isSupported(final CoreOcsGetCapabilitiesResponseApplicationJson_Ocs_Data capabilities) => (
capabilities.version.major == coreSupportedVersion,
coreSupportedVersion,
);
}
extension CoreStatusVersionSupported on CoreStatus {
/// Check if the core/Server version is supported
bool get isSupported => version.startsWith('$coreSupportedVersion.');
}
enum ShareType { enum ShareType {
user, user,
group, group,

18
packages/nextcloud/lib/src/helpers/news.dart

@ -1,5 +1,23 @@
// ignore_for_file: public_member_api_docs // ignore_for_file: public_member_api_docs
import 'package:nextcloud/src/api/news.openapi.dart';
/// API version of the news app supported
const newsSupportedVersion = 'v1-3';
extension NewsVersionSupported on NewsClient {
/// Check if the news app version is supported by this client
///
/// Also returns the supported API version number
Future<(bool, String)> isSupported() async {
final response = await getSupportedApiVersions();
return (
response.body.apiLevels!.contains(newsSupportedVersion),
newsSupportedVersion,
);
}
}
/// See https://github.com/nextcloud/news/blob/4a107b3d53c4fe651ac704251b99e04a53cd587f/lib/Db/ListType.php /// See https://github.com/nextcloud/news/blob/4a107b3d53c4fe651ac704251b99e04a53cd587f/lib/Db/ListType.php
enum NewsListType { enum NewsListType {
feed, feed,

21
packages/nextcloud/lib/src/helpers/notes.dart

@ -0,0 +1,21 @@
import 'package:collection/collection.dart';
import 'package:nextcloud/src/api/core.openapi.dart';
import 'package:nextcloud/src/api/notes.openapi.dart';
import 'package:version/version.dart';
/// API version of the notes app supported
const notesSupportedVersion = 1;
// ignore: public_member_api_docs
extension NotesVersionSupported on NotesClient {
/// Check if the notes app version is supported by this client
///
/// Also returns the supported API version number
(bool, int) isSupported(final CoreOcsGetCapabilitiesResponseApplicationJson_Ocs_Data capabilities) => (
capabilities.capabilities.notesCapabilities?.notes.apiVersion
?.map(Version.parse)
.firstWhereOrNull((final version) => version.major == notesSupportedVersion) !=
null,
notesSupportedVersion,
);
}

59
packages/nextcloud/lib/src/version_supported.dart

@ -1,59 +0,0 @@
import 'package:collection/collection.dart';
import 'package:nextcloud/src/api/core.openapi.dart';
import 'package:nextcloud/src/api/news.openapi.dart';
import 'package:nextcloud/src/api/notes.openapi.dart';
import 'package:version/version.dart';
/// Version of core/Server supported
const coreSupportedVersion = 27;
/// API version of the news app supported
const newsSupportedVersion = 'v1-3';
/// API version of the notes app supported
const notesSupportedVersion = 1;
// ignore: public_member_api_docs
extension CoreVersionSupported on CoreClient {
/// Check if the core/Server version is supported by this client
///
/// Also returns the supported version number
(bool, int) isSupported(final CoreOcsGetCapabilitiesResponseApplicationJson_Ocs_Data capabilities) => (
capabilities.version.major == coreSupportedVersion,
coreSupportedVersion,
);
}
// ignore: public_member_api_docs
extension CoreStatusVersionSupported on CoreStatus {
/// Check if the core/Server version is supported
bool get isSupported => version.startsWith('$coreSupportedVersion.');
}
// ignore: public_member_api_docs
extension NewsVersionSupported on NewsClient {
/// Check if the news app version is supported by this client
///
/// Also returns the supported API version number
Future<(bool, String)> isSupported() async {
final response = await getSupportedApiVersions();
return (
response.body.apiLevels!.contains(newsSupportedVersion),
newsSupportedVersion,
);
}
}
// ignore: public_member_api_docs
extension NotesVersionSupported on NotesClient {
/// Check if the notes app version is supported by this client
///
/// Also returns the supported API version number
(bool, int) isSupported(final CoreOcsGetCapabilitiesResponseApplicationJson_Ocs_Data capabilities) => (
capabilities.capabilities.notesCapabilities?.notes.apiVersion
?.map(Version.parse)
.firstWhereOrNull((final version) => version.major == notesSupportedVersion) !=
null,
notesSupportedVersion,
);
}
Loading…
Cancel
Save