mirror of
https://github.com/immich-app/immich.git
synced 2026-05-21 23:26:31 -04:00
29 lines
1.6 KiB
Bash
Executable File
29 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
OPENAPI_GENERATOR_VERSION=v7.12.0
|
|
|
|
set -euo pipefail
|
|
|
|
# usage: ./bin/generate-dart-sdk.sh
|
|
|
|
rm -rf ../mobile/openapi
|
|
cd ./templates/mobile/serialization/native
|
|
wget -O native_class.mustache https://raw.githubusercontent.com/OpenAPITools/openapi-generator/$OPENAPI_GENERATOR_VERSION/modules/openapi-generator/src/main/resources/dart2/serialization/native/native_class.mustache
|
|
patch --no-backup-if-mismatch -u native_class.mustache <native_class.mustache.patch
|
|
patch --no-backup-if-mismatch -u native_class.mustache <native_class_nullable_items_in_arrays.patch
|
|
|
|
cd ../../
|
|
wget -O api.mustache https://raw.githubusercontent.com/OpenAPITools/openapi-generator/$OPENAPI_GENERATOR_VERSION/modules/openapi-generator/src/main/resources/dart2/api.mustache
|
|
patch --no-backup-if-mismatch -u api.mustache <api.mustache.patch
|
|
|
|
cd ../../
|
|
pnpm dlx --allow-build="" @openapitools/openapi-generator-cli generate -g dart -i ./immich-openapi-specs.json -o ../mobile/openapi -t ./templates/mobile
|
|
|
|
# Post generate patches
|
|
patch --no-backup-if-mismatch -u ../mobile/openapi/lib/api_client.dart <./patch/api_client.dart.patch
|
|
patch --no-backup-if-mismatch -u ../mobile/openapi/lib/api.dart <./patch/api.dart.patch
|
|
patch --no-backup-if-mismatch -u ../mobile/openapi/pubspec.yaml <./patch/pubspec_immich_mobile.yaml.patch
|
|
patch --no-backup-if-mismatch -u ../mobile/openapi/lib/model/asset_edit_action_item_dto.dart <./patch/asset_edit_action_item_dto.dart.patch
|
|
# Don't include analysis_options.yaml for the generated openapi files
|
|
# so that language servers can properly exclude the mobile/openapi directory
|
|
rm ../mobile/openapi/analysis_options.yaml
|