diff --git a/openhaystack-mobile/.gitignore b/openhaystack-mobile/.gitignore new file mode 100644 index 0000000..0fa6b67 --- /dev/null +++ b/openhaystack-mobile/.gitignore @@ -0,0 +1,46 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins +.flutter-plugins-dependencies +.packages +.pub-cache/ +.pub/ +/build/ + +# Web related +lib/generated_plugin_registrant.dart + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release diff --git a/openhaystack-mobile/.metadata b/openhaystack-mobile/.metadata new file mode 100644 index 0000000..a5584fc --- /dev/null +++ b/openhaystack-mobile/.metadata @@ -0,0 +1,10 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: 18116933e77adc82f80866c928266a5b4f1ed645 + channel: stable + +project_type: app diff --git a/openhaystack-mobile/README.md b/openhaystack-mobile/README.md new file mode 100644 index 0000000..7858a58 --- /dev/null +++ b/openhaystack-mobile/README.md @@ -0,0 +1,54 @@ +# OpenHaystack Mobile +Seemoo Lab WS21/22 project: Porting OpenHaystack to Mobile + +# About OpenHaystack +OpenHaystack is a project that allows location tracking of Bluetooth Low Energy (BLE) devices over Apples Find My Network. + +See the [OpenHaystack GitHub page](https://github.com/seemoo-lab/openhaystack/) for more deatils on how it works. + +# Development +This project is written in [Dart](https://dart.dev/), using the cross platform development framework [Flutter](https://flutter.dev/). This allows the creation of apps for all major platforms using a single code base. + +## Requisites +To develop and build the project the following tools are needed and should be installed. + +- [Flutter SDK](https://docs.flutter.dev/get-started/install) +- [Xcode](https://developer.apple.com/xcode/) (for iOS) +- [Android SDK / Studio](https://developer.android.com/studio/) (for Android) +- (optional) IDE Plugin (e.g. for [VS Code](https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter)) + +To check the installation run `flutter doctor`. Before continuing review all displayed errors. + + +## Getting Started +First the necessary dependencies need to be installed. The IDE plugin may take care of this automatically. +```bash +$ flutter pub get +``` + +Then set the location proxy server URL in [reports_fetcher.dart](lib/findMy/reports_fetcher.dart) (replace `https://add-your-proxy-server-here/getLocationReports` with your custom URL). + +To run the debug version of the app start a supported emulator and run +```bash +$ flutter run +``` + +When the app is running a new key pair can be created / imported in the app. + +## Project Structure +The project follows the default structure for flutter applications. The `android`, `ios` and `web` folders contain native projects for the specified platform. Native code can be added here for example to access special APIs. + +The business logic and UI can be found in the `lib` folder. This folder is furthermore separated into modules containing code regarding a common aspect. +The business logic for accessing and decrypting the location reports is separated in the `findMy` folder for easier reuse. + +## Building +This project currently supports iOS and Android targets. +If you are building the project for the first time, you need to run +```bash +$ flutter pub run flutter_launcher_icons:main +``` +to create the icons and then, to create a distributable application package run +```bash +$ flutter build [ios|apk|web] +``` +The resulting build artifacts can be found in the `build` folder. To deploy the artifacts to a device consult the platform specific documentation. diff --git a/openhaystack-mobile/analysis_options.yaml b/openhaystack-mobile/analysis_options.yaml new file mode 100644 index 0000000..61b6c4d --- /dev/null +++ b/openhaystack-mobile/analysis_options.yaml @@ -0,0 +1,29 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at + # https://dart-lang.github.io/linter/lints/index.html. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/openhaystack-mobile/android/.gitignore b/openhaystack-mobile/android/.gitignore new file mode 100644 index 0000000..6f56801 --- /dev/null +++ b/openhaystack-mobile/android/.gitignore @@ -0,0 +1,13 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java + +# Remember to never publicly share your keystore. +# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app +key.properties +**/*.keystore +**/*.jks diff --git a/openhaystack-mobile/android/app/build.gradle b/openhaystack-mobile/android/app/build.gradle new file mode 100644 index 0000000..6c41a68 --- /dev/null +++ b/openhaystack-mobile/android/app/build.gradle @@ -0,0 +1,68 @@ +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterRoot = localProperties.getProperty('flutter.sdk') +if (flutterRoot == null) { + throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' +apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" + +android { + compileSdkVersion 31 + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = '1.8' + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "de.seemoo.android.openhaystack" + minSdkVersion 21 + targetSdkVersion 30 + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig signingConfigs.debug + } + } +} + +flutter { + source '../..' +} + +dependencies { + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" +} diff --git a/openhaystack-mobile/android/app/src/debug/AndroidManifest.xml b/openhaystack-mobile/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..1d4c0a0 --- /dev/null +++ b/openhaystack-mobile/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + diff --git a/openhaystack-mobile/android/app/src/main/AndroidManifest.xml b/openhaystack-mobile/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..b66acbf --- /dev/null +++ b/openhaystack-mobile/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/openhaystack-mobile/android/app/src/main/kotlin/com/example/seemoo_lab_21_22/MainActivity.kt b/openhaystack-mobile/android/app/src/main/kotlin/com/example/seemoo_lab_21_22/MainActivity.kt new file mode 100644 index 0000000..3a4b740 --- /dev/null +++ b/openhaystack-mobile/android/app/src/main/kotlin/com/example/seemoo_lab_21_22/MainActivity.kt @@ -0,0 +1,6 @@ +package de.seemoo.android.openhaystack + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/openhaystack-mobile/android/app/src/main/res/drawable-v21/launch_background.xml b/openhaystack-mobile/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/openhaystack-mobile/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/openhaystack-mobile/android/app/src/main/res/drawable/launch_background.xml b/openhaystack-mobile/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/openhaystack-mobile/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/openhaystack-mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/openhaystack-mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..ee767b5 Binary files /dev/null and b/openhaystack-mobile/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/openhaystack-mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/openhaystack-mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..2fdfbeb Binary files /dev/null and b/openhaystack-mobile/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/openhaystack-mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/openhaystack-mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..b405b33 Binary files /dev/null and b/openhaystack-mobile/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/openhaystack-mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/openhaystack-mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..684ea8d Binary files /dev/null and b/openhaystack-mobile/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/openhaystack-mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/openhaystack-mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..b149887 Binary files /dev/null and b/openhaystack-mobile/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/openhaystack-mobile/android/app/src/main/res/values-night/styles.xml b/openhaystack-mobile/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000..449a9f9 --- /dev/null +++ b/openhaystack-mobile/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/openhaystack-mobile/android/app/src/main/res/values/styles.xml b/openhaystack-mobile/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..d74aa35 --- /dev/null +++ b/openhaystack-mobile/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/openhaystack-mobile/android/app/src/profile/AndroidManifest.xml b/openhaystack-mobile/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..1d4c0a0 --- /dev/null +++ b/openhaystack-mobile/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + diff --git a/openhaystack-mobile/android/build.gradle b/openhaystack-mobile/android/build.gradle new file mode 100644 index 0000000..27ef0fc --- /dev/null +++ b/openhaystack-mobile/android/build.gradle @@ -0,0 +1,29 @@ +buildscript { + ext.kotlin_version = '1.6.0' + repositories { + google() + mavenCentral() + } + + dependencies { + classpath 'com.android.tools.build:gradle:4.1.0' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +allprojects { + repositories { + google() + mavenCentral() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" + project.evaluationDependsOn(':app') +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/openhaystack-mobile/android/gradle.properties b/openhaystack-mobile/android/gradle.properties new file mode 100644 index 0000000..94adc3a --- /dev/null +++ b/openhaystack-mobile/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx1536M +android.useAndroidX=true +android.enableJetifier=true diff --git a/openhaystack-mobile/android/gradle/wrapper/gradle-wrapper.properties b/openhaystack-mobile/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..bc6a58a --- /dev/null +++ b/openhaystack-mobile/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Fri Jun 23 08:50:38 CEST 2017 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip diff --git a/openhaystack-mobile/android/settings.gradle b/openhaystack-mobile/android/settings.gradle new file mode 100644 index 0000000..44e62bc --- /dev/null +++ b/openhaystack-mobile/android/settings.gradle @@ -0,0 +1,11 @@ +include ':app' + +def localPropertiesFile = new File(rootProject.projectDir, "local.properties") +def properties = new Properties() + +assert localPropertiesFile.exists() +localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } + +def flutterSdkPath = properties.getProperty("flutter.sdk") +assert flutterSdkPath != null, "flutter.sdk not set in local.properties" +apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/openhaystack-mobile/assets/OpenHaystackIcon.png b/openhaystack-mobile/assets/OpenHaystackIcon.png new file mode 100644 index 0000000..70de67f Binary files /dev/null and b/openhaystack-mobile/assets/OpenHaystackIcon.png differ diff --git a/openhaystack-mobile/ios/.gitignore b/openhaystack-mobile/ios/.gitignore new file mode 100644 index 0000000..7a7f987 --- /dev/null +++ b/openhaystack-mobile/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/openhaystack-mobile/ios/Flutter/AppFrameworkInfo.plist b/openhaystack-mobile/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..8d4492f --- /dev/null +++ b/openhaystack-mobile/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 9.0 + + diff --git a/openhaystack-mobile/ios/Flutter/Debug.xcconfig b/openhaystack-mobile/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..ec97fc6 --- /dev/null +++ b/openhaystack-mobile/ios/Flutter/Debug.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "Generated.xcconfig" diff --git a/openhaystack-mobile/ios/Flutter/Release.xcconfig b/openhaystack-mobile/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..c4855bf --- /dev/null +++ b/openhaystack-mobile/ios/Flutter/Release.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "Generated.xcconfig" diff --git a/openhaystack-mobile/ios/Podfile b/openhaystack-mobile/ios/Podfile new file mode 100644 index 0000000..1e8c3c9 --- /dev/null +++ b/openhaystack-mobile/ios/Podfile @@ -0,0 +1,41 @@ +# Uncomment this line to define a global platform for your project +# platform :ios, '9.0' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_ios_podfile_setup + +target 'Runner' do + use_frameworks! + use_modular_headers! + + flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_ios_build_settings(target) + end +end diff --git a/openhaystack-mobile/ios/Podfile.lock b/openhaystack-mobile/ios/Podfile.lock new file mode 100644 index 0000000..698cf6f --- /dev/null +++ b/openhaystack-mobile/ios/Podfile.lock @@ -0,0 +1,123 @@ +PODS: + - DKImagePickerController/Core (4.3.2): + - DKImagePickerController/ImageDataManager + - DKImagePickerController/Resource + - DKImagePickerController/ImageDataManager (4.3.2) + - DKImagePickerController/PhotoGallery (4.3.2): + - DKImagePickerController/Core + - DKPhotoGallery + - DKImagePickerController/Resource (4.3.2) + - DKPhotoGallery (0.0.17): + - DKPhotoGallery/Core (= 0.0.17) + - DKPhotoGallery/Model (= 0.0.17) + - DKPhotoGallery/Preview (= 0.0.17) + - DKPhotoGallery/Resource (= 0.0.17) + - SDWebImage + - SwiftyGif + - DKPhotoGallery/Core (0.0.17): + - DKPhotoGallery/Model + - DKPhotoGallery/Preview + - SDWebImage + - SwiftyGif + - DKPhotoGallery/Model (0.0.17): + - SDWebImage + - SwiftyGif + - DKPhotoGallery/Preview (0.0.17): + - DKPhotoGallery/Model + - DKPhotoGallery/Resource + - SDWebImage + - SwiftyGif + - DKPhotoGallery/Resource (0.0.17): + - SDWebImage + - SwiftyGif + - file_picker (0.0.1): + - DKImagePickerController/PhotoGallery + - Flutter + - Flutter (1.0.0) + - flutter_secure_storage (3.3.1): + - Flutter + - geocoding (1.0.5): + - Flutter + - location (0.0.1): + - Flutter + - maps_launcher (0.0.1): + - Flutter + - path_provider_ios (0.0.1): + - Flutter + - receive_sharing_intent (0.0.1): + - Flutter + - SDWebImage (5.12.3): + - SDWebImage/Core (= 5.12.3) + - SDWebImage/Core (5.12.3) + - share_plus (0.0.1): + - Flutter + - shared_preferences_ios (0.0.1): + - Flutter + - SwiftyGif (5.4.3) + - url_launcher_ios (0.0.1): + - Flutter + +DEPENDENCIES: + - file_picker (from `.symlinks/plugins/file_picker/ios`) + - Flutter (from `Flutter`) + - flutter_secure_storage (from `.symlinks/plugins/flutter_secure_storage/ios`) + - geocoding (from `.symlinks/plugins/geocoding/ios`) + - location (from `.symlinks/plugins/location/ios`) + - maps_launcher (from `.symlinks/plugins/maps_launcher/ios`) + - path_provider_ios (from `.symlinks/plugins/path_provider_ios/ios`) + - receive_sharing_intent (from `.symlinks/plugins/receive_sharing_intent/ios`) + - share_plus (from `.symlinks/plugins/share_plus/ios`) + - shared_preferences_ios (from `.symlinks/plugins/shared_preferences_ios/ios`) + - url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`) + +SPEC REPOS: + trunk: + - DKImagePickerController + - DKPhotoGallery + - SDWebImage + - SwiftyGif + +EXTERNAL SOURCES: + file_picker: + :path: ".symlinks/plugins/file_picker/ios" + Flutter: + :path: Flutter + flutter_secure_storage: + :path: ".symlinks/plugins/flutter_secure_storage/ios" + geocoding: + :path: ".symlinks/plugins/geocoding/ios" + location: + :path: ".symlinks/plugins/location/ios" + maps_launcher: + :path: ".symlinks/plugins/maps_launcher/ios" + path_provider_ios: + :path: ".symlinks/plugins/path_provider_ios/ios" + receive_sharing_intent: + :path: ".symlinks/plugins/receive_sharing_intent/ios" + share_plus: + :path: ".symlinks/plugins/share_plus/ios" + shared_preferences_ios: + :path: ".symlinks/plugins/shared_preferences_ios/ios" + url_launcher_ios: + :path: ".symlinks/plugins/url_launcher_ios/ios" + +SPEC CHECKSUMS: + DKImagePickerController: b5eb7f7a388e4643264105d648d01f727110fc3d + DKPhotoGallery: fdfad5125a9fdda9cc57df834d49df790dbb4179 + file_picker: 3e6c3790de664ccf9b882732d9db5eaf6b8d4eb1 + Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a + flutter_secure_storage: 7953c38a04c3fdbb00571bcd87d8e3b5ceb9daec + geocoding: 32cfcdb16d38d907caaba65e2e42ad10d38bee58 + location: 3a2eed4dd2fab25e7b7baf2a9efefe82b512d740 + maps_launcher: 2e5b6a2d664ec6c27f82ffa81b74228d770ab203 + path_provider_ios: 7d7ce634493af4477d156294792024ec3485acd5 + receive_sharing_intent: c0d87310754e74c0f9542947e7cbdf3a0335a3b1 + SDWebImage: 53179a2dba77246efa8a9b85f5c5b21f8f43e38f + share_plus: 056a1e8ac890df3e33cb503afffaf1e9b4fbae68 + shared_preferences_ios: aef470a42dc4675a1cdd50e3158b42e3d1232b32 + SwiftyGif: 6c3eafd0ce693cad58bb63d2b2fb9bacb8552780 + url_launcher_ios: 02f1989d4e14e998335b02b67a7590fa34f971af + +PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c + +COCOAPODS: 1.11.3 diff --git a/openhaystack-mobile/ios/Runner.xcodeproj/project.pbxproj b/openhaystack-mobile/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..13088b0 --- /dev/null +++ b/openhaystack-mobile/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,785 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 51; + objects = { + +/* Begin PBXBuildFile section */ + 05B555C72796E0E100731D0C /* ShareViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 05B555C62796E0E100731D0C /* ShareViewController.swift */; }; + 05B555CA2796E0E100731D0C /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 05B555C82796E0E100731D0C /* MainInterface.storyboard */; }; + 05B555CE2796E0E100731D0C /* ShareExtension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 05B555C42796E0E100731D0C /* ShareExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; + FAFCFCF8207021C31CE2021E /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 30AF7E29CD9C08B4BA0A1C52 /* Pods_Runner.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 05B555CC2796E0E100731D0C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 05B555C32796E0E100731D0C; + remoteInfo = ShareExtension; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 05B555CF2796E0E100731D0C /* Embed App Extensions */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 13; + files = ( + 05B555CE2796E0E100731D0C /* ShareExtension.appex in Embed App Extensions */, + ); + name = "Embed App Extensions"; + runOnlyForDeploymentPostprocessing = 0; + }; + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 05B555C42796E0E100731D0C /* ShareExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = ShareExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; }; + 05B555C62796E0E100731D0C /* ShareViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareViewController.swift; sourceTree = ""; }; + 05B555C92796E0E100731D0C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/MainInterface.storyboard; sourceTree = ""; }; + 05B555CB2796E0E100731D0C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 05B555D42796E21E00731D0C /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = ""; }; + 05B555D52796E25F00731D0C /* ShareExtension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = ShareExtension.entitlements; sourceTree = ""; }; + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 30AF7E29CD9C08B4BA0A1C52 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 5147928FEB8FF70E5DCF0B91 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + C142B296C6D81AB3420C4869 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; }; + D67EF54705446F3A326E5778 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 05B555C12796E0E100731D0C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + FAFCFCF8207021C31CE2021E /* Pods_Runner.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 05B555C52796E0E100731D0C /* ShareExtension */ = { + isa = PBXGroup; + children = ( + 05B555D52796E25F00731D0C /* ShareExtension.entitlements */, + 05B555C62796E0E100731D0C /* ShareViewController.swift */, + 05B555C82796E0E100731D0C /* MainInterface.storyboard */, + 05B555CB2796E0E100731D0C /* Info.plist */, + ); + path = ShareExtension; + sourceTree = ""; + }; + 67FFEEB1C00E19A4B34373A0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 30AF7E29CD9C08B4BA0A1C52 /* Pods_Runner.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 6BCC37388A6BAAA8424A31B1 /* Pods */ = { + isa = PBXGroup; + children = ( + 5147928FEB8FF70E5DCF0B91 /* Pods-Runner.debug.xcconfig */, + C142B296C6D81AB3420C4869 /* Pods-Runner.release.xcconfig */, + D67EF54705446F3A326E5778 /* Pods-Runner.profile.xcconfig */, + ); + path = Pods; + sourceTree = ""; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 05B555C52796E0E100731D0C /* ShareExtension */, + 97C146EF1CF9000F007C117D /* Products */, + 6BCC37388A6BAAA8424A31B1 /* Pods */, + 67FFEEB1C00E19A4B34373A0 /* Frameworks */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 05B555C42796E0E100731D0C /* ShareExtension.appex */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 05B555D42796E21E00731D0C /* Runner.entitlements */, + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 05B555C32796E0E100731D0C /* ShareExtension */ = { + isa = PBXNativeTarget; + buildConfigurationList = 05B555D32796E0E100731D0C /* Build configuration list for PBXNativeTarget "ShareExtension" */; + buildPhases = ( + 05B555C02796E0E100731D0C /* Sources */, + 05B555C12796E0E100731D0C /* Frameworks */, + 05B555C22796E0E100731D0C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = ShareExtension; + productName = ShareExtension; + productReference = 05B555C42796E0E100731D0C /* ShareExtension.appex */; + productType = "com.apple.product-type.app-extension"; + }; + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + F8ED8338B5331552C3B3682F /* [CP] Check Pods Manifest.lock */, + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + 090062C30368FBD0ED95CAB1 /* [CP] Embed Pods Frameworks */, + 05B555CF2796E0E100731D0C /* Embed App Extensions */, + ); + buildRules = ( + ); + dependencies = ( + 05B555CD2796E0E100731D0C /* PBXTargetDependency */, + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1320; + LastUpgradeCheck = 1300; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 05B555C32796E0E100731D0C = { + CreatedOnToolsVersion = 13.2.1; + }; + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + 05B555C32796E0E100731D0C /* ShareExtension */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 05B555C22796E0E100731D0C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 05B555CA2796E0E100731D0C /* MainInterface.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 090062C30368FBD0ED95CAB1 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; + F8ED8338B5331552C3B3682F /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 05B555C02796E0E100731D0C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 05B555C72796E0E100731D0C /* ShareViewController.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 05B555CD2796E0E100731D0C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 05B555C32796E0E100731D0C /* ShareExtension */; + targetProxy = 05B555CC2796E0E100731D0C /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 05B555C82796E0E100731D0C /* MainInterface.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 05B555C92796E0E100731D0C /* Base */, + ); + name = MainInterface.storyboard; + sourceTree = ""; + }; + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 05B555D02796E0E100731D0C /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_ENTITLEMENTS = ShareExtension/ShareExtension.entitlements; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = H9XHQ4WHSF; + GCC_C_LANGUAGE_STANDARD = gnu11; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = ShareExtension/Info.plist; + INFOPLIST_KEY_CFBundleDisplayName = ShareExtension; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@executable_path/../../Frameworks", + ); + MARKETING_VERSION = 1.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = de.seemoo.ios.openhaystack.ShareExtension; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 05B555D12796E0E100731D0C /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_ENTITLEMENTS = ShareExtension/ShareExtension.entitlements; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = H9XHQ4WHSF; + GCC_C_LANGUAGE_STANDARD = gnu11; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = ShareExtension/Info.plist; + INFOPLIST_KEY_CFBundleDisplayName = ShareExtension; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@executable_path/../../Frameworks", + ); + MARKETING_VERSION = 1.0; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = de.seemoo.ios.openhaystack.ShareExtension; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 05B555D22796E0E100731D0C /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CODE_SIGN_ENTITLEMENTS = ShareExtension/ShareExtension.entitlements; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = H9XHQ4WHSF; + GCC_C_LANGUAGE_STANDARD = gnu11; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = ShareExtension/Info.plist; + INFOPLIST_KEY_CFBundleDisplayName = ShareExtension; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@executable_path/../../Frameworks", + ); + MARKETING_VERSION = 1.0; + MTL_FAST_MATH = YES; + PRODUCT_BUNDLE_IDENTIFIER = de.seemoo.ios.openhaystack.ShareExtension; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Profile; + }; + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = H9XHQ4WHSF; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = de.seemoo.ios.openhaystack; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = H9XHQ4WHSF; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = de.seemoo.ios.openhaystack; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = H9XHQ4WHSF; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = de.seemoo.ios.openhaystack; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 05B555D32796E0E100731D0C /* Build configuration list for PBXNativeTarget "ShareExtension" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 05B555D02796E0E100731D0C /* Debug */, + 05B555D12796E0E100731D0C /* Release */, + 05B555D22796E0E100731D0C /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/openhaystack-mobile/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/openhaystack-mobile/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/openhaystack-mobile/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/openhaystack-mobile/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/openhaystack-mobile/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/openhaystack-mobile/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/openhaystack-mobile/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/openhaystack-mobile/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..3db53b6 --- /dev/null +++ b/openhaystack-mobile/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/openhaystack-mobile/ios/Runner.xcworkspace/contents.xcworkspacedata b/openhaystack-mobile/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..21a3cc1 --- /dev/null +++ b/openhaystack-mobile/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/openhaystack-mobile/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/openhaystack-mobile/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/openhaystack-mobile/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/openhaystack-mobile/ios/Runner/AppDelegate.swift b/openhaystack-mobile/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..70693e4 --- /dev/null +++ b/openhaystack-mobile/ios/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import UIKit +import Flutter + +@UIApplicationMain +@objc class AppDelegate: FlutterAppDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + GeneratedPluginRegistrant.register(with: self) + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } +} diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000..6e1db38 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000..4153ad5 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000..9e4e4f9 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000..fb1e562 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000..8075038 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000..aa35836 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000..a9a6009 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000..9e4e4f9 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000..42260a1 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000..95aaa05 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000..95aaa05 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000..8f1f369 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000..01546ce Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000..447f921 Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000..6876b6a Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/openhaystack-mobile/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/openhaystack-mobile/ios/Runner/Base.lproj/LaunchScreen.storyboard b/openhaystack-mobile/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/openhaystack-mobile/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/openhaystack-mobile/ios/Runner/Base.lproj/Main.storyboard b/openhaystack-mobile/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/openhaystack-mobile/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/openhaystack-mobile/ios/Runner/Info.plist b/openhaystack-mobile/ios/Runner/Info.plist new file mode 100644 index 0000000..dcf0c72 --- /dev/null +++ b/openhaystack-mobile/ios/Runner/Info.plist @@ -0,0 +1,63 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + OpenHaystack + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleURLTypes + + + CFBundleTypeRole + Editor + CFBundleURLSchemes + + ShareMedia + + + + + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSApplicationQueriesSchemes + + https + + LSRequiresIPhoneOS + + NSLocationWhenInUseUsageDescription + Location is needed to show the users location (optional) + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + + diff --git a/openhaystack-mobile/ios/Runner/Runner-Bridging-Header.h b/openhaystack-mobile/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/openhaystack-mobile/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/openhaystack-mobile/ios/Runner/Runner.entitlements b/openhaystack-mobile/ios/Runner/Runner.entitlements new file mode 100644 index 0000000..1db6944 --- /dev/null +++ b/openhaystack-mobile/ios/Runner/Runner.entitlements @@ -0,0 +1,10 @@ + + + + + com.apple.security.application-groups + + group.de.seemoo.ios.openhaystack + + + diff --git a/openhaystack-mobile/ios/ShareExtension/Base.lproj/MainInterface.storyboard b/openhaystack-mobile/ios/ShareExtension/Base.lproj/MainInterface.storyboard new file mode 100644 index 0000000..286a508 --- /dev/null +++ b/openhaystack-mobile/ios/ShareExtension/Base.lproj/MainInterface.storyboard @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/openhaystack-mobile/ios/ShareExtension/Info.plist b/openhaystack-mobile/ios/ShareExtension/Info.plist new file mode 100644 index 0000000..00576e2 --- /dev/null +++ b/openhaystack-mobile/ios/ShareExtension/Info.plist @@ -0,0 +1,21 @@ + + + + + NSExtension + + NSExtensionAttributes + + NSExtensionActivationRule + + NSExtensionActivationSupportsFileWithMaxCount + 1 + + + NSExtensionMainStoryboard + MainInterface + NSExtensionPointIdentifier + com.apple.share-services + + + diff --git a/openhaystack-mobile/ios/ShareExtension/ShareExtension.entitlements b/openhaystack-mobile/ios/ShareExtension/ShareExtension.entitlements new file mode 100644 index 0000000..1db6944 --- /dev/null +++ b/openhaystack-mobile/ios/ShareExtension/ShareExtension.entitlements @@ -0,0 +1,10 @@ + + + + + com.apple.security.application-groups + + group.de.seemoo.ios.openhaystack + + + diff --git a/openhaystack-mobile/ios/ShareExtension/ShareViewController.swift b/openhaystack-mobile/ios/ShareExtension/ShareViewController.swift new file mode 100644 index 0000000..4535c28 --- /dev/null +++ b/openhaystack-mobile/ios/ShareExtension/ShareViewController.swift @@ -0,0 +1,342 @@ +// +// ShareViewController.swift +// ShareExtension +// +// Created by Max Granzow on 18.01.22. +// + +import UIKit +import Social +import MobileCoreServices +import Photos + +// Source: https://pub.dev/packages/receive_sharing_intent +class ShareViewController: SLComposeServiceViewController { + let hostAppBundleIdentifier = "de.seemoo.ios.openhaystack" + let sharedKey = "ShareKey" + var sharedMedia: [SharedMediaFile] = [] + var sharedText: [String] = [] + let imageContentType = kUTTypeImage as String + let videoContentType = kUTTypeMovie as String + let textContentType = kUTTypeText as String + let urlContentType = kUTTypeURL as String + let fileURLType = kUTTypeFileURL as String; + + override func isContentValid() -> Bool { + return true + } + + override func viewDidLoad() { + super.viewDidLoad(); + } + + override func viewDidAppear(_ animated: Bool) { + super.viewDidAppear(animated) + + // This is called after the user selects Post. Do the upload of contentText and/or NSExtensionContext attachments. + if let content = extensionContext!.inputItems[0] as? NSExtensionItem { + if let contents = content.attachments { + for (index, attachment) in (contents).enumerated() { + if attachment.hasItemConformingToTypeIdentifier(imageContentType) { + handleImages(content: content, attachment: attachment, index: index) + } else if attachment.hasItemConformingToTypeIdentifier(fileURLType) { + handleFiles(content: content, attachment: attachment, index: index) + } else if attachment.hasItemConformingToTypeIdentifier(textContentType) { + handleText(content: content, attachment: attachment, index: index) + } else if attachment.hasItemConformingToTypeIdentifier(urlContentType) { + handleUrl(content: content, attachment: attachment, index: index) + } else if attachment.hasItemConformingToTypeIdentifier(videoContentType) { + handleVideos(content: content, attachment: attachment, index: index) + } + } + } + } + } + + override func didSelectPost() { + print("didSelectPost"); + } + + override func configurationItems() -> [Any]! { + // To add configuration options via table cells at the bottom of the sheet, return an array of SLComposeSheetConfigurationItem here. + return [] + } + + private func handleText (content: NSExtensionItem, attachment: NSItemProvider, index: Int) { + attachment.loadItem(forTypeIdentifier: textContentType, options: nil) { [weak self] data, error in + + if error == nil, let item = data as? String, let this = self { + + this.sharedText.append(item) + + // If this is the last item, save imagesData in userDefaults and redirect to host app + if index == (content.attachments?.count)! - 1 { + let userDefaults = UserDefaults(suiteName: "group.\(this.hostAppBundleIdentifier)") + userDefaults?.set(this.sharedText, forKey: this.sharedKey) + userDefaults?.synchronize() + this.redirectToHostApp(type: .text) + } + + } else { + self?.dismissWithError() + } + } + } + + private func handleUrl (content: NSExtensionItem, attachment: NSItemProvider, index: Int) { + attachment.loadItem(forTypeIdentifier: urlContentType, options: nil) { [weak self] data, error in + + if error == nil, let item = data as? URL, let this = self { + + this.sharedText.append(item.absoluteString) + + // If this is the last item, save imagesData in userDefaults and redirect to host app + if index == (content.attachments?.count)! - 1 { + let userDefaults = UserDefaults(suiteName: "group.\(this.hostAppBundleIdentifier)") + userDefaults?.set(this.sharedText, forKey: this.sharedKey) + userDefaults?.synchronize() + this.redirectToHostApp(type: .text) + } + + } else { + self?.dismissWithError() + } + } + } + + private func handleImages (content: NSExtensionItem, attachment: NSItemProvider, index: Int) { + attachment.loadItem(forTypeIdentifier: imageContentType, options: nil) { [weak self] data, error in + + if error == nil, let url = data as? URL, let this = self { + + // Always copy + let fileName = this.getFileName(from: url, type: .image) + let newPath = FileManager.default + .containerURL(forSecurityApplicationGroupIdentifier: "group.\(this.hostAppBundleIdentifier)")! + .appendingPathComponent(fileName) + let copied = this.copyFile(at: url, to: newPath) + if(copied) { + this.sharedMedia.append(SharedMediaFile(path: newPath.absoluteString, thumbnail: nil, duration: nil, type: .image)) + } + + // If this is the last item, save imagesData in userDefaults and redirect to host app + if index == (content.attachments?.count)! - 1 { + let userDefaults = UserDefaults(suiteName: "group.\(this.hostAppBundleIdentifier)") + userDefaults?.set(this.toData(data: this.sharedMedia), forKey: this.sharedKey) + userDefaults?.synchronize() + this.redirectToHostApp(type: .media) + } + + } else { + self?.dismissWithError() + } + } + } + + private func handleVideos (content: NSExtensionItem, attachment: NSItemProvider, index: Int) { + attachment.loadItem(forTypeIdentifier: videoContentType, options: nil) { [weak self] data, error in + + if error == nil, let url = data as? URL, let this = self { + + // Always copy + let fileName = this.getFileName(from: url, type: .video) + let newPath = FileManager.default + .containerURL(forSecurityApplicationGroupIdentifier: "group.\(this.hostAppBundleIdentifier)")! + .appendingPathComponent(fileName) + let copied = this.copyFile(at: url, to: newPath) + if(copied) { + guard let sharedFile = this.getSharedMediaFile(forVideo: newPath) else { + return + } + this.sharedMedia.append(sharedFile) + } + + // If this is the last item, save imagesData in userDefaults and redirect to host app + if index == (content.attachments?.count)! - 1 { + let userDefaults = UserDefaults(suiteName: "group.\(this.hostAppBundleIdentifier)") + userDefaults?.set(this.toData(data: this.sharedMedia), forKey: this.sharedKey) + userDefaults?.synchronize() + this.redirectToHostApp(type: .media) + } + + } else { + self?.dismissWithError() + } + } + } + + private func handleFiles (content: NSExtensionItem, attachment: NSItemProvider, index: Int) { + attachment.loadItem(forTypeIdentifier: fileURLType, options: nil) { [weak self] data, error in + + if error == nil, let url = data as? URL, let this = self { + + // Always copy + let fileName = this.getFileName(from :url, type: .file) + let newPath = FileManager.default + .containerURL(forSecurityApplicationGroupIdentifier: "group.\(this.hostAppBundleIdentifier)")! + .appendingPathComponent(fileName) + let copied = this.copyFile(at: url, to: newPath) + if (copied) { + this.sharedMedia.append(SharedMediaFile(path: newPath.absoluteString, thumbnail: nil, duration: nil, type: .file)) + } + + if index == (content.attachments?.count)! - 1 { + let userDefaults = UserDefaults(suiteName: "group.\(this.hostAppBundleIdentifier)") + userDefaults?.set(this.toData(data: this.sharedMedia), forKey: this.sharedKey) + userDefaults?.synchronize() + this.redirectToHostApp(type: .file) + } + + } else { + self?.dismissWithError() + } + } + } + + private func dismissWithError() { + print("[ERROR] Error loading data!") + let alert = UIAlertController(title: "Error", message: "Error loading data", preferredStyle: .alert) + + let action = UIAlertAction(title: "Error", style: .cancel) { _ in + self.dismiss(animated: true, completion: nil) + } + + alert.addAction(action) + present(alert, animated: true, completion: nil) + extensionContext!.completeRequest(returningItems: [], completionHandler: nil) + } + + private func redirectToHostApp(type: RedirectType) { + let url = URL(string: "ShareMedia://dataUrl=\(sharedKey)#\(type)") + var responder = self as UIResponder? + let selectorOpenURL = sel_registerName("openURL:") + + while (responder != nil) { + if (responder?.responds(to: selectorOpenURL))! { + let _ = responder?.perform(selectorOpenURL, with: url) + } + responder = responder!.next + } + extensionContext!.completeRequest(returningItems: [], completionHandler: nil) + } + + enum RedirectType { + case media + case text + case file + } + + func getExtension(from url: URL, type: SharedMediaType) -> String { + let parts = url.lastPathComponent.components(separatedBy: ".") + var ex: String? = nil + if (parts.count > 1) { + ex = parts.last + } + + if (ex == nil) { + switch type { + case .image: + ex = "PNG" + case .video: + ex = "MP4" + case .file: + ex = "TXT" + } + } + return ex ?? "Unknown" + } + + func getFileName(from url: URL, type: SharedMediaType) -> String { + var name = url.lastPathComponent + + if (name.isEmpty) { + name = UUID().uuidString + "." + getExtension(from: url, type: type) + } + + return name + } + + func copyFile(at srcURL: URL, to dstURL: URL) -> Bool { + do { + if FileManager.default.fileExists(atPath: dstURL.path) { + try FileManager.default.removeItem(at: dstURL) + } + try FileManager.default.copyItem(at: srcURL, to: dstURL) + } catch (let error) { + print("Cannot copy item at \(srcURL) to \(dstURL): \(error)") + return false + } + return true + } + + private func getSharedMediaFile(forVideo: URL) -> SharedMediaFile? { + let asset = AVAsset(url: forVideo) + let duration = (CMTimeGetSeconds(asset.duration) * 1000).rounded() + let thumbnailPath = getThumbnailPath(for: forVideo) + + if FileManager.default.fileExists(atPath: thumbnailPath.path) { + return SharedMediaFile(path: forVideo.absoluteString, thumbnail: thumbnailPath.absoluteString, duration: duration, type: .video) + } + + var saved = false + let assetImgGenerate = AVAssetImageGenerator(asset: asset) + assetImgGenerate.appliesPreferredTrackTransform = true + // let scale = UIScreen.main.scale + assetImgGenerate.maximumSize = CGSize(width: 360, height: 360) + do { + let img = try assetImgGenerate.copyCGImage(at: CMTimeMakeWithSeconds(600, preferredTimescale: Int32(1.0)), actualTime: nil) + try UIImage.pngData(UIImage(cgImage: img))()?.write(to: thumbnailPath) + saved = true + } catch { + saved = false + } + + return saved ? SharedMediaFile(path: forVideo.absoluteString, thumbnail: thumbnailPath.absoluteString, duration: duration, type: .video) : nil + + } + + private func getThumbnailPath(for url: URL) -> URL { + let fileName = Data(url.lastPathComponent.utf8).base64EncodedString().replacingOccurrences(of: "==", with: "") + let path = FileManager.default + .containerURL(forSecurityApplicationGroupIdentifier: "group.\(hostAppBundleIdentifier)")! + .appendingPathComponent("\(fileName).jpg") + return path + } + + class SharedMediaFile: Codable { + var path: String; // can be image, video or url path. It can also be text content + var thumbnail: String?; // video thumbnail + var duration: Double?; // video duration in milliseconds + var type: SharedMediaType; + + + init(path: String, thumbnail: String?, duration: Double?, type: SharedMediaType) { + self.path = path + self.thumbnail = thumbnail + self.duration = duration + self.type = type + } + + // Debug method to print out SharedMediaFile details in the console + func toString() { + print("[SharedMediaFile] \n\tpath: \(self.path)\n\tthumbnail: \(self.thumbnail)\n\tduration: \(self.duration)\n\ttype: \(self.type)") + } + } + + enum SharedMediaType: Int, Codable { + case image + case video + case file + } + + func toData(data: [SharedMediaFile]) -> Data { + let encodedData = try? JSONEncoder().encode(data) + return encodedData! + } +} + +extension Array { + subscript (safe index: UInt) -> Element? { + return Int(index) < count ? self[Int(index)] : nil + } +} diff --git a/openhaystack-mobile/lib/accessory/accessory_color_selector.dart b/openhaystack-mobile/lib/accessory/accessory_color_selector.dart new file mode 100644 index 0000000..e6c1fa7 --- /dev/null +++ b/openhaystack-mobile/lib/accessory/accessory_color_selector.dart @@ -0,0 +1,50 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_colorpicker/flutter_colorpicker.dart'; + +class AccessoryColorSelector extends StatelessWidget { + + /// This shows a color selector. + /// + /// The color can be selected via a color field or by inputing explicit + /// RGB values. + const AccessoryColorSelector({ Key? key }) : super(key: key); + + /// Displays the color selector with the [initialColor] preselected. + /// + /// The selected color is returned if the user selects the save option. + /// Otherwise the selection is discarded with a null return value. + static Future showColorSelection(BuildContext context, Color initialColor) async { + Color currentColor = initialColor; + return await showDialog( + context: context, + builder: (BuildContext context) { + return AlertDialog( + title: const Text('Pick a color'), + content: SingleChildScrollView( + child: ColorPicker( + hexInputBar: true, + pickerColor: currentColor, + onColorChanged: (Color newColor) { + currentColor = newColor; + }, + ) + ), + actions: [ + ElevatedButton( + child: const Text('Save'), + onPressed: () { + Navigator.pop(context, currentColor); + }, + ), + ], + ); + }, + ); + } + + @override + Widget build(BuildContext context) { + throw UnimplementedError(); + } + +} diff --git a/openhaystack-mobile/lib/accessory/accessory_detail.dart b/openhaystack-mobile/lib/accessory/accessory_detail.dart new file mode 100644 index 0000000..eec8900 --- /dev/null +++ b/openhaystack-mobile/lib/accessory/accessory_detail.dart @@ -0,0 +1,166 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:openhaystack_mobile/accessory/accessory_color_selector.dart'; +import 'package:openhaystack_mobile/accessory/accessory_icon.dart'; +import 'package:openhaystack_mobile/accessory/accessory_icon_selector.dart'; +import 'package:openhaystack_mobile/accessory/accessory_model.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:openhaystack_mobile/item_management/accessory_name_input.dart'; + +class AccessoryDetail extends StatefulWidget { + Accessory accessory; + + /// A page displaying the editable information of a specific [accessory]. + /// + /// This shows the editable information of a specific [accessory] and + /// allows the user to edit them. + AccessoryDetail({ + Key? key, + required this.accessory, + }) : super(key: key); + + @override + _AccessoryDetailState createState() => _AccessoryDetailState(); +} + +class _AccessoryDetailState extends State { + // An accessory storing the changed values. + late Accessory newAccessory; + final _formKey = GlobalKey(); + + @override + void initState() { + // Initialize changed accessory with existing accessory properties. + newAccessory = widget.accessory.clone(); + super.initState(); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: Text(widget.accessory.name), + ), + body: SingleChildScrollView( + child: Form( + key: _formKey, + child: Column( + children: [ + Center( + child: Stack( + children: [ + Padding( + padding: const EdgeInsets.all(20), + child: AccessoryIcon( + size: 100, + icon: newAccessory.icon, + color: newAccessory.color, + ), + ), + Positioned( + bottom: 0, + right: 0, + child: Padding( + padding: const EdgeInsets.all(10.0), + child: Container( + decoration: const BoxDecoration( + color: Color.fromARGB(255, 200, 200, 200), + shape: BoxShape.circle, + ), + child: IconButton( + onPressed: () async { + // Show icon selection + String? selectedIcon = await AccessoryIconSelector + .showIconSelection(context, newAccessory.rawIcon, newAccessory.color); + if (selectedIcon != null) { + setState(() { + newAccessory.setIcon(selectedIcon); + }); + + // Show color selection only when icon is selected + Color? selectedColor = await AccessoryColorSelector + .showColorSelection(context, newAccessory.color); + if (selectedColor != null) { + setState(() { + newAccessory.color = selectedColor; + }); + } + } + }, + icon: const Icon(Icons.edit), + ), + ), + ), + ), + ], + ), + ), + AccessoryNameInput( + initialValue: newAccessory.name, + onChanged: (value) { + setState(() { + newAccessory.name = value; + }); + }, + ), + SwitchListTile( + value: newAccessory.isActive, + title: const Text('Is Active'), + onChanged: (checked) { + setState(() { + newAccessory.isActive = checked; + }); + }, + ), + SwitchListTile( + value: newAccessory.isDeployed, + title: const Text('Is Deployed'), + onChanged: (checked) { + setState(() { + newAccessory.isDeployed = checked; + }); + }, + ), + ListTile( + title: OutlinedButton( + child: const Text('Save'), + onPressed: _formKey.currentState == null || !_formKey.currentState!.validate() + ? null : () { + if (_formKey.currentState != null && _formKey.currentState!.validate()) { + // Update accessory with changed values + var accessoryRegistry = Provider.of(context, listen: false); + accessoryRegistry.editAccessory(widget.accessory, newAccessory); + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Changes saved!'), + ), + ); + } + }, + ), + ), + ListTile( + title: ElevatedButton( + style: ButtonStyle( + backgroundColor: MaterialStateProperty.resolveWith( + (Set states) { + return Theme.of(context).errorColor; + }, + ), + ), + child: const Text('Delete Accessory', style: TextStyle(color: Colors.white),), + onPressed: () { + // Delete accessory + var accessoryRegistry = Provider.of(context, listen: false); + accessoryRegistry.removeAccessory(widget.accessory); + Navigator.pop(context); + }, + ), + ), + ], + ), + ), + ), + ); + } +} diff --git a/openhaystack-mobile/lib/accessory/accessory_dto.dart b/openhaystack-mobile/lib/accessory/accessory_dto.dart new file mode 100644 index 0000000..444738e --- /dev/null +++ b/openhaystack-mobile/lib/accessory/accessory_dto.dart @@ -0,0 +1,106 @@ +/// This class is used for de-/serializing data to the JSON transfer format. +class AccessoryDTO { + int id; + List colorComponents; + String name; + double? lastDerivationTimestamp; + String? symmetricKey; + int? updateInterval; + String privateKey; + String icon; + bool isDeployed; + String colorSpaceName; + bool usesDerivation; + String? oldestRelevantSymmetricKey; + bool isActive; + + /// Creates a transfer object to serialize to the JSON export format. + /// + /// This implements the [toJson] method used by the Dart JSON serializer. + /// ```dart + /// var accessoryDTO = AccessoryDTO(...); + /// jsonEncode(accessoryDTO); + /// ``` + AccessoryDTO({ + required this.id, + required this.colorComponents, + required this.name, + this.lastDerivationTimestamp, + this.symmetricKey, + this.updateInterval, + required this.privateKey, + required this.icon, + required this.isDeployed, + required this.colorSpaceName, + required this.usesDerivation, + this.oldestRelevantSymmetricKey, + required this.isActive, + }); + + /// Creates a transfer object from deserialized JSON data. + /// + /// The data is only decoded and not processed further. + /// + /// Typically used with JSON decoder. + /// ```dart + /// String json = '...'; + /// var accessoryDTO = AccessoryDTO.fromJSON(jsonDecode(json)); + /// ``` + /// + /// This implements the [toJson] method used by the Dart JSON serializer. + /// ```dart + /// var accessoryDTO = AccessoryDTO(...); + /// jsonEncode(accessoryDTO); + /// ``` + AccessoryDTO.fromJson(Map json) + : id = json['id'], + colorComponents = List.from(json['colorComponents']) + .map((val) => double.parse(val.toString())).toList(), + name = json['name'], + lastDerivationTimestamp = json['lastDerivationTimestamp'] ?? 0, + symmetricKey = json['symmetricKey'] ?? '', + updateInterval = json['updateInterval'] ?? 0, + privateKey = json['privateKey'], + icon = json['icon'], + isDeployed = json['isDeployed'], + colorSpaceName = json['colorSpaceName'], + usesDerivation = json['usesDerivation'] ?? false, + oldestRelevantSymmetricKey = json['oldestRelevantSymmetricKey'] ?? '', + isActive = json['isActive']; + + /// Creates a JSON map of the serialized transfer object. + /// + /// Typically used by JSON encoder. + /// ```dart + /// var accessoryDTO = AccessoryDTO(...); + /// jsonEncode(accessoryDTO); + /// ``` + Map toJson() => usesDerivation ? { + // With derivation + 'id': id, + 'colorComponents': colorComponents, + 'name': name, + 'lastDerivationTimestamp': lastDerivationTimestamp, + 'symmetricKey': symmetricKey, + 'updateInterval': updateInterval, + 'privateKey': privateKey, + 'icon': icon, + 'isDeployed': isDeployed, + 'colorSpaceName': colorSpaceName, + 'usesDerivation': usesDerivation, + 'oldestRelevantSymmetricKey': oldestRelevantSymmetricKey, + 'isActive': isActive, + } : { + // Without derivation (skip rolling key params) + 'id': id, + 'colorComponents': colorComponents, + 'name': name, + 'privateKey': privateKey, + 'icon': icon, + 'isDeployed': isDeployed, + 'colorSpaceName': colorSpaceName, + 'usesDerivation': usesDerivation, + 'isActive': isActive, + }; + +} diff --git a/openhaystack-mobile/lib/accessory/accessory_icon.dart b/openhaystack-mobile/lib/accessory/accessory_icon.dart new file mode 100644 index 0000000..78b5d94 --- /dev/null +++ b/openhaystack-mobile/lib/accessory/accessory_icon.dart @@ -0,0 +1,40 @@ +import 'package:flutter/material.dart'; +import 'package:flutter/foundation.dart'; + +class AccessoryIcon extends StatelessWidget { + /// The icon to display. + final IconData icon; + /// The color of the surrounding ring. + final Color color; + /// The size of the icon. + final double size; + + /// Displays the icon in a colored ring. + /// + /// The default size can be adjusted by setting the [size] parameter. + const AccessoryIcon({ + Key? key, + this.icon = Icons.help, + this.color = Colors.grey, + this.size = 24, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Container( + decoration: BoxDecoration( + color: Theme.of(context).colorScheme.surface, + shape: BoxShape.circle, + border: Border.all(width: size / 6, color: color), + ), + child: Padding( + padding: EdgeInsets.all(size / 12), + child: Icon( + icon, + size: size, + color: Theme.of(context).colorScheme.onSurface, + ), + ), + ); + } +} diff --git a/openhaystack-mobile/lib/accessory/accessory_icon_model.dart b/openhaystack-mobile/lib/accessory/accessory_icon_model.dart new file mode 100644 index 0000000..ac9dbc7 --- /dev/null +++ b/openhaystack-mobile/lib/accessory/accessory_icon_model.dart @@ -0,0 +1,39 @@ +import 'package:flutter/material.dart'; + +class AccessoryIconModel { + /// A list of all available icons + static const List icons = [ + "creditcard.fill", "briefcase.fill", "case.fill", "latch.2.case.fill", + "key.fill", "mappin", "globe", "crown.fill", + "gift.fill", "car.fill", "bicycle", "figure.walk", + "heart.fill", "hare.fill", "tortoise.fill", "eye.fill", + ]; + + /// A mapping from the cupertino icon names to the material icon names. + /// + /// If the icons do not match, so a similar replacement is used. + static const iconMapping = { + 'creditcard.fill': Icons.credit_card, + 'briefcase.fill': Icons.business_center, + 'case.fill': Icons.work, + 'latch.2.case.fill': Icons.business_center, + 'key.fill': Icons.vpn_key, + 'mappin': Icons.place, + // 'pushpin': Icons.push_pin, + 'globe': Icons.language, + 'crown.fill': Icons.school, + 'gift.fill': Icons.redeem, + 'car.fill': Icons.directions_car, + 'bicycle': Icons.pedal_bike, + 'figure.walk': Icons.directions_walk, + 'heart.fill': Icons.favorite, + 'hare.fill': Icons.pets, + 'tortoise.fill': Icons.bug_report, + 'eye.fill': Icons.visibility, + }; + + /// Looks up the equivalent material icon for the cupertino icon [iconName]. + static IconData? mapIcon(String iconName) { + return iconMapping[iconName]; + } +} diff --git a/openhaystack-mobile/lib/accessory/accessory_icon_selector.dart b/openhaystack-mobile/lib/accessory/accessory_icon_selector.dart new file mode 100644 index 0000000..cfea8a8 --- /dev/null +++ b/openhaystack-mobile/lib/accessory/accessory_icon_selector.dart @@ -0,0 +1,76 @@ +import 'dart:math'; + +import 'package:flutter/material.dart'; +import 'package:openhaystack_mobile/accessory/accessory_icon_model.dart'; + +typedef IconChangeListener = void Function(String? newValue); + +class AccessoryIconSelector extends StatelessWidget { + /// The existing icon used previously. + final String icon; + /// The existing color used previously. + final Color color; + /// A callback being called when the icon changes. + final IconChangeListener iconChanged; + + /// This show an icon selector. + /// + /// The icon can be selected from a list of available icons. + /// The icons are handled by the cupertino icon names. + const AccessoryIconSelector({ + Key? key, + required this.icon, + required this.color, + required this.iconChanged, + }) : super(key: key); + + /// Displays the icon selector with the [currentIcon] preselected in the [highlighColor]. + /// + /// The selected icon as a cupertino icon name is returned if the user selects an icon. + /// Otherwise the selection is discarded and a null value is returned. + static Future showIconSelection(BuildContext context, String currentIcon, Color highlighColor) async { + return await showDialog( + context: context, + builder: (BuildContext context) { + return LayoutBuilder( + builder: (context, constraints) => Dialog( + child: GridView.count( + primary: false, + padding: const EdgeInsets.all(20), + crossAxisSpacing: 10, + mainAxisSpacing: 10, + shrinkWrap: true, + crossAxisCount: min((constraints.maxWidth / 80).floor(), 8), + semanticChildCount: AccessoryIconModel.icons.length, + children: AccessoryIconModel.icons + .map((value) => IconButton( + icon: Icon(AccessoryIconModel.mapIcon(value)), + color: value == currentIcon ? highlighColor : null, + onPressed: () { Navigator.pop(context, value); }, + )).toList(), + ), + ), + ); + } + ); +} + + @override + Widget build(BuildContext context) { + return Container( + decoration: const BoxDecoration( + color: Color.fromARGB(255, 200, 200, 200), + shape: BoxShape.circle, + ), + child: IconButton( + onPressed: () async { + String? selectedIcon = await showIconSelection(context, icon, color); + if (selectedIcon != null) { + iconChanged(selectedIcon); + } + }, + icon: Icon(AccessoryIconModel.mapIcon(icon)), + ), + ); + } +} diff --git a/openhaystack-mobile/lib/accessory/accessory_list.dart b/openhaystack-mobile/lib/accessory/accessory_list.dart new file mode 100644 index 0000000..481025f --- /dev/null +++ b/openhaystack-mobile/lib/accessory/accessory_list.dart @@ -0,0 +1,152 @@ +import 'dart:math'; + +import 'package:flutter/material.dart'; +import 'package:flutter/foundation.dart'; +import 'package:flutter_slidable/flutter_slidable.dart'; +import 'package:maps_launcher/maps_launcher.dart'; +import 'package:provider/provider.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:openhaystack_mobile/accessory/accessory_list_item.dart'; +import 'package:openhaystack_mobile/accessory/accessory_list_item_placeholder.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:openhaystack_mobile/accessory/no_accessories.dart'; +import 'package:openhaystack_mobile/history/accessory_history.dart'; +import 'package:openhaystack_mobile/location/location_model.dart'; + +class AccessoryList extends StatefulWidget { + final AsyncCallback loadLocationUpdates; + final void Function(LatLng point)? centerOnPoint; + + /// Display a location overview all accessories in a concise list form. + /// + /// For each accessory the name and last known locaiton information is shown. + /// Uses the accessories in the [AccessoryRegistry]. + const AccessoryList({ + Key? key, + required this.loadLocationUpdates, + this.centerOnPoint, + }): super(key: key); + + @override + _AccessoryListState createState() => _AccessoryListState(); +} + +class _AccessoryListState extends State { + + @override + Widget build(BuildContext context) { + return Consumer2( + builder: (context, accessoryRegistry, locationModel, child) { + var accessories = accessoryRegistry.accessories; + + // Show placeholder while accessories are loading + if (accessoryRegistry.loading){ + return LayoutBuilder( + builder: (context, constraints) { + // Show as many accessory placeholder fitting into the vertical space. + // Minimum one, maximum 6 placeholders + var nrOfEntries = min(max((constraints.maxHeight / 64).floor(), 1), 6); + List placeholderList = []; + for (int i = 0; i < nrOfEntries; i++) { + placeholderList.add(const AccessoryListItemPlaceholder()); + } + return Scrollbar( + child: ListView( + children: placeholderList, + ), + ); + } + ); + } + + if (accessories.isEmpty) { + return const NoAccessoriesPlaceholder(); + } + + // TODO: Refresh Indicator for desktop + // Use pull to refresh method + return SlidableAutoCloseBehavior(child: + RefreshIndicator( + onRefresh: widget.loadLocationUpdates, + child: Scrollbar( + child: ListView( + children: accessories.map((accessory) { + // Calculate distance from users devices location + Widget? trailing; + if (locationModel.here != null && accessory.lastLocation != null) { + const Distance distance = Distance(); + final double km = distance.as(LengthUnit.Kilometer, locationModel.here!, accessory.lastLocation!); + trailing = Text(km.toString() + 'km'); + } + // Get human readable location + return Slidable( + endActionPane: ActionPane( + motion: const DrawerMotion(), + children: [ + if (accessory.isDeployed) SlidableAction( + onPressed: (context) async { + if (accessory.lastLocation != null && accessory.isDeployed) { + var loc = accessory.lastLocation!; + await MapsLauncher.launchCoordinates( + loc.latitude, loc.longitude, accessory.name); + } + }, + backgroundColor: Colors.blue, + foregroundColor: Colors.white, + icon: Icons.directions, + label: 'Navigate', + ), + if (accessory.isDeployed) SlidableAction( + onPressed: (context) { + Navigator.push( + context, + MaterialPageRoute(builder: (context) => AccessoryHistory( + accessory: accessory, + )), + ); + }, + backgroundColor: Colors.orange, + foregroundColor: Colors.white, + icon: Icons.history, + label: 'History', + ), + if (!accessory.isDeployed) SlidableAction( + onPressed: (context) { + var accessoryRegistry = Provider.of(context, listen: false); + var newAccessory = accessory.clone(); + newAccessory.isDeployed = true; + accessoryRegistry.editAccessory(accessory, newAccessory); + }, + backgroundColor: Colors.green, + foregroundColor: Colors.white, + icon: Icons.upload_file, + label: 'Deploy', + ), + ], + ), + child: Builder( + builder: (context) { + return AccessoryListItem( + accessory: accessory, + distance: trailing, + herePlace: locationModel.herePlace, + onTap: () { + var lastLocation = accessory.lastLocation; + if (lastLocation != null) { + widget.centerOnPoint?.call(lastLocation); + } + }, + onLongPress: Slidable.of(context)?.openEndActionPane, + ); + } + ), + ); + }).toList(), + ), + ), + ), + ); + }, + ); + } +} diff --git a/openhaystack-mobile/lib/accessory/accessory_list_item.dart b/openhaystack-mobile/lib/accessory/accessory_list_item.dart new file mode 100644 index 0000000..868cedb --- /dev/null +++ b/openhaystack-mobile/lib/accessory/accessory_list_item.dart @@ -0,0 +1,75 @@ +import 'package:flutter/material.dart'; +import 'package:geocoding/geocoding.dart'; +import 'package:openhaystack_mobile/accessory/accessory_icon.dart'; +import 'package:openhaystack_mobile/accessory/accessory_model.dart'; +import 'package:intl/intl.dart'; + +class AccessoryListItem extends StatelessWidget { + /// The accessory to display the information for. + final Accessory accessory; + /// A trailing distance information widget. + final Widget? distance; + /// Address information about the accessories location. + final Placemark? herePlace; + final VoidCallback onTap; + final VoidCallback? onLongPress; + + /// Displays the location of an accessory as a concise list item. + /// + /// Shows the icon and name of the accessory, as well as the current + /// location and distance to the user's location (if known; `distance != null`) + const AccessoryListItem({ + Key? key, + required this.accessory, + required this.onTap, + this.onLongPress, + this.distance, + this.herePlace, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return FutureBuilder( + future: accessory.place, + builder: (BuildContext context, AsyncSnapshot snapshot) { + // Format the location of the accessory. Use in this order: + // * Address if known + // * Coordinates (latitude & longitude) if known + // * `Unknown` if unknown + String locationString = accessory.lastLocation != null + ? '${accessory.lastLocation!.latitude}, ${accessory.lastLocation!.longitude}' + : 'Unknown'; + if (snapshot.hasData && snapshot.data != null) { + Placemark place = snapshot.data!; + locationString = '${place.locality}, ${place.administrativeArea}'; + if (herePlace != null && herePlace!.country != place.country) { + locationString = '${place.locality}, ${place.country}'; + } + } + // Format published date in a human readable way + String? dateString = accessory.datePublished != null + ? ' · ${DateFormat('dd.MM.yyyy kk:mm').format(accessory.datePublished!)}' + : ''; + return ListTile( + onTap: onTap, + onLongPress: onLongPress, + title: Text( + accessory.name + (accessory.isDeployed ? '' : ' (not deployed)'), + style: TextStyle( + color: accessory.isDeployed + ? Theme.of(context).colorScheme.onSurface + : Theme.of(context).disabledColor, + ), + ), + subtitle: Text(locationString + dateString), + trailing: distance, + dense: true, + leading: AccessoryIcon( + icon: accessory.icon, + color: accessory.color, + ), + ); + }, + ); + } +} diff --git a/openhaystack-mobile/lib/accessory/accessory_list_item_placeholder.dart b/openhaystack-mobile/lib/accessory/accessory_list_item_placeholder.dart new file mode 100644 index 0000000..58076ec --- /dev/null +++ b/openhaystack-mobile/lib/accessory/accessory_list_item_placeholder.dart @@ -0,0 +1,24 @@ +import 'package:flutter/material.dart'; +import 'package:openhaystack_mobile/accessory/accessory_list_item.dart'; +import 'package:openhaystack_mobile/placeholder/avatar_placeholder.dart'; +import 'package:openhaystack_mobile/placeholder/text_placeholder.dart'; + +class AccessoryListItemPlaceholder extends StatelessWidget { + + /// A placeholder for an [AccessoryListItem] showing a loading animation. + const AccessoryListItemPlaceholder({ + Key? key, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + // Uses a similar layout to the actual accessory list item + return const ListTile( + title: TextPlaceholder(), + subtitle: TextPlaceholder(), + dense: true, + leading: AvatarPlaceholder(), + trailing: TextPlaceholder(width: 60), + ); + } +} diff --git a/openhaystack-mobile/lib/accessory/accessory_model.dart b/openhaystack-mobile/lib/accessory/accessory_model.dart new file mode 100644 index 0000000..6b823d3 --- /dev/null +++ b/openhaystack-mobile/lib/accessory/accessory_model.dart @@ -0,0 +1,225 @@ +import 'package:flutter/material.dart'; +import 'package:geocoding/geocoding.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:openhaystack_mobile/accessory/accessory_icon_model.dart'; +import 'package:openhaystack_mobile/findMy/find_my_controller.dart'; +import 'package:openhaystack_mobile/location/location_model.dart'; + +class Pair { + final T1 a; + final T2 b; + + Pair(this.a, this.b); +} + + +const defaultIcon = Icons.push_pin; + + +class Accessory { + /// The ID of the accessory key. + String id; + /// A hash of the public key. + /// An identifier for the private key stored separately in the key store. + String hashedPublicKey; + /// If the accessory uses rolling keys. + bool usesDerivation; + + // Parameters for rolling keys (only relevant is usesDerivation == true) + String? symmetricKey; + double? lastDerivationTimestamp; + int? updateInterval; + String? oldestRelevantSymmetricKey; + + /// The display name of the accessory. + String name; + /// The display icon of the accessory. + String _icon; + /// The display color of the accessory. + Color color; + + /// If the accessory is active. + bool isActive; + /// If the accessory is already deployed + /// (and could therefore send locations). + bool isDeployed; + + /// The timestamp of the last known location + /// (null if no location known). + DateTime? datePublished; + /// The last known locations coordinates + /// (null if no location known). + LatLng? _lastLocation; + + /// A list of known locations over time. + List> locationHistory = []; + + /// Stores address information about the current location. + Future place = Future.value(null); + + + /// Creates an accessory with the given properties. + Accessory({ + required this.id, + required this.name, + required this.hashedPublicKey, + required this.datePublished, + this.isActive = false, + this.isDeployed = false, + LatLng? lastLocation, + String icon = 'mappin', + this.color = Colors.grey, + this.usesDerivation = false, + this.symmetricKey, + this.lastDerivationTimestamp, + this.updateInterval, + this.oldestRelevantSymmetricKey, + }): _icon = icon, _lastLocation = lastLocation, super() { + _init(); + } + + void _init() { + if (_lastLocation != null) { + place = LocationModel.getAddress(_lastLocation!); + } + } + + /// Creates a new accessory with exactly the same properties of this accessory. + Accessory clone() { + return Accessory( + datePublished: datePublished, + id: id, + name: name, + hashedPublicKey: hashedPublicKey, + color: color, + icon: _icon, + isActive: isActive, + isDeployed: isDeployed, + lastLocation: lastLocation, + usesDerivation: usesDerivation, + symmetricKey: symmetricKey, + lastDerivationTimestamp: lastDerivationTimestamp, + updateInterval: updateInterval, + oldestRelevantSymmetricKey: oldestRelevantSymmetricKey, + ); + } + + /// Updates the properties of this accessor with the new values of the [newAccessory]. + void update(Accessory newAccessory) { + datePublished = newAccessory.datePublished; + id = newAccessory.id; + name = newAccessory.name; + hashedPublicKey = newAccessory.hashedPublicKey; + color = newAccessory.color; + _icon = newAccessory._icon; + isActive = newAccessory.isActive; + isDeployed = newAccessory.isDeployed; + lastLocation = newAccessory.lastLocation; + } + + /// The last known location of the accessory. + LatLng? get lastLocation { + return _lastLocation; + } + + /// The last known location of the accessory. + set lastLocation(LatLng? newLocation) { + _lastLocation = newLocation; + if (_lastLocation != null) { + place = LocationModel.getAddress(_lastLocation!); + } + } + + /// The display icon of the accessory. + IconData get icon { + IconData? icon = AccessoryIconModel.mapIcon(_icon); + return icon ?? defaultIcon; + } + + /// The cupertino icon name. + String get rawIcon { + return _icon; + } + + /// The display icon of the accessory. + setIcon (String icon) { + _icon = icon; + } + + /// Creates an accessory from deserialized JSON data. + /// + /// Uses the same format as in [toJson] + /// + /// Typically used with JSON decoder. + /// ```dart + /// String json = '...'; + /// var accessoryDTO = Accessory.fromJSON(jsonDecode(json)); + /// ``` + Accessory.fromJson(Map json) + : id = json['id'], + name = json['name'], + hashedPublicKey = json['hashedPublicKey'], + datePublished = json['datePublished'] != null + ? DateTime.fromMillisecondsSinceEpoch(json['datePublished']) : null, + _lastLocation = json['latitude'] != null && json['longitude'] != null + ? LatLng(json['latitude'].toDouble(), json['longitude'].toDouble()) : null, + isActive = json['isActive'], + isDeployed = json['isDeployed'], + _icon = json['icon'], + color = Color(int.parse(json['color'], radix: 16)), + usesDerivation = json['usesDerivation'] ?? false, + symmetricKey = json['symmetricKey'], + lastDerivationTimestamp = json['lastDerivationTimestamp'], + updateInterval = json['updateInterval'], + oldestRelevantSymmetricKey = json['oldestRelevantSymmetricKey'] { + _init(); + } + + /// Creates a JSON map of the serialized accessory. + /// + /// Uses the same format as in [Accessory.fromJson]. + /// + /// Typically used by JSON encoder. + /// ```dart + /// var accessory = Accessory(...); + /// jsonEncode(accessory); + /// ``` + Map toJson() => { + 'id': id, + 'name': name, + 'hashedPublicKey': hashedPublicKey, + 'datePublished': datePublished?.millisecondsSinceEpoch, + 'latitude': _lastLocation?.latitude, + 'longitude': _lastLocation?.longitude, + 'isActive': isActive, + 'isDeployed': isDeployed, + 'icon': _icon, + 'color': color.toString().split('(0x')[1].split(')')[0], + 'usesDerivation': usesDerivation, + 'symmetricKey': symmetricKey, + 'lastDerivationTimestamp': lastDerivationTimestamp, + 'updateInterval': updateInterval, + 'oldestRelevantSymmetricKey': oldestRelevantSymmetricKey, + }; + + /// Returns the Base64 encoded hash of the advertisement key + /// (used to fetch location reports). + Future getHashedAdvertisementKey() async { + var keyPair = await FindMyController.getKeyPair(hashedPublicKey); + return keyPair.getHashedAdvertisementKey(); + } + + /// Returns the Base64 encoded advertisement key + /// (sent out by the accessory via BLE). + Future getAdvertisementKey() async { + var keyPair = await FindMyController.getKeyPair(hashedPublicKey); + return keyPair.getBase64AdvertisementKey(); + } + + /// Returns the Base64 encoded private key. + Future getPrivateKey() async { + var keyPair = await FindMyController.getKeyPair(hashedPublicKey); + return keyPair.getBase64PrivateKey(); + } + +} diff --git a/openhaystack-mobile/lib/accessory/accessory_registry.dart b/openhaystack-mobile/lib/accessory/accessory_registry.dart new file mode 100644 index 0000000..32c12d8 --- /dev/null +++ b/openhaystack-mobile/lib/accessory/accessory_registry.dart @@ -0,0 +1,155 @@ +import 'dart:collection'; +import 'dart:convert'; +import 'package:flutter/foundation.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_secure_storage/flutter_secure_storage.dart'; +import 'package:openhaystack_mobile/accessory/accessory_model.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:openhaystack_mobile/findMy/find_my_controller.dart'; +import 'package:openhaystack_mobile/findMy/models.dart'; + +const accessoryStorageKey = 'ACCESSORIES'; + +class AccessoryRegistry extends ChangeNotifier { + + final _storage = const FlutterSecureStorage(); + final _findMyController = FindMyController(); + List _accessories = []; + bool loading = false; + bool initialLoadFinished = false; + + /// Creates the accessory registry. + /// + /// This is used to manage the accessories of the user. + AccessoryRegistry() : super(); + + /// A list of the user's accessories. + UnmodifiableListView get accessories => UnmodifiableListView(_accessories); + + /// Loads the user's accessories from persistent storage. + Future loadAccessories() async { + loading = true; + String? serialized = await _storage.read(key: accessoryStorageKey); + if (serialized != null) { + List accessoryJson = json.decode(serialized); + List loadedAccessories = + accessoryJson.map((val) => Accessory.fromJson(val)).toList(); + _accessories = loadedAccessories; + } else { + _accessories = []; + } + + // For Debugging: + // await overwriteEverythingWithDemoDataForDebugging(); + + loading = false; + + notifyListeners(); + } + + /// __USE ONLY FOR DEBUGGING PURPOSES__ + /// + /// __ALL PERSISTENT DATA WILL BE LOST!__ + /// + /// Overwrites all accessories in this registry with demo data for testing. + Future overwriteEverythingWithDemoDataForDebugging() async { + // Delete everything to start with a fresh set of demo accessories + await _storage.deleteAll(); + + // Load demo accessories + List demoAccessories = [ + Accessory(hashedPublicKey: 'TrnHrAM0ZrFSDeq1NN7ppmh0zYJotYiO09alVVF1mPI=', + id: '-5952179461995674635', name: 'Raspberry Pi', color: Colors.green, + datePublished: DateTime.fromMillisecondsSinceEpoch(1636390931651), + icon: 'gift.fill', lastLocation: LatLng(49.874739, 8.656280)), + Accessory(hashedPublicKey: 'TrnHrAM0ZrFSDeq1NN7ppmh0zYJotYiO09alVVF1mPI=', + id: '-5952179461995674635', name: 'My Bag', color: Colors.blue, + datePublished: DateTime.fromMillisecondsSinceEpoch(1636390931651), + icon: 'case.fill', lastLocation: LatLng(49.874739, 8.656280)), + Accessory(hashedPublicKey: 'TrnHrAM0ZrFSDeq1NN7ppmh0zYJotYiO09alVVF1mPI=', + id: '-5952179461995674635', name: 'Car', color: Colors.red, + datePublished: DateTime.fromMillisecondsSinceEpoch(1636390931651), + icon: 'car.fill', lastLocation: LatLng(49.874739, 8.656280)), + ]; + _accessories = demoAccessories; + + // Store demo accessories for later use + await _storeAccessories(); + + // Import private key for demo accessories + // Public key hash is TrnHrAM0ZrFSDeq1NN7ppmh0zYJotYiO09alVVF1mPI= + await FindMyController.importKeyPair('siykvOCIEQRVDwrbjyZUXuBwsMi0Htm7IBmBIg=='); + } + + /// Fetches new location reports and matches them to their accessory. + Future loadLocationReports() async { + List>> runningLocationRequests = []; + + // request location updates for all accessories simultaneously + List currentAccessories = accessories; + for (var i = 0; i < currentAccessories.length; i++) { + var accessory = currentAccessories.elementAt(i); + + var keyPair = await FindMyController.getKeyPair(accessory.hashedPublicKey); + var locationRequest = FindMyController.computeResults(keyPair); + runningLocationRequests.add(locationRequest); + } + + // wait for location updates to succeed and update state afterwards + var reportsForAccessories = await Future.wait(runningLocationRequests); + for (var i = 0; i < currentAccessories.length; i++) { + var accessory = currentAccessories.elementAt(i); + var reports = reportsForAccessories.elementAt(i); + + print("Found ${reports.length} reports for accessory '${accessory.name}'"); + + accessory.locationHistory = reports + .where((report) => report.latitude.abs() <= 90 && report.longitude.abs() < 90 ) + .map((report) => Pair( + LatLng(report.latitude, report.longitude), + report.timestamp ?? report.published, + )) + .toList(); + + if (reports.isNotEmpty) { + var lastReport = reports.first; + accessory.lastLocation = LatLng(lastReport.latitude, lastReport.longitude); + accessory.datePublished = lastReport.timestamp ?? lastReport.published; + } + } + + // Store updated lastLocation and datePublished for accessories + _storeAccessories(); + + initialLoadFinished = true; + notifyListeners(); + } + + /// Stores the user's accessories in persistent storage. + Future _storeAccessories() async { + List jsonList = _accessories.map(jsonEncode).toList(); + await _storage.write(key: accessoryStorageKey, value: jsonList.toString()); + } + + /// Adds a new accessory to this registry. + void addAccessory(Accessory accessory) { + _accessories.add(accessory); + _storeAccessories(); + notifyListeners(); + } + + /// Removes [accessory] from this registry. + void removeAccessory(Accessory accessory) { + _accessories.remove(accessory); + // TODO: remove private key from keychain + _storeAccessories(); + notifyListeners(); + } + + /// Updates [oldAccessory] with the values from [newAccessory]. + void editAccessory(Accessory oldAccessory, Accessory newAccessory) { + oldAccessory.update(newAccessory); + _storeAccessories(); + notifyListeners(); + } +} diff --git a/openhaystack-mobile/lib/accessory/no_accessories.dart b/openhaystack-mobile/lib/accessory/no_accessories.dart new file mode 100644 index 0000000..8902f85 --- /dev/null +++ b/openhaystack-mobile/lib/accessory/no_accessories.dart @@ -0,0 +1,30 @@ +import 'package:flutter/material.dart'; +import 'package:openhaystack_mobile/item_management/new_item_action.dart'; + +class NoAccessoriesPlaceholder extends StatelessWidget { + + /// Displays a message that no accessories are present. + /// + /// Allows the user to quickly add a new accessory. + const NoAccessoriesPlaceholder({ Key? key }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: const [ + Text( + 'There\'s Nothing Here Yet\nAdd an accessory to get started.', + style: TextStyle( + fontSize: 20, + color: Colors.grey, + ), + textAlign: TextAlign.center, + ), + NewKeyAction(mini: true), + ], + ), + ); + } +} diff --git a/openhaystack-mobile/lib/dashboard/accessory_map_list_vert.dart b/openhaystack-mobile/lib/dashboard/accessory_map_list_vert.dart new file mode 100644 index 0000000..c4b751e --- /dev/null +++ b/openhaystack-mobile/lib/dashboard/accessory_map_list_vert.dart @@ -0,0 +1,57 @@ +import 'package:flutter/foundation.dart'; +import 'package:flutter/material.dart'; +import 'package:flutter_map/plugin_api.dart'; +import 'package:provider/provider.dart'; +import 'package:openhaystack_mobile/accessory/accessory_list.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:openhaystack_mobile/location/location_model.dart'; +import 'package:openhaystack_mobile/map/map.dart'; +import 'package:latlong2/latlong.dart'; + +class AccessoryMapListVertical extends StatefulWidget { + final AsyncCallback loadLocationUpdates; + + /// Displays a map view and the accessory list in a vertical alignment. + const AccessoryMapListVertical({ + Key? key, + required this.loadLocationUpdates, + }) : super(key: key); + + @override + State createState() => _AccessoryMapListVerticalState(); +} + +class _AccessoryMapListVerticalState extends State { + final MapController _mapController = MapController(); + + void _centerPoint(LatLng point) { + _mapController.fitBounds( + LatLngBounds(point), + ); + } + + @override + Widget build(BuildContext context) { + return Consumer2( + builder: (BuildContext context, AccessoryRegistry accessoryRegistry, LocationModel locationModel, Widget? child) { + return Column( + children: [ + Flexible( + fit: FlexFit.tight, + child: AccessoryMap( + mapController: _mapController, + ), + ), + Flexible( + fit: FlexFit.tight, + child: AccessoryList( + loadLocationUpdates: widget.loadLocationUpdates, + centerOnPoint: _centerPoint, + ), + ), + ], + ); + }, + ); + } +} diff --git a/openhaystack-mobile/lib/dashboard/dashboard_desktop.dart b/openhaystack-mobile/lib/dashboard/dashboard_desktop.dart new file mode 100644 index 0000000..b7aa620 --- /dev/null +++ b/openhaystack-mobile/lib/dashboard/dashboard_desktop.dart @@ -0,0 +1,93 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:openhaystack_mobile/accessory/accessory_list.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:openhaystack_mobile/location/location_model.dart'; +import 'package:openhaystack_mobile/map/map.dart'; +import 'package:openhaystack_mobile/preferences/preferences_page.dart'; +import 'package:openhaystack_mobile/preferences/user_preferences_model.dart'; + +class DashboardDesktop extends StatefulWidget { + + /// Displays the layout for the desktop view of the app. + /// + /// The layout is optimized for horizontally aligned larger screens + /// on desktop devices. + const DashboardDesktop({ Key? key }) : super(key: key); + + @override + _DashboardDesktopState createState() => _DashboardDesktopState(); +} + +class _DashboardDesktopState extends State { + + @override + void initState() { + super.initState(); + + // Initialize models and preferences + var userPreferences = Provider.of(context, listen: false); + var locationModel = Provider.of(context, listen: false); + var locationPreferenceKnown = userPreferences.locationPreferenceKnown ?? false; + var locationAccessWanted = userPreferences.locationAccessWanted ?? false; + if (!locationPreferenceKnown || locationAccessWanted) { + locationModel.requestLocationUpdates(); + } + + loadLocationUpdates(); + } + + /// Fetch locaiton updates for all accessories. + Future loadLocationUpdates() async { + var accessoryRegistry = Provider.of(context, listen: false); + await accessoryRegistry.loadLocationReports(); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + body: Row( + children: [ + SizedBox( + width: 400, + child: Column( + children: [ + AppBar( + title: const Text('OpenHaystack'), + leading: IconButton( + onPressed: () { /* reload */ }, + icon: const Icon(Icons.menu), + ), + actions: [ + IconButton( + onPressed: () { + Navigator.push( + context, + MaterialPageRoute(builder: (context) => const PreferencesPage()), + ); + }, + icon: const Icon(Icons.settings), + ), + ], + ), + const Padding( + padding: EdgeInsets.all(5), + child: Text('My Accessories') + ), + Expanded( + child: AccessoryList( + loadLocationUpdates: loadLocationUpdates, + ), + ), + ], + ), + ), + const Expanded( + child: AccessoryMap(), + ), + ], + ), + ); + } + +} diff --git a/openhaystack-mobile/lib/dashboard/dashboard_mobile.dart b/openhaystack-mobile/lib/dashboard/dashboard_mobile.dart new file mode 100644 index 0000000..38e9b5f --- /dev/null +++ b/openhaystack-mobile/lib/dashboard/dashboard_mobile.dart @@ -0,0 +1,121 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:openhaystack_mobile/dashboard/accessory_map_list_vert.dart'; +import 'package:openhaystack_mobile/item_management/item_management.dart'; +import 'package:openhaystack_mobile/item_management/new_item_action.dart'; +import 'package:openhaystack_mobile/location/location_model.dart'; +import 'package:openhaystack_mobile/preferences/preferences_page.dart'; +import 'package:openhaystack_mobile/preferences/user_preferences_model.dart'; + +class DashboardMobile extends StatefulWidget { + + /// Displays the layout for the mobile view of the app. + /// + /// The layout is optimized for a vertically aligned small screens. + /// The functionality is structured in a bottom tab bar for easy access + /// on mobile devices. + const DashboardMobile({ Key? key }) : super(key: key); + + @override + _DashboardMobileState createState() => _DashboardMobileState(); +} + +class _DashboardMobileState extends State { + + /// A list of the tabs displayed in the bottom tab bar. + late final List> _tabs = [ + { + 'title': 'My Accessories', + 'body': (ctx) => AccessoryMapListVertical( + loadLocationUpdates: loadLocationUpdates, + ), + 'icon': Icons.place, + 'label': 'Map', + }, + { + 'title': 'My Accessories', + 'body': (ctx) => const KeyManagement(), + 'icon': Icons.style, + 'label': 'Accessories', + 'actionButton': (ctx) => const NewKeyAction(), + }, + ]; + + @override + void initState() { + super.initState(); + + // Initialize models and preferences + var userPreferences = Provider.of(context, listen: false); + var locationModel = Provider.of(context, listen: false); + var locationPreferenceKnown = userPreferences.locationPreferenceKnown ?? false; + var locationAccessWanted = userPreferences.locationAccessWanted ?? false; + if (!locationPreferenceKnown || locationAccessWanted) { + locationModel.requestLocationUpdates(); + } + + // Load new location reports on app start + loadLocationUpdates(); + } + + /// Fetch locaiton updates for all accessories. + Future loadLocationUpdates() async { + var accessoryRegistry = Provider.of(context, listen: false); + try { + await accessoryRegistry.loadLocationReports(); + } catch (e) { + ScaffoldMessenger.of(context).showSnackBar( + SnackBar( + backgroundColor: Theme.of(context).colorScheme.error, + content: Text( + 'Could not find location reports. Try again later.', + style: TextStyle( + color: Theme.of(context).colorScheme.onError, + ), + ), + ), + ); + } + } + + /// The selected tab index. + int _selectedIndex = 0; + /// Updates the currently displayed tab to [index]. + void _onItemTapped(int index) { + setState(() { + _selectedIndex = index; + }); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('My Accessories'), + actions: [ + IconButton( + onPressed: () { + Navigator.push( + context, + MaterialPageRoute(builder: (context) => const PreferencesPage()), + ); + }, + icon: const Icon(Icons.settings), + ), + ], + ), + body: _tabs[_selectedIndex]['body'](context), + bottomNavigationBar: BottomNavigationBar( + items: _tabs.map((tab) => BottomNavigationBarItem( + icon: Icon(tab['icon']), + label: tab['label'], + )).toList(), + currentIndex: _selectedIndex, + selectedItemColor: Theme.of(context).indicatorColor, + onTap: _onItemTapped, + ), + floatingActionButton: _tabs[_selectedIndex]['actionButton']?.call(context), + ); + } +} diff --git a/openhaystack-mobile/lib/deployment/code_block.dart b/openhaystack-mobile/lib/deployment/code_block.dart new file mode 100644 index 0000000..7e5cc93 --- /dev/null +++ b/openhaystack-mobile/lib/deployment/code_block.dart @@ -0,0 +1,43 @@ +import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; + +class CodeBlock extends StatelessWidget { + String text; + + /// Displays a code block that can easily copied by the user. + CodeBlock({ + Key? key, + required this.text, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.symmetric(vertical: 8.0), + child: Stack( + children: [ + Container( + width: double.infinity, + constraints: const BoxConstraints(minHeight: 50), + decoration: BoxDecoration( + borderRadius: const BorderRadius.all(Radius.circular(10)), + color: Theme.of(context).colorScheme.background, + ), + padding: const EdgeInsets.all(5), + child: SelectableText(text), + ), + Positioned( + top: 0, + right: 5, + child: OutlinedButton( + child: const Text('Copy'), + onPressed: () { + Clipboard.setData(ClipboardData(text: text)); + }, + ), + ), + ], + ), + ); + } +} diff --git a/openhaystack-mobile/lib/deployment/deployment_details.dart b/openhaystack-mobile/lib/deployment/deployment_details.dart new file mode 100644 index 0000000..a60d691 --- /dev/null +++ b/openhaystack-mobile/lib/deployment/deployment_details.dart @@ -0,0 +1,87 @@ +import 'package:flutter/material.dart'; + +class DeploymentDetails extends StatefulWidget { + /// The steps required to deploy on this target. + List steps; + /// The name of the deployment target. + String title; + + /// Describes a generic step-by-step deployment for a special hardware target. + /// + /// The actual steps depend on the target platform and are provided in [steps]. + DeploymentDetails({ + Key? key, + required this.title, + required this.steps, + }) : super(key: key); + + @override + _DeploymentDetailsState createState() => _DeploymentDetailsState(); +} + +class _DeploymentDetailsState extends State { + /// The index of the currently displayed step. + int _index = 0; + + @override + Widget build(BuildContext context) { + var stepCount = widget.steps.length; + return Scaffold( + appBar: AppBar( + title: Text(widget.title), + ), + body: SafeArea( + child: Stepper( + currentStep: _index, + controlsBuilder: (BuildContext context, ControlsDetails details) { + String continueText = _index < stepCount - 1 ? 'CONTINUE' : 'FINISH'; + return Row( + children: [ + ElevatedButton( + style: ElevatedButton.styleFrom(shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(1))), + onPressed: details.onStepContinue, + child: Text(continueText), + ), + if (_index > 0) TextButton( + onPressed: details.onStepCancel, + child: const Text('BACK'), + ), + ], + ); + }, + onStepCancel: () { + // Back button clicked + if (_index == 0) { + // Cancel deployment and return + Navigator.pop(context); + } + else if (_index > 0) { + setState(() { + _index -= 1; + }); + } + }, + onStepContinue: () { + // Continue button clicked + if (_index == stepCount - 1) { + // TODO: Mark accessory as deployed + // Deployment finished + Navigator.pop(context); + Navigator.pop(context); + } else { + setState(() { + _index += 1; + }); + } + }, + onStepTapped: (int index) { + setState(() { + _index = index; + }); + }, + steps: widget.steps, + ), + ), + ); + } +} diff --git a/openhaystack-mobile/lib/deployment/deployment_email.dart b/openhaystack-mobile/lib/deployment/deployment_email.dart new file mode 100644 index 0000000..4c2cb4b --- /dev/null +++ b/openhaystack-mobile/lib/deployment/deployment_email.dart @@ -0,0 +1,95 @@ +class DeploymentEmail { + static const _mailtoLink = + 'mailto:?subject=Open%20Haystack%20Deplyoment%20Instructions&body='; + + static const _welcomeMessage = 'OpenHaystack Deployment Guide\n\n' + 'This is the deployment guide for your recently created OpenHaystack accessory. ' + 'The next step is to deploy the generated cryptographic key to a compatible ' + 'Bluetooth device.\n\n'; + + static const _finishedMessage = + '\n\nThe device now sends out Bluetooth advertisements. ' + 'It can take up to an hour for the location updates to appear in the app.\n'; + + static String getMicrobitDeploymentEmail(String advertisementKey) { + String mailContent = 'nRF51822 Deployment:\n\n' + 'Requirements\n' + 'To build the firmware the GNU Arm Embedded Toolchain is required.\n\n' + 'Download\n' + 'Download the firmware source code from GitHub and navigate to the ' + 'given folder.\n' + 'https://github.com/seemoo-lab/openhaystack\n' + 'git clone https://github.com/seemoo-lab/openhaystack.git && ' + 'cd openhaystack/Firmware/Microbit_v1\n\n' + 'Build\n' + 'Replace the public_key in main.c (initially ' + 'OFFLINEFINEINGPUBLICKEYHERE!) with the actual advertisement key. ' + 'Then execute make to create the firmware. You can export your ' + 'advertisement key directly from the OpenHaystack app.\n' + 'static char public_key[28] = $advertisementKey;\n' + 'make\n\n' + 'Firmware Deployment\n' + 'If the firmware is built successfully it can be deployed to the ' + 'microcontroller with the following command. (Please fill in the ' + 'volume of your microcontroller) \n' + 'make install DEPLOY_PATH=/Volumes/MICROBIT'; + + return _mailtoLink + + Uri.encodeComponent(_welcomeMessage) + + Uri.encodeComponent(mailContent) + + Uri.encodeComponent(_finishedMessage); + } + + static String getESP32DeploymentEmail(String advertisementKey) { + String mailContent = 'Espressif ESP32 Deployment: \n\n' + 'Requirements\n' + 'To build the firmware for the ESP32 Espressif\'s IoT Development ' + 'Framework (ESP-IDF) is required. Additionally Python 3 and the venv ' + 'module need to be installed.\n\n' + 'Download\n' + 'Download the firmware source code from GitHub and navigate to the ' + 'given folder.\n' + 'https://github.com/seemoo-lab/openhaystack\n' + 'git clone https://github.com/seemoo-lab/openhaystack.git ' + '&& cd openhaystack/Firmware/ESP32\n\n' + 'Build\n' + 'Execute the ESP-IDF build command to create the ESP32 firmware.\n' + 'idf.py build\n\n' + 'Firmware Deployment\n' + 'If the firmware is built successfully it can be flashed onto the ' + 'ESP32. This action is performed by the flash_esp32.sh script that ' + 'is provided with the advertisement key of the newly created accessory.\n' + 'Please fill in the serial port of your microcontroller.\n' + 'You can export your advertisement key directly from the ' + 'OpenHaystack app.\n' + './flash_esp32.sh -p /dev/yourSerialPort $advertisementKey'; + + return _mailtoLink + + Uri.encodeComponent(_welcomeMessage) + + Uri.encodeComponent(mailContent) + + Uri.encodeComponent(_finishedMessage); + } + + static String getLinuxHCIDeploymentEmail(String advertisementKey) { + String mailContent = 'Linux HCI Deployment:\n\n' + 'Requirements\n' + 'Install the hcitool software on a Bluetooth Low Energy Linux device, ' + 'for example a Raspberry Pi. Additionally Pyhton 3 needs to be ' + 'installed.\n\n' + 'Download\n' + 'Next download the python script that configures the HCI tool to ' + 'send out BLE advertisements.\n' + 'https://raw.githubusercontent.com/seemoo-lab/openhaystack/main/Firmware/Linux_HCI/HCI.py\n' + 'curl -o HCI.py https://raw.githubusercontent.com/seemoo-lab/openhaystack/main/Firmware/Linux_HCI/HCI.py\n\n' + 'Usage\n' + 'To start the BLE advertisements run the script.\n' + 'You can export your advertisement key directly from the ' + 'OpenHaystack app.\n' + 'sudo python3 HCI.py --key $advertisementKey'; + + return _mailtoLink + + Uri.encodeComponent(_welcomeMessage) + + Uri.encodeComponent(mailContent) + + Uri.encodeComponent(_finishedMessage); + } +} diff --git a/openhaystack-mobile/lib/deployment/deployment_esp32.dart b/openhaystack-mobile/lib/deployment/deployment_esp32.dart new file mode 100644 index 0000000..d74f678 --- /dev/null +++ b/openhaystack-mobile/lib/deployment/deployment_esp32.dart @@ -0,0 +1,67 @@ +import 'package:flutter/material.dart'; +import 'package:openhaystack_mobile/deployment/code_block.dart'; +import 'package:openhaystack_mobile/deployment/deployment_details.dart'; +import 'package:openhaystack_mobile/deployment/hyperlink.dart'; + +class DeploymentInstructionsESP32 extends StatelessWidget { + String advertisementKey; + + /// Displays a deployment guide for the ESP32 platform. + DeploymentInstructionsESP32({ + Key? key, + this.advertisementKey = '', + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return DeploymentDetails( + title: 'ESP32 Deployment', + steps: [ + const Step( + title: Text('Requirements'), + content: Text('To build the firmware for the ESP32 Espressif\'s ' + 'IoT Development Framework (ESP-IDF) is required. Additionally ' + 'Python 3 and the venv module need to be installed.'), + ), + Step( + title: const Text('Download'), + content: Column( + children: [ + const Text('Download the firmware source code from GitHub ' + 'and navigate to the given folder.'), + Hyperlink(target: 'https://github.com/seemoo-lab/openhaystack'), + CodeBlock(text: 'git clone https://github.com/seemoo-lab/openhaystack.git && cd openhaystack/Firmware/ESP32'), + ], + ), + ), + Step( + title: const Text('Build'), + content: Column( + children: [ + const Text('Execute the ESP-IDF build command to create the ESP32 firmware.'), + CodeBlock(text: 'idf.py build'), + ], + ), + ), + Step( + title: const Text('Firmware Deployment'), + content: Column( + children: [ + const Text('If the firmware is built successfully it can ' + 'be flashed onto the ESP32. This action is performed by ' + 'the flash_esp32.sh script that is provided with the ' + 'advertisement key of the newly created accessory.'), + const Text( + 'Please fill in the serial port of your microcontroller.', + style: TextStyle( + fontWeight: FontWeight.bold, + ), + ), + CodeBlock(text: './flash_esp32.sh -p /dev/yourSerialPort "$advertisementKey"'), + ], + ), + ), + ], + ); + } +} diff --git a/openhaystack-mobile/lib/deployment/deployment_instructions.dart b/openhaystack-mobile/lib/deployment/deployment_instructions.dart new file mode 100644 index 0000000..84f7901 --- /dev/null +++ b/openhaystack-mobile/lib/deployment/deployment_instructions.dart @@ -0,0 +1,253 @@ +import 'package:flutter/gestures.dart'; +import 'package:flutter/material.dart'; +import 'package:openhaystack_mobile/deployment/deployment_email.dart'; +import 'package:openhaystack_mobile/deployment/deployment_esp32.dart'; +import 'package:openhaystack_mobile/deployment/deployment_linux_hci.dart'; +import 'package:openhaystack_mobile/deployment/deployment_nrf51.dart'; +import 'package:openhaystack_mobile/deployment/hyperlink.dart'; +import 'package:url_launcher/url_launcher.dart'; + +class DeploymentInstructions extends StatefulWidget { + String advertisementKey; + + /// Displays deployment instructions for an already created accessory. + /// + /// Provides general information about the created accessory and deployment. + /// Deployment guides for special hardware can be accessed separately. + /// + /// The deployment instructions are customized with the [advertisementKey]. + DeploymentInstructions({ + Key? key, + this.advertisementKey = '', + }) : super(key: key); + + @override + _DeploymentInstructionsState createState() => _DeploymentInstructionsState(); +} + +class _DeploymentInstructionsState extends State { + final List _expanded = [false, false, false]; + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('How to Deploy'), + ), + body: SafeArea( + child: SingleChildScrollView( + child: Column( + children: [ + ListTile( + title: RichText( + text: TextSpan( + children: [ + TextSpan( + text: 'Congratulations, you successfully created ' + 'your accessory!\nThe next step is to deploy the generated ' + 'key to a Bluetooth device. OpenHaystack currently ' + 'supports three different deployment targets:\n' + 'Nordic nRF51, Espressif ESP32 and the generic Linux HCI ' + 'platform.\nAdditional information about the deployment ' + 'can be found on ', + style: TextStyle( + color: Theme.of(context).colorScheme.onSurface, + fontSize: 18, + ), + ), + TextSpan( + text: 'GitHub', + style: const TextStyle( + color: Colors.blue, + decoration: TextDecoration.underline, + fontSize: 18, + ), + recognizer: TapGestureRecognizer() + ..onTap = () { + launch( + 'https://github.com/seemoo-lab/openhaystack/'); + }, + ), + const TextSpan( + text: '.', + style: TextStyle(color: Colors.black, fontSize: 18), + ), + ], + ), + ), + ), + ExpansionPanelList( + expansionCallback: (int index, bool isExpanded) { + setState(() { + _expanded[index] = !isExpanded; + }); + }, + children: [ + ExpansionPanel( + headerBuilder: (BuildContext context, bool isExpanded) { + return const ListTile( + title: Text('Nordic vRF51'), + ); + }, + body: Column( + children: [ + const ListTile( + title: Text( + 'For this firmware you need a nFR51822 platform ' + 'microcontroller. The provided firmware will send out ' + 'the created key so it can be found by Apple\'s Find My ' + 'network.'), + ), + ListTile( + title: Hyperlink( + text: 'See deployment guide on GitHub', + target: + 'https://github.com/seemoo-lab/openhaystack/tree/main/Firmware/Microbit_v1', + ), + ), + Row( + mainAxisAlignment: MainAxisAlignment.spaceEvenly, + children: [ + OutlinedButton( + child: const Text('Send per mail'), + onPressed: () async { + await launch( + DeploymentEmail.getMicrobitDeploymentEmail( + widget.advertisementKey)); + }, + ), + ElevatedButton( + child: const Text('Continue'), + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => + DeploymentInstructionsNRF51( + advertisementKey: + widget.advertisementKey, + )), + ); + }, + ), + ], + ), + ], + ), + isExpanded: _expanded[0], + ), + ExpansionPanel( + headerBuilder: (BuildContext context, bool isExpanded) { + return const ListTile( + title: Text('Espressif ESP32'), + ); + }, + body: Column( + children: [ + const ListTile( + title: Text( + 'For this firmware you need an ESP32 platform ' + 'microcontroller. The provided firmware will send out ' + 'the created key so it can be found by Apple\'s Find My ' + 'network.'), + ), + ListTile( + title: Hyperlink( + text: 'See deployment guide on GitHub', + target: + 'https://github.com/seemoo-lab/openhaystack/tree/main/Firmware/ESP32', + ), + ), + Row( + mainAxisAlignment: MainAxisAlignment.spaceEvenly, + children: [ + OutlinedButton( + child: const Text('Send per mail'), + onPressed: () async { + await launch( + DeploymentEmail.getESP32DeploymentEmail( + widget.advertisementKey)); + }, + ), + ElevatedButton( + child: const Text('Continue'), + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => + DeploymentInstructionsESP32( + advertisementKey: + widget.advertisementKey, + )), + ); + }, + ), + ], + ), + ], + ), + isExpanded: _expanded[1], + ), + ExpansionPanel( + headerBuilder: (BuildContext context, bool isExpanded) { + return const ListTile( + title: Text('Linux HCI'), + ); + }, + body: Column( + children: [ + const ListTile( + title: Text( + 'This method only requires a Bluetooth enabled ' + 'Linux device. Using the hcitool and a provided script ' + 'the devices advertises the created key so it can be ' + 'found by Apple\'s Find My network.'), + ), + ListTile( + title: Hyperlink( + text: 'See deployment guide on GitHub', + target: + 'https://github.com/seemoo-lab/openhaystack/tree/main/Firmware/Linux_HCI', + ), + ), + Row( + mainAxisAlignment: MainAxisAlignment.spaceEvenly, + children: [ + OutlinedButton( + child: const Text('Send per mail'), + onPressed: () async { + await launch( + DeploymentEmail.getLinuxHCIDeploymentEmail( + widget.advertisementKey)); + }, + ), + ElevatedButton( + child: const Text('Continue'), + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (context) => + DeploymentInstructionsLinux( + advertisementKey: + widget.advertisementKey, + )), + ); + }, + ), + ], + ), + ], + ), + isExpanded: _expanded[2], + ), + ], + ), + ], + ), + ), + ), + ); + } +} diff --git a/openhaystack-mobile/lib/deployment/deployment_linux_hci.dart b/openhaystack-mobile/lib/deployment/deployment_linux_hci.dart new file mode 100644 index 0000000..9885305 --- /dev/null +++ b/openhaystack-mobile/lib/deployment/deployment_linux_hci.dart @@ -0,0 +1,49 @@ +import 'package:flutter/material.dart'; +import 'package:openhaystack_mobile/deployment/code_block.dart'; +import 'package:openhaystack_mobile/deployment/deployment_details.dart'; +import 'package:openhaystack_mobile/deployment/hyperlink.dart'; + +class DeploymentInstructionsLinux extends StatelessWidget { + String advertisementKey; + + /// Displays a deployment guide for the generic Linux HCI platform. + DeploymentInstructionsLinux({ + Key? key, + this.advertisementKey = '', + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return DeploymentDetails( + title: 'Linux HCI Deployment', + steps: [ + const Step( + title: Text('Requirements'), + content: Text('Install the hcitool software on a Bluetooth ' + 'Low Energy Linux device, for example a Raspberry Pi. ' + 'Additionally Pyhton 3 needs to be installed.'), + ), + Step( + title: const Text('Download'), + content: Column( + children: [ + const Text('Next download the python script that ' + 'configures the HCI tool to send out BLE advertisements.'), + Hyperlink(target: 'https://raw.githubusercontent.com/seemoo-lab/openhaystack/main/Firmware/Linux_HCI/HCI.py'), + CodeBlock(text: 'curl -o HCI.py https://raw.githubusercontent.com/seemoo-lab/openhaystack/main/Firmware/Linux_HCI/HCI.py'), + ], + ), + ), + Step( + title: const Text('Usage'), + content: Column( + children: [ + const Text('To start the BLE advertisements run the script.'), + CodeBlock(text: 'sudo python3 HCI.py --key $advertisementKey'), + ], + ), + ), + ], + ); + } +} diff --git a/openhaystack-mobile/lib/deployment/deployment_nrf51.dart b/openhaystack-mobile/lib/deployment/deployment_nrf51.dart new file mode 100644 index 0000000..641b30e --- /dev/null +++ b/openhaystack-mobile/lib/deployment/deployment_nrf51.dart @@ -0,0 +1,70 @@ +import 'package:flutter/material.dart'; +import 'package:openhaystack_mobile/deployment/code_block.dart'; +import 'package:openhaystack_mobile/deployment/deployment_details.dart'; +import 'package:openhaystack_mobile/deployment/hyperlink.dart'; + +class DeploymentInstructionsNRF51 extends StatelessWidget { + String advertisementKey; + + /// Displays a deployment guide for the NRF51 platform. + DeploymentInstructionsNRF51({ + Key? key, + this.advertisementKey = '', + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return DeploymentDetails( + title: 'nRF51822 Deployment', + steps: [ + const Step( + title: Text('Requirements'), + content: Text('To build the firmware the GNU Arm Embedded ' + 'Toolchain is required.'), + ), + Step( + title: const Text('Download'), + content: Column( + children: [ + const Text('Download the firmware source code from GitHub ' + 'and navigate to the given folder.'), + Hyperlink(target: 'https://github.com/seemoo-lab/openhaystack'), + CodeBlock(text: 'git clone https://github.com/seemoo-lab/openhaystack.git && cd openhaystack/Firmware/Microbit_v1'), + ], + ), + ), + Step( + title: const Text('Build'), + content: Column( + children: [ + const Text('Replace the public_key in main.c (initially ' + 'OFFLINEFINEINGPUBLICKEYHERE!) with the actual ' + 'advertisement key. Then execute make to create the ' + 'firmware.'), + CodeBlock(text: 'static char public_key[28] = "$advertisementKey";'), + CodeBlock(text: 'make'), + ], + ), + ), + Step( + title: const Text('Firmware Deployment'), + content: Column( + children: [ + const Text('If the firmware is built successfully it can ' + 'be deployed to the microcontroller with the following ' + 'command.'), + const Text( + 'Please fill in the volume of your microcontroller.', + style: TextStyle( + fontWeight: FontWeight.bold, + ), + ), + + CodeBlock(text: 'make install DEPLOY_PATH=/Volumes/MICROBIT'), + ], + ), + ), + ], + ); + } +} diff --git a/openhaystack-mobile/lib/deployment/hyperlink.dart b/openhaystack-mobile/lib/deployment/hyperlink.dart new file mode 100644 index 0000000..44f56f8 --- /dev/null +++ b/openhaystack-mobile/lib/deployment/hyperlink.dart @@ -0,0 +1,31 @@ +import 'package:flutter/material.dart'; +import 'package:url_launcher/url_launcher.dart'; + +class Hyperlink extends StatelessWidget { + /// The target url to open. + String target; + /// The display text of the hyperlink. Default is [target]. + String _text; + + /// Displays a hyperlink that can be opened by a tap. + Hyperlink({ + Key? key, + required this.target, + text, + }) : _text = text ?? target, super(key: key); + + @override + Widget build(BuildContext context) { + return InkWell( + child: Text(_text, + style: const TextStyle( + color: Colors.blue, + decoration: TextDecoration.underline, + ), + ), + onTap: () { + launch(target); + }, + ); + } +} diff --git a/openhaystack-mobile/lib/findMy/decrypt_reports.dart b/openhaystack-mobile/lib/findMy/decrypt_reports.dart new file mode 100644 index 0000000..f8fefa4 --- /dev/null +++ b/openhaystack-mobile/lib/findMy/decrypt_reports.dart @@ -0,0 +1,115 @@ +import 'dart:convert'; +import 'dart:isolate'; +import 'dart:typed_data'; + +import 'package:pointycastle/export.dart'; +import 'package:pointycastle/src/utils.dart' as pc_utils; +import 'package:openhaystack_mobile/findMy/models.dart'; + +class DecryptReports { + /// Decrypts a given [FindMyReport] with the given private key. + static Future decryptReport( + FindMyReport report, Uint8List key) async { + final curveDomainParam = ECCurve_secp224r1(); + + final payloadData = report.payload; + final ephemeralKeyBytes = payloadData.sublist(5, 62); + final encData = payloadData.sublist(62, 72); + final tag = payloadData.sublist(72, payloadData.length); + + _decodeTimeAndConfidence(payloadData, report); + + final privateKey = ECPrivateKey( + pc_utils.decodeBigIntWithSign(1, key), + curveDomainParam); + + final decodePoint = curveDomainParam.curve.decodePoint(ephemeralKeyBytes); + final ephemeralPublicKey = ECPublicKey(decodePoint, curveDomainParam); + + final Uint8List sharedKeyBytes = _ecdh(ephemeralPublicKey, privateKey); + final Uint8List derivedKey = _kdf(sharedKeyBytes, ephemeralKeyBytes); + + final decryptedPayload = _decryptPayload(encData, derivedKey, tag); + final locationReport = _decodePayload(decryptedPayload, report); + + return locationReport; + } + + /// Decodes the unencrypted timestamp and confidence + static void _decodeTimeAndConfidence(Uint8List payloadData, FindMyReport report) { + final seenTimeStamp = payloadData.sublist(0, 4).buffer.asByteData() + .getInt32(0, Endian.big); + final timestamp = DateTime(2001).add(Duration(seconds: seenTimeStamp)); + final confidence = payloadData.elementAt(4); + report.timestamp = timestamp; + report.confidence = confidence; + } + + /// Performs an Elliptic Curve Diffie-Hellman with the given keys. + /// Returns the derived raw key data. + static Uint8List _ecdh(ECPublicKey ephemeralPublicKey, ECPrivateKey privateKey) { + final sharedKey = ephemeralPublicKey.Q! * privateKey.d; + final sharedKeyBytes = pc_utils.encodeBigIntAsUnsigned( + sharedKey!.x!.toBigInteger()!); + print("Isolate:${Isolate.current.hashCode}: Shared Key (shared secret): ${base64Encode(sharedKeyBytes)}"); + + return sharedKeyBytes; + } + + /// Decodes the raw decrypted payload and constructs and returns + /// the resulting [FindMyLocationReport]. + static FindMyLocationReport _decodePayload( + Uint8List payload, FindMyReport report) { + + final latitude = payload.buffer.asByteData(0, 4).getUint32(0, Endian.big); + final longitude = payload.buffer.asByteData(4, 4).getUint32(0, Endian.big); + final accuracy = payload.buffer.asByteData(8, 1).getUint8(0); + + final latitudeDec = latitude / 10000000.0; + final longitudeDec = longitude / 10000000.0; + + return FindMyLocationReport(latitudeDec, longitudeDec, accuracy, + report.datePublished, report.timestamp, report.confidence); + } + + /// Decrypts the given cipher text with the key data using an AES-GCM block cipher. + /// Returns the decrypted raw data. + static Uint8List _decryptPayload( + Uint8List cipherText, Uint8List symmetricKey, Uint8List tag) { + final decryptionKey = symmetricKey.sublist(0, 16); + final iv = symmetricKey.sublist(16, symmetricKey.length); + + final aesGcm = GCMBlockCipher(AESEngine()) + ..init(false, AEADParameters(KeyParameter(decryptionKey), + tag.lengthInBytes * 8, iv, tag)); + + final plainText = Uint8List(cipherText.length); + var offset = 0; + while (offset < cipherText.length) { + offset += aesGcm.processBlock(cipherText, offset, plainText, offset); + } + + assert(offset == cipherText.length); + return plainText; + } + + /// ANSI X.963 key derivation to calculate the actual (symmetric) advertisement + /// key and returns the raw key data. + static Uint8List _kdf(Uint8List secret, Uint8List ephemeralKey) { + var shaDigest = SHA256Digest(); + shaDigest.update(secret, 0, secret.length); + + var counter = 1; + var counterData = ByteData(4)..setUint32(0, counter); + var counterDataBytes = counterData.buffer.asUint8List(); + shaDigest.update(counterDataBytes, 0, counterDataBytes.lengthInBytes); + + shaDigest.update(ephemeralKey, 0, ephemeralKey.lengthInBytes); + + Uint8List out = Uint8List(shaDigest.digestSize); + shaDigest.doFinal(out, 0); + + print("Isolate:${Isolate.current.hashCode}: Derived key: ${base64Encode(out)}"); + return out; + } +} diff --git a/openhaystack-mobile/lib/findMy/find_my_controller.dart b/openhaystack-mobile/lib/findMy/find_my_controller.dart new file mode 100644 index 0000000..1b1abe4 --- /dev/null +++ b/openhaystack-mobile/lib/findMy/find_my_controller.dart @@ -0,0 +1,146 @@ +import 'dart:collection'; +import 'dart:convert'; +import 'dart:isolate'; +import 'dart:typed_data'; + +import 'package:flutter/foundation.dart'; +import 'package:flutter_secure_storage/flutter_secure_storage.dart'; +import 'package:pointycastle/export.dart'; +import 'package:pointycastle/src/platform_check/platform_check.dart'; +import 'package:pointycastle/src/utils.dart' as pc_utils; +import 'package:openhaystack_mobile/findMy/decrypt_reports.dart'; +import 'package:openhaystack_mobile/findMy/models.dart'; +import 'package:openhaystack_mobile/findMy/reports_fetcher.dart'; + +class FindMyController { + static const _storage = FlutterSecureStorage(); + static final ECCurve_secp224r1 _curveParams = ECCurve_secp224r1(); + static HashMap _keyCache = HashMap(); + + /// Starts a new [Isolate], fetches and decrypts all location reports + /// for the given [FindMyKeyPair]. + /// Returns a list of [FindMyLocationReport]'s. + static Future> computeResults(FindMyKeyPair keyPair) async{ + await _loadPrivateKey(keyPair); + return compute(_getListedReportResults, keyPair); + } + + /// Fetches and decrypts the location reports for the given + /// [FindMyKeyPair] from apples FindMy Network. + /// Returns a list of [FindMyLocationReport]. + static Future> _getListedReportResults(FindMyKeyPair keyPair) async{ + List results = []; + final jsonResults = await ReportsFetcher.fetchLocationReports(keyPair.getHashedAdvertisementKey()); + for (var result in jsonResults) { + results.add(await _decryptResult(result, keyPair, keyPair.privateKeyBase64!)); + } + return results; + } + + /// Loads the private key from the local cache or secure storage and adds it + /// to the given [FindMyKeyPair]. + static Future _loadPrivateKey(FindMyKeyPair keyPair) async { + String? privateKey; + if (!_keyCache.containsKey(keyPair.hashedPublicKey)) { + privateKey = await _storage.read(key: keyPair.hashedPublicKey); + final newKey = _keyCache.putIfAbsent(keyPair.hashedPublicKey, () => privateKey); + assert(newKey == privateKey); + } else { + privateKey = _keyCache[keyPair.hashedPublicKey]; + } + keyPair.privateKeyBase64 = privateKey!; + } + + /// Derives an [ECPublicKey] from a given [ECPrivateKey] on the given curve. + static ECPublicKey _derivePublicKey(ECPrivateKey privateKey) { + final pk = _curveParams.G * privateKey.d; + final publicKey = ECPublicKey(pk, _curveParams); + print("Isolate:${Isolate.current.hashCode}: Point Data: ${base64Encode(publicKey.Q!.getEncoded(false))}"); + + return publicKey; + } + + /// Decrypts the encrypted reports with the given [FindMyKeyPair] and private key. + /// Returns the decrypted report as a [FindMyLocationReport]. + static Future _decryptResult(dynamic result, FindMyKeyPair keyPair, String privateKey) async { + assert (result["id"]! == keyPair.getHashedAdvertisementKey(), + "Returned FindMyReport hashed key != requested hashed key"); + + final unixTimestampInMillis = result["datePublished"]; + final datePublished = DateTime.fromMillisecondsSinceEpoch(unixTimestampInMillis); + FindMyReport report = FindMyReport( + datePublished, + base64Decode(result["payload"]), + keyPair.getHashedAdvertisementKey(), + result["statusCode"]); + + FindMyLocationReport decryptedReport = await DecryptReports + .decryptReport(report, base64Decode(privateKey)); + + return decryptedReport; + } + + /// Returns the to the base64 encoded given hashed public key + /// corresponding [FindMyKeyPair] from the local [FlutterSecureStorage]. + static Future getKeyPair(String base64HashedPublicKey) async { + final privateKeyBase64 = await _storage.read(key: base64HashedPublicKey); + + ECPrivateKey privateKey = ECPrivateKey( + pc_utils.decodeBigIntWithSign(1, base64Decode(privateKeyBase64!)), _curveParams); + ECPublicKey publicKey = _derivePublicKey(privateKey); + + return FindMyKeyPair(publicKey, base64HashedPublicKey, privateKey, DateTime.now(), -1); + } + + /// Imports a base64 encoded private key to the local [FlutterSecureStorage]. + /// Returns a [FindMyKeyPair] containing the corresponding [ECPublicKey]. + static Future importKeyPair(String privateKeyBase64) async { + final privateKeyBytes = base64Decode(privateKeyBase64); + final ECPrivateKey privateKey = ECPrivateKey( + pc_utils.decodeBigIntWithSign(1, privateKeyBytes), _curveParams); + final ECPublicKey publicKey = _derivePublicKey(privateKey); + final hashedPublicKey = getHashedPublicKey(publicKey: publicKey); + final keyPair = FindMyKeyPair( + publicKey, + hashedPublicKey, + privateKey, + DateTime.now(), + -1); + + await _storage.write(key: hashedPublicKey, value: keyPair.getBase64PrivateKey()); + + return keyPair; + } + + /// Generates a [ECCurve_secp224r1] keypair. + /// Returns the newly generated keypair as a [FindMyKeyPair] object. + static Future generateKeyPair() async { + final ecCurve = ECCurve_secp224r1(); + final secureRandom = SecureRandom('Fortuna') + ..seed(KeyParameter( + Platform.instance.platformEntropySource().getBytes(32))); + ECKeyGenerator keyGen = ECKeyGenerator() + ..init(ParametersWithRandom(ECKeyGeneratorParameters(ecCurve), secureRandom)); + + final newKeyPair = keyGen.generateKeyPair(); + final ECPublicKey publicKey = newKeyPair.publicKey as ECPublicKey; + final ECPrivateKey privateKey = newKeyPair.privateKey as ECPrivateKey; + final hashedKey = getHashedPublicKey(publicKey: publicKey); + final keyPair = FindMyKeyPair(publicKey, hashedKey, privateKey, DateTime.now(), -1); + await _storage.write(key: hashedKey, value: keyPair.getBase64PrivateKey()); + + return keyPair; + } + + /// Returns hashed, base64 encoded public key for given [publicKeyBytes] + /// or for an [ECPublicKey] object [publicKey], if [publicKeyBytes] equals null. + /// Returns the base64 encoded hashed public key as a [String]. + static String getHashedPublicKey({Uint8List? publicKeyBytes, ECPublicKey? publicKey}) { + var pkBytes = publicKeyBytes ?? publicKey!.Q!.getEncoded(false); + final shaDigest = SHA256Digest(); + shaDigest.update(pkBytes, 0, pkBytes.lengthInBytes); + Uint8List out = Uint8List(shaDigest.digestSize); + shaDigest.doFinal(out, 0); + return base64Encode(out); + } +} \ No newline at end of file diff --git a/openhaystack-mobile/lib/findMy/models.dart b/openhaystack-mobile/lib/findMy/models.dart new file mode 100644 index 0000000..f60f954 --- /dev/null +++ b/openhaystack-mobile/lib/findMy/models.dart @@ -0,0 +1,84 @@ +import 'dart:convert'; +import 'dart:typed_data'; + +import 'package:pointycastle/ecc/api.dart'; +import 'package:pointycastle/src/utils.dart' as pc_utils; +import 'package:openhaystack_mobile/findMy/find_my_controller.dart'; + +/// Represents a decrypted FindMyReport. +class FindMyLocationReport { + double latitude; + double longitude; + int accuracy; + DateTime published; + DateTime? timestamp; + int? confidence; + + FindMyLocationReport(this.latitude, this.longitude, this.accuracy, + this.published, this.timestamp, this.confidence); + + Location get location => Location(latitude, longitude); +} + +class Location { + double latitude; + double longitude; + + Location(this.latitude, this.longitude); +} + +/// FindMy report returned by the FindMy Network +class FindMyReport { + DateTime datePublished; + Uint8List payload; + String id; + int statusCode; + + int? confidence; + DateTime? timestamp; + + FindMyReport(this.datePublished, this.payload, this.id, this.statusCode); + + FindMyReport.completeInit(this.datePublished, this.payload, this.id, this.statusCode, + this.confidence, this.timestamp); + +} + +class FindMyKeyPair { + final ECPublicKey _publicKey; + final ECPrivateKey _privateKey; + final String hashedPublicKey; + String? privateKeyBase64; + + /// Time when this key was used to send BLE advertisements + DateTime startTime; + /// Duration from start time how long the key was used to send BLE advertisements + double duration; + + FindMyKeyPair(this._publicKey, this.hashedPublicKey, this._privateKey, this.startTime, + this.duration); + + String getBase64PublicKey() { + return base64Encode(_publicKey.Q!.getEncoded(false)); + } + + String getBase64PrivateKey() { + return base64Encode(pc_utils.encodeBigIntAsUnsigned(_privateKey.d!)); + } + + String getBase64AdvertisementKey() { + return base64Encode(_getAdvertisementKey()); + } + + Uint8List _getAdvertisementKey() { + var pkBytes = _publicKey.Q!.getEncoded(true); + //Drop first byte to get the 28byte version + var key = pkBytes.sublist(1, pkBytes.length); + return key; + } + + String getHashedAdvertisementKey() { + var key = _getAdvertisementKey(); + return FindMyController.getHashedPublicKey(publicKeyBytes: key); + } +} diff --git a/openhaystack-mobile/lib/findMy/reports_fetcher.dart b/openhaystack-mobile/lib/findMy/reports_fetcher.dart new file mode 100644 index 0000000..8bffff8 --- /dev/null +++ b/openhaystack-mobile/lib/findMy/reports_fetcher.dart @@ -0,0 +1,26 @@ +import 'dart:convert'; + +import 'package:http/http.dart' as http; + +class ReportsFetcher { + static const _seemooEndpoint = "https://add-your-proxy-server-here/getLocationReports" + + /// Fetches the location reports corresponding to the given hashed advertisement + /// key. + /// Throws [Exception] if no answer was received. + static Future fetchLocationReports(String hashedAdvertisementKey) async { + final response = await http.post(Uri.parse(_seemooEndpoint), + headers: { + "Content-Type": "application/json", + }, + body: jsonEncode({ + "ids": [hashedAdvertisementKey], + })); + + if (response.statusCode == 200) { + return await jsonDecode(response.body)["results"]; + } else { + throw Exception("Failed to fetch location reports with statusCode:${response.statusCode}\n\n Response:\n${response}"); + } + } +} diff --git a/openhaystack-mobile/lib/history/accessory_history.dart b/openhaystack-mobile/lib/history/accessory_history.dart new file mode 100644 index 0000000..66de060 --- /dev/null +++ b/openhaystack-mobile/lib/history/accessory_history.dart @@ -0,0 +1,163 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_map/plugin_api.dart'; +import 'package:openhaystack_mobile/accessory/accessory_model.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:openhaystack_mobile/history/days_selection_slider.dart'; +import 'package:openhaystack_mobile/history/location_popup.dart'; + +class AccessoryHistory extends StatefulWidget { + Accessory accessory; + + /// Shows previous locations of a specific [accessory] on a map. + /// The locations are connected by a chronological line. + /// The number of days to go back can be adjusted with a slider. + AccessoryHistory({ + Key? key, + required this.accessory, + }) : super(key: key); + + @override + _AccessoryHistoryState createState() => _AccessoryHistoryState(); +} + +class _AccessoryHistoryState extends State { + + final MapController _mapController = MapController(); + + bool showPopup = false; + Pair? popupEntry; + + double numberOfDays = 7; + + @override + void initState() { + super.initState(); + + _mapController.onReady + .then((_) { + var historicLocations = widget.accessory.locationHistory + .map((entry) => entry.a).toList(); + var bounds = LatLngBounds.fromPoints(historicLocations); + _mapController.fitBounds(bounds); + }); + } + + @override + Widget build(BuildContext context) { + // Filter for the locations after the specified cutoff date (now - number of days) + var now = DateTime.now(); + List> locationHistory = widget.accessory.locationHistory + .where( + (element) => element.b.isAfter( + now.subtract(Duration(days: numberOfDays.round())), + ), + ).toList(); + + return Scaffold( + appBar: AppBar( + title: Text(widget.accessory.name), + ), + body: SafeArea( + child: Column( + children: [ + Flexible( + flex: 3, + fit: FlexFit.tight, + child: FlutterMap( + mapController: _mapController, + options: MapOptions( + center: LatLng(49.874739, 8.656280), + zoom: 13.0, + interactiveFlags: + InteractiveFlag.pinchZoom | InteractiveFlag.drag | + InteractiveFlag.doubleTapZoom | InteractiveFlag.flingAnimation | + InteractiveFlag.pinchMove, + onTap: (_, __) { + setState(() { + showPopup = false; + popupEntry = null; + }); + }, + ), + layers: [ + TileLayerOptions( + backgroundColor: Theme.of(context).colorScheme.surface, + tileBuilder: (context, child, tile) { + var isDark = (Theme.of(context).brightness == Brightness.dark); + return isDark ? ColorFiltered( + colorFilter: const ColorFilter.matrix([ + -1, 0, 0, 0, 255, + 0, -1, 0, 0, 255, + 0, 0, -1, 0, 255, + 0, 0, 0, 1, 0, + ]), + child: child, + ) : child; + }, + urlTemplate: "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", + subdomains: ['a', 'b', 'c'], + attributionBuilder: (_) { + return const Text("© OpenStreetMap contributors"); + }, + ), + // The line connecting the locations chronologically + PolylineLayerOptions( + polylines: [ + Polyline( + points: locationHistory.map((entry) => entry.a).toList(), + strokeWidth: 4, + color: Theme.of(context).colorScheme.primaryVariant, + ), + ], + ), + // The markers for the historic locaitons + MarkerLayerOptions( + markers: locationHistory.map((entry) => Marker( + point: entry.a, + builder: (ctx) => GestureDetector( + onTap: () { + setState(() { + showPopup = true; + popupEntry = entry; + }); + }, + child: Icon( + Icons.circle, + size: 15, + color: entry == popupEntry + ? Colors.red + : Theme.of(context).indicatorColor, + ), + ), + )).toList(), + ), + // Displays the tooltip if active + MarkerLayerOptions( + markers: [ + if (showPopup) LocationPopup( + location: popupEntry!.a, + time: popupEntry!.b, + ), + ], + ), + ], + ), + ), + Flexible( + flex: 1, + fit: FlexFit.tight, + child: DaysSelectionSlider( + numberOfDays: numberOfDays, + onChanged: (double newValue) { + setState(() { + numberOfDays = newValue; + }); + }, + ), + ), + ], + ), + ), + ); + } +} diff --git a/openhaystack-mobile/lib/history/days_selection_slider.dart b/openhaystack-mobile/lib/history/days_selection_slider.dart new file mode 100644 index 0000000..93df60c --- /dev/null +++ b/openhaystack-mobile/lib/history/days_selection_slider.dart @@ -0,0 +1,56 @@ +import 'package:flutter/material.dart'; + +class DaysSelectionSlider extends StatefulWidget { + + /// The number of days currently selected. + double numberOfDays; + /// A callback listening for value changes. + ValueChanged onChanged; + + /// Display a slider that allows to define how many days to go back + /// (range 1 to 7). + DaysSelectionSlider({ + Key? key, + required this.numberOfDays, + required this.onChanged, + }) : super(key: key); + + @override + _DaysSelectionSliderState createState() => _DaysSelectionSliderState(); +} + +class _DaysSelectionSliderState extends State { + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.all(12.0), + child: Column( + children: [ + const Center( + child: Text( + 'How many days back?', + style: TextStyle(fontSize: 20), + ), + ), + Row( + children: [ + const Text('1', style: TextStyle(fontWeight: FontWeight.bold)), + Expanded( + child: Slider( + value: widget.numberOfDays, + min: 1, + max: 7, + label: '${widget.numberOfDays.round()}', + divisions: 6, + onChanged: widget.onChanged, + ), + ), + const Text('7', style: TextStyle(fontWeight: FontWeight.bold)), + ], + ), + ], + ), + ); + } + +} diff --git a/openhaystack-mobile/lib/history/location_popup.dart b/openhaystack-mobile/lib/history/location_popup.dart new file mode 100644 index 0000000..7ae7c43 --- /dev/null +++ b/openhaystack-mobile/lib/history/location_popup.dart @@ -0,0 +1,49 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_map/plugin_api.dart'; +import 'package:latlong2/latlong.dart'; + +class LocationPopup extends Marker { + /// The location to display. + LatLng location; + /// The time stamp the location was recorded. + DateTime time; + + /// Displays a small popup window with the coordinates at [location] and + /// the [time] in a human readable format. + LocationPopup({ + Key? key, + required this.location, + required this.time, + }) : super( + key: key, + width: 200, + height: 150, + point: location, + builder: (ctx) => Padding( + padding: const EdgeInsets.only(bottom: 80), + child: InkWell( + onTap: () { /* NOOP */ }, + child: Card( + child: Padding( + padding: const EdgeInsets.all(12.0), + child: Column( + children: [ + Text( + time.toLocal().toString().substring(0, 19), + style: const TextStyle(fontWeight: FontWeight.bold), + ), + Text( + 'Lat: ${location.round(decimals: 2).latitude}, ' + 'Lng: ${location.round(decimals: 2).longitude}', + style: const TextStyle(fontWeight: FontWeight.bold), + ), + ], + ), + ), + ), + ), + ), + rotate: true, + ); + +} diff --git a/openhaystack-mobile/lib/item_management/accessory_color_input.dart b/openhaystack-mobile/lib/item_management/accessory_color_input.dart new file mode 100644 index 0000000..af78179 --- /dev/null +++ b/openhaystack-mobile/lib/item_management/accessory_color_input.dart @@ -0,0 +1,41 @@ +import 'package:flutter/material.dart'; +import 'package:openhaystack_mobile/accessory/accessory_color_selector.dart'; + +class AccessoryColorInput extends StatelessWidget { + /// The inititial color value + Color color; + /// Callback called when the color is changed. Parameter is null + /// if color did not change + ValueChanged changeListener; + + /// Displays a color selection input that previews the current selection. + AccessoryColorInput({ + Key? key, + required this.color, + required this.changeListener, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return ListTile( + title: Row( + children: [ + const Text('Color: '), + Icon( + Icons.circle, + color: color, + ), + const Spacer(), + OutlinedButton( + child: const Text('Change'), + onPressed: () async { + Color? selectedColor = await AccessoryColorSelector + .showColorSelection(context, color); + changeListener(selectedColor); + }, + ), + ], + ), + ); + } +} diff --git a/openhaystack-mobile/lib/item_management/accessory_icon_input.dart b/openhaystack-mobile/lib/item_management/accessory_icon_input.dart new file mode 100644 index 0000000..d409cfc --- /dev/null +++ b/openhaystack-mobile/lib/item_management/accessory_icon_input.dart @@ -0,0 +1,44 @@ +import 'package:flutter/material.dart'; +import 'package:openhaystack_mobile/accessory/accessory_icon_selector.dart'; + +class AccessoryIconInput extends StatelessWidget { + /// The initial icon + IconData initialIcon; + /// The original icon name + String iconString; + /// The color of the icon + Color color; + /// Callback called when the icon is changed. Parameter is null + /// if icon did not change + ValueChanged changeListener; + + /// Displays an icon selection input that previews the current selection. + AccessoryIconInput({ + Key? key, + required this.initialIcon, + required this.iconString, + required this.color, + required this.changeListener, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return ListTile( + title: Row( + children: [ + const Text('Icon: '), + Icon(initialIcon), + const Spacer(), + OutlinedButton( + child: const Text('Change'), + onPressed: () async { + String? selectedIcon = await AccessoryIconSelector + .showIconSelection(context, iconString, color); + changeListener(selectedIcon); + }, + ), + ], + ), + ); + } +} diff --git a/openhaystack-mobile/lib/item_management/accessory_id_input.dart b/openhaystack-mobile/lib/item_management/accessory_id_input.dart new file mode 100644 index 0000000..0adb96e --- /dev/null +++ b/openhaystack-mobile/lib/item_management/accessory_id_input.dart @@ -0,0 +1,34 @@ +import 'package:flutter/material.dart'; + +class AccessoryIdInput extends StatelessWidget { + ValueChanged changeListener; + + /// Displays an input field with validation for an accessory ID. + AccessoryIdInput({ + Key? key, + required this.changeListener, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 4.0), + child: TextFormField( + decoration: const InputDecoration( + labelText: 'ID', + ), + validator: (value) { + if (value == null) { + return 'ID must be provided.'; + } + int? parsed = int.tryParse(value); + if (parsed == null) { + return 'ID must be an integer value.'; + } + return null; + }, + onSaved: changeListener, + ), + ); + } +} diff --git a/openhaystack-mobile/lib/item_management/accessory_name_input.dart b/openhaystack-mobile/lib/item_management/accessory_name_input.dart new file mode 100644 index 0000000..98fca18 --- /dev/null +++ b/openhaystack-mobile/lib/item_management/accessory_name_input.dart @@ -0,0 +1,40 @@ +import 'package:flutter/material.dart'; + +class AccessoryNameInput extends StatelessWidget { + ValueChanged? onSaved; + ValueChanged? onChanged; + /// The initial accessory name + String? initialValue; + + /// Displays an input field with validation for an accessory name. + AccessoryNameInput({ + Key? key, + this.onSaved, + this.initialValue, + this.onChanged, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 4.0), + child: TextFormField( + decoration: const InputDecoration( + labelText: 'Name', + ), + validator: (value) { + if (value == null) { + return 'Name must be provided.'; + } + if (value.isEmpty || value.length > 30) { + return 'Name must be a non empty string of max length 30.'; + } + return null; + }, + onSaved: onSaved, + onChanged: onChanged, + initialValue: initialValue, + ), + ); + } +} diff --git a/openhaystack-mobile/lib/item_management/accessory_pk_input.dart b/openhaystack-mobile/lib/item_management/accessory_pk_input.dart new file mode 100644 index 0000000..295d6d2 --- /dev/null +++ b/openhaystack-mobile/lib/item_management/accessory_pk_input.dart @@ -0,0 +1,41 @@ +import 'dart:convert'; + +import 'package:flutter/material.dart'; + +class AccessoryPrivateKeyInput extends StatelessWidget { + ValueChanged changeListener; + + /// Displays an input field with validation for a Base64 encoded accessory private key. + AccessoryPrivateKeyInput({ + Key? key, + required this.changeListener, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Padding( + padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 4.0), + child: TextFormField( + decoration: const InputDecoration( + hintText: 'SGVsbG8gV29ybGQhCg==', + labelText: 'Private Key (Base64)', + ), + validator: (value) { + if (value == null || value.isEmpty) { + return 'Private key must be provided.'; + } + try { + var removeEscaping = value + .replaceAll('\\', '').replaceAll('\n', ''); + base64Decode(removeEscaping); + } catch (e) { + return 'Value must be valid base64 key.'; + } + return null; + }, + onSaved: (newValue) => + changeListener(newValue?.replaceAll('\\', '').replaceAll('\n', '')), + ), + ); + } +} diff --git a/openhaystack-mobile/lib/item_management/item_creation.dart b/openhaystack-mobile/lib/item_management/item_creation.dart new file mode 100644 index 0000000..dfb6e70 --- /dev/null +++ b/openhaystack-mobile/lib/item_management/item_creation.dart @@ -0,0 +1,146 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:openhaystack_mobile/accessory/accessory_model.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:openhaystack_mobile/findMy/find_my_controller.dart'; +import 'package:openhaystack_mobile/item_management/accessory_color_input.dart'; +import 'package:openhaystack_mobile/item_management/accessory_icon_input.dart'; +import 'package:openhaystack_mobile/item_management/accessory_name_input.dart'; +import 'package:openhaystack_mobile/deployment/deployment_instructions.dart'; + +class AccessoryGeneration extends StatefulWidget { + + /// Displays a page to create a new accessory. + /// + /// The parameters of the new accessory can be input in text fields. + const AccessoryGeneration({ Key? key }) : super(key: key); + + @override + _AccessoryGenerationState createState() => _AccessoryGenerationState(); +} + +class _AccessoryGenerationState extends State { + + /// Stores the properties of the new accessory. + Accessory newAccessory = Accessory( + id: '', + name: '', + hashedPublicKey: '', + datePublished: DateTime.now(), + ); + + /// Stores the advertisement key of the newly created accessory. + String? advertisementKey; + + final _formKey = GlobalKey(); + + /// Creates a new accessory with a new key pair. + Future createAccessory(BuildContext context) async { + if (_formKey.currentState != null) { + if (_formKey.currentState!.validate()) { + _formKey.currentState!.save(); + + var keyPair = await FindMyController.generateKeyPair(); + advertisementKey = keyPair.getBase64AdvertisementKey(); + newAccessory.hashedPublicKey = keyPair.hashedPublicKey; + AccessoryRegistry accessoryRegistry = Provider.of(context, listen: false); + accessoryRegistry.addAccessory(newAccessory); + return true; + } + } + return false; + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Create new Accessory'), + ), + body: SingleChildScrollView( + child: Form( + key: _formKey, + child: Column( + children: [ + AccessoryNameInput( + onSaved: (name) => setState(() { + newAccessory.name = name!; + }), + ), + AccessoryIconInput( + initialIcon: newAccessory.icon, + iconString: newAccessory.rawIcon, + color: newAccessory.color, + changeListener: (String? selectedIcon) { + if (selectedIcon != null) { + setState(() { + newAccessory.setIcon(selectedIcon); + }); + } + }, + ), + AccessoryColorInput( + color: newAccessory.color, + changeListener: (Color? selectedColor) { + if (selectedColor != null) { + setState(() { + newAccessory.color = selectedColor; + }); + } + }, + ), + const ListTile( + title: Text('A secure key pair will be generated for you automatically.'), + ), + SwitchListTile( + value: newAccessory.isActive, + title: const Text('Is Active'), + onChanged: (checked) { + setState(() { + newAccessory.isActive = checked; + }); + }, + ), + SwitchListTile( + value: newAccessory.isDeployed, + title: const Text('Is Deployed'), + onChanged: (checked) { + setState(() { + newAccessory.isDeployed = checked; + }); + }, + ), + ListTile( + title: OutlinedButton( + child: const Text('Create only'), + onPressed: () async { + var created = await createAccessory(context); + if (created) { + Navigator.pop(context); + } + }, + ), + ), + ListTile( + title: ElevatedButton( + child: const Text('Create and Deploy'), + onPressed: () async { + var created = await createAccessory(context); + if (created) { + Navigator.pushReplacement( + context, + MaterialPageRoute(builder: (context) => DeploymentInstructions( + advertisementKey: advertisementKey ?? '', + )), + ); + } + }, + ), + ), + ], + ), + ), + ), + ); + } +} diff --git a/openhaystack-mobile/lib/item_management/item_export.dart b/openhaystack-mobile/lib/item_management/item_export.dart new file mode 100644 index 0000000..e2a29f8 --- /dev/null +++ b/openhaystack-mobile/lib/item_management/item_export.dart @@ -0,0 +1,177 @@ +import 'dart:convert'; +import 'dart:io'; + +import 'package:flutter/material.dart'; +import 'package:flutter/foundation.dart'; +import 'package:path_provider/path_provider.dart'; +import 'package:provider/provider.dart'; +import 'package:openhaystack_mobile/accessory/accessory_dto.dart'; +import 'package:openhaystack_mobile/accessory/accessory_model.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:share_plus/share_plus.dart'; + +class ItemExportMenu extends StatelessWidget { + /// The accessory to export from + Accessory accessory; + + /// Displays a bottom sheet with export options. + /// + /// The accessory can be exported to a JSON file or the + /// key parameters can be exported separately. + ItemExportMenu({ + Key? key, + required this.accessory, + }) : super(key: key); + + /// Shows the export options for the [accessory]. + void showKeyExportSheet(BuildContext context, Accessory accessory) { + showModalBottomSheet(context: context, builder: (BuildContext context) { + return SafeArea( + child: ListView( + physics: const NeverScrollableScrollPhysics(), + shrinkWrap: true, + children: [ + ListTile( + trailing: IconButton( + onPressed: () { + _showKeyExplanationAlert(context); + }, + icon: const Icon(Icons.info), + ), + ), + ListTile( + title: const Text('Export All Accessories (JSON)'), + onTap: () async { + var accessories = Provider.of(context, listen: false).accessories; + await _exportAccessoriesAsJSON(accessories); + Navigator.pop(context); + }, + ), + ListTile( + title: const Text('Export Accessory (JSON)'), + onTap: () async { + await _exportAccessoriesAsJSON([accessory]); + Navigator.pop(context); + }, + ), + ListTile( + title: const Text('Export Hashed Advertisement Key (Base64)'), + onTap: () async { + var advertisementKey = await accessory.getHashedAdvertisementKey(); + Share.share(advertisementKey); + Navigator.pop(context); + }, + ), + ListTile( + title: const Text('Export Advertisement Key (Base64)'), + onTap: () async { + var advertisementKey = await accessory.getAdvertisementKey(); + Share.share(advertisementKey); + Navigator.pop(context); + }, + ), + ListTile( + title: const Text('Export Private Key (Base64)'), + onTap: () async { + var privateKey = await accessory.getPrivateKey(); + Share.share(privateKey); + Navigator.pop(context); + }, + ), + ], + ), + ); + }); + } + + /// Export the serialized [accessories] as a JSON file. + /// + /// The OpenHaystack export format is used for interoperability with + /// the desktop app. + Future _exportAccessoriesAsJSON(List accessories) async { + // Create temporary directory to store export file + Directory tempDir = await getTemporaryDirectory(); + String path = tempDir.path; + // Convert accessories to export format + List exportAccessories = []; + for (Accessory accessory in accessories) { + String privateKey = await accessory.getPrivateKey(); + exportAccessories.add(AccessoryDTO( + id: int.tryParse(accessory.id) ?? 0, + colorComponents: [ + accessory.color.red / 255, + accessory.color.green / 255, + accessory.color.blue / 255, + accessory.color.opacity, + ], + name: accessory.name, + lastDerivationTimestamp: accessory.lastDerivationTimestamp, + symmetricKey: accessory.symmetricKey, + updateInterval: accessory.updateInterval, + privateKey: privateKey, + icon: accessory.rawIcon, + isDeployed: accessory.isDeployed, + colorSpaceName: 'kCGColorSpaceSRGB', + usesDerivation: accessory.usesDerivation, + oldestRelevantSymmetricKey: accessory.oldestRelevantSymmetricKey, + isActive: accessory.isActive, + )); + } + // Create file and write accessories as json + const filename = 'accessories.json'; + File file = File('$path/$filename'); + JsonEncoder encoder = const JsonEncoder.withIndent(' '); // format output + String encodedAccessories = encoder.convert(exportAccessories); + await file.writeAsString(encodedAccessories); + // Share export file over os share dialog + Share.shareFiles( + [file.path], + mimeTypes: ['application/json'], + subject: filename, + ); + } + + /// Show an explanation how the different key types are used. + Future _showKeyExplanationAlert(BuildContext context) async { + return showDialog( + context: context, + builder: (BuildContext context) { + return AlertDialog( + title: const Text('Key Overview'), + content: SingleChildScrollView( + child: ListBody( + children: const [ + Text('Private Key:', style: TextStyle(fontWeight: FontWeight.bold)), + Text('Secret key used for location report decryption.'), + Text('Advertisement Key:', style: TextStyle(fontWeight: FontWeight.bold)), + Text('Shortened public key sent out over Bluetooth.'), + Text('Hashed Advertisement Key:', style: TextStyle(fontWeight: FontWeight.bold)), + Text('Used to retrieve location reports from the server'), + Text('Accessory:', style: TextStyle(fontWeight: FontWeight.bold)), + Text('A file containing all information about the accessory.'), + ], + ), + ), + actions: [ + TextButton( + child: const Text('Close'), + onPressed: () { + Navigator.of(context).pop(); + }, + ), + ], + ); + }, + ); + } + + @override + Widget build(BuildContext context) { + return IconButton( + onPressed: () { + showKeyExportSheet(context, accessory); + }, + icon: const Icon(Icons.open_in_new), + ); + } +} diff --git a/openhaystack-mobile/lib/item_management/item_file_import.dart b/openhaystack-mobile/lib/item_management/item_file_import.dart new file mode 100644 index 0000000..9740fdb --- /dev/null +++ b/openhaystack-mobile/lib/item_management/item_file_import.dart @@ -0,0 +1,280 @@ +import 'dart:convert'; +import 'dart:io'; + +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:openhaystack_mobile/accessory/accessory_dto.dart'; +import 'package:openhaystack_mobile/accessory/accessory_icon_model.dart'; +import 'package:openhaystack_mobile/accessory/accessory_model.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:openhaystack_mobile/findMy/find_my_controller.dart'; +import 'package:openhaystack_mobile/item_management/loading_spinner.dart'; + +class ItemFileImport extends StatefulWidget { + /// The path to the file to import from. + final String filePath; + + /// Lets the user select which accessories to import from a file. + /// + /// Displays the accessories contained in the import file. + /// The user can then select the accessories to import. + const ItemFileImport({ + Key? key, + required this.filePath, + }) : super(key: key); + + @override + _ItemFileImportState createState() => _ItemFileImportState(); +} + +class _ItemFileImportState extends State { + /// The accessory information stored in the file + List? accessories; + /// Stores which accessories are selected. + List? selected; + /// Stores which accessory details are expanded + List? expanded; + + /// Flag if the passed file can not be imported. + bool hasError = false; + /// Stores the reason for the error condition. + String? errorText; + + @override + void initState() { + super.initState(); + + _initStateAsync(widget.filePath); + } + + void _initStateAsync(String filePath) async { + var isValidPath = await _validateFilePath(filePath); + + if (!isValidPath) { + setState(() { + hasError = true; + errorText = 'Invalid file path. Please select another file.'; + }); + + return; + } + + // Parse the JSON file and read all contained accessories + try { + var accessoryDTOs = await _parseAccessories(filePath); + + setState(() { + accessories = accessoryDTOs; + selected = accessoryDTOs.map((_) => true).toList(); + expanded = accessoryDTOs.map((_) => false).toList(); + }); + } catch (e) { + setState(() { + hasError = true; + errorText = 'Could not parse JSON file. Please check if the file is formatted correctly.'; + }); + } + } + + /// Validate that the file path is a valid path and the file exists. + Future _validateFilePath(String filePath) async { + if (filePath.isEmpty) { + return false; + } + File file = File(filePath); + var fileExists = await file.exists(); + + return fileExists; + } + + /// Parse the JSON encoded accessories from the file stored at [filePath]. + Future> _parseAccessories(String filePath) async { + File file = File(filePath); + String encodedContent = await file.readAsString(); + + List content = jsonDecode(encodedContent); + var accessoryDTOs = content + .map((json) => AccessoryDTO.fromJson(json)) + .toList(); + + return accessoryDTOs; + } + + /// Import the selected accessories. + Future _importSelectedAccessories() async { + if (accessories == null) { + return; // File not parsed. Do nothing. + } + + var registry = Provider.of(context, listen: false); + + for (var i = 0; i < accessories!.length; i++) { + var accessoryDTO = accessories![i]; + var shouldImport = selected?[i] ?? false; + + if (shouldImport) { + await _importAccessory(registry, accessoryDTO); + } + } + + var nrOfImports = selected?.fold(0, + (previousValue, element) => element ? previousValue + 1 : previousValue) ?? 0; + if (nrOfImports > 0) { + var snackbar = SnackBar( + content: Text('Successfully imported ${nrOfImports.toString()} accessories.'), + ); + ScaffoldMessenger.of(context).showSnackBar(snackbar); + } + } + + /// Import a specific [accessory] by converting the DTO to the internal representation. + Future _importAccessory(AccessoryRegistry registry, AccessoryDTO accessoryDTO) async { + Color color = Colors.grey; + if (accessoryDTO.colorSpaceName == 'kCGColorSpaceSRGB' && accessoryDTO.colorComponents.length == 4) { + var colors = accessoryDTO.colorComponents; + int red = (colors[0] * 255).round(); + int green = (colors[1] * 255).round(); + int blue = (colors[2] * 255).round(); + double opacity = colors[3]; + color = Color.fromRGBO(red, green, blue, opacity); + } + + String icon = 'mappin'; + if (AccessoryIconModel.icons.contains(accessoryDTO.icon)) { + icon = accessoryDTO.icon; + } + + var keyPair = await FindMyController.importKeyPair(accessoryDTO.privateKey); + + Accessory newAccessory = Accessory( + datePublished: DateTime.now(), + hashedPublicKey: keyPair.hashedPublicKey, + id: accessoryDTO.id.toString(), + name: accessoryDTO.name, + color: color, + icon: icon, + isActive: accessoryDTO.isActive, + isDeployed: accessoryDTO.isDeployed, + lastLocation: null, + lastDerivationTimestamp: accessoryDTO.lastDerivationTimestamp, + symmetricKey: accessoryDTO.symmetricKey, + updateInterval: accessoryDTO.updateInterval, + usesDerivation: accessoryDTO.usesDerivation, + oldestRelevantSymmetricKey: accessoryDTO.oldestRelevantSymmetricKey, + ); + + registry.addAccessory(newAccessory); + } + + @override + Widget build(BuildContext context) { + if (hasError) { + return _buildScaffold(Padding( + padding: const EdgeInsets.all(16.0), + child: Column( + children: [ + Text( + 'An error occured.', + style: Theme.of(context).textTheme.headline5, + ), + Padding( + padding: const EdgeInsets.only(top: 8.0), + child: Text(errorText ?? 'An unknown error occured. Please try again.'), + ), + ], + ), + )); + } + + if (accessories == null) { + return _buildScaffold(const LoadingSpinner()); + } + + return _buildScaffold( + SingleChildScrollView( + child: ExpansionPanelList( + expansionCallback: (int index, bool isExpanded) { + setState(() { + expanded?[index] = !isExpanded; + }); + }, + children: accessories?.asMap().map((idx, accessory) => MapEntry(idx, ExpansionPanel( + headerBuilder: (BuildContext context, bool isExpanded) + => ListTile( + leading: Checkbox( + value: selected?[idx] ?? false, + onChanged: (newState) { + if (newState != null) { + setState(() { + selected?[idx] = newState; + }); + } + }), + title: Text(accessory.name), + ), + body: Padding( + padding: const EdgeInsets.symmetric(horizontal: 24.0, vertical: 8.0), + child: Column( + children: [ + _buildProperty('ID', accessory.id.toString()), + _buildProperty('Name', accessory.name), + _buildProperty('Color', accessory.colorComponents.toString()), + _buildProperty('Icon', accessory.icon), + _buildProperty('privateKey', accessory.privateKey.replaceRange( + 4, + accessory.privateKey.length - 4, + '*'*(accessory.privateKey.length - 8), + )), + _buildProperty('isActive', accessory.isActive.toString()), + _buildProperty('isDeployed', accessory.isDeployed.toString()), + _buildProperty('usesDerivation', accessory.usesDerivation.toString()), + ], + ), + ), + isExpanded: expanded?[idx] ?? false, + ))).values.toList() ?? [], + ), + ), + ); + } + + /// Display a key-value property. + Widget _buildProperty(String key, String value) { + return Row( + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + Text( + '$key: ', + style: const TextStyle(fontWeight: FontWeight.bold), + ), + Flexible(child: Text(value)), + ], + ); + } + + /// Surround the [body] widget with a [Scaffold] widget. + Widget _buildScaffold(Widget body) { + return Scaffold( + appBar: AppBar( + title: const Text('Select Accessories'), + actions: [ + TextButton( + onPressed: () { + if (accessories != null) { + _importSelectedAccessories(); + Navigator.pop(context); + } + }, + child: Text( + 'Import', + style: TextStyle( + color: accessories == null ? Colors.grey : Colors.white, + ), + ), + ), + ], + ), + body: SafeArea(child: body), + ); + } +} diff --git a/openhaystack-mobile/lib/item_management/item_import.dart b/openhaystack-mobile/lib/item_management/item_import.dart new file mode 100644 index 0000000..6b7730c --- /dev/null +++ b/openhaystack-mobile/lib/item_management/item_import.dart @@ -0,0 +1,143 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:openhaystack_mobile/accessory/accessory_model.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:openhaystack_mobile/findMy/find_my_controller.dart'; +import 'package:openhaystack_mobile/item_management/accessory_color_input.dart'; +import 'package:openhaystack_mobile/item_management/accessory_icon_input.dart'; +import 'package:openhaystack_mobile/item_management/accessory_id_input.dart'; +import 'package:openhaystack_mobile/item_management/accessory_name_input.dart'; +import 'package:openhaystack_mobile/item_management/accessory_pk_input.dart'; + +class AccessoryImport extends StatefulWidget { + + /// Displays an input form to manually import an accessory. + const AccessoryImport({Key? key}) : super(key: key); + + @override + State createState() => _AccessoryImportState(); +} + +class _AccessoryImportState extends State { + + /// Stores the properties of the accessory to import. + Accessory newAccessory = Accessory( + id: '', + name: '', + hashedPublicKey: '', + datePublished: DateTime.now(), + ); + String privateKey = ''; + + final _formKey = GlobalKey(); + + /// Imports the private key to the key store. + Future importKey(BuildContext context) async { + if (_formKey.currentState != null) { + if (_formKey.currentState!.validate()) { + _formKey.currentState!.save(); + try { + var keyPair = await FindMyController.importKeyPair(privateKey); + newAccessory.hashedPublicKey = keyPair.hashedPublicKey; + } catch (e) { + ScaffoldMessenger.of(context).showSnackBar( + const SnackBar( + content: Text('Key import failed. Check if private key is correct.'), + ), + ); + } + var keyPair = await FindMyController.importKeyPair(privateKey); + newAccessory.hashedPublicKey = keyPair.hashedPublicKey; + AccessoryRegistry accessoryRegistry = Provider.of(context, listen: false); + accessoryRegistry.addAccessory(newAccessory); + Navigator.pop(context); + } + } + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Import Accessory'), + ), + body: SingleChildScrollView( + child: Form( + key: _formKey, + child: Column( + children: [ + const ListTile( + title: Text('Please enter the accessory parameters. They can be found in the exported accessory file.'), + ), + AccessoryIdInput( + changeListener: (id) => setState(() { + newAccessory.id = id!; + }), + ), + AccessoryNameInput( + onSaved: (name) => setState(() { + newAccessory.name = name!; + }), + ), + AccessoryIconInput( + initialIcon: newAccessory.icon, + iconString: newAccessory.rawIcon, + color: newAccessory.color, + changeListener: (String? selectedIcon) { + if (selectedIcon != null) { + setState(() { + newAccessory.setIcon(selectedIcon); + }); + } + }, + ), + AccessoryColorInput( + color: newAccessory.color, + changeListener: (Color? selectedColor) { + if (selectedColor != null) { + setState(() { + newAccessory.color = selectedColor; + }); + } + }, + ), + AccessoryPrivateKeyInput( + changeListener: (String? privateKeyVal) async { + if (privateKeyVal != null) { + setState(() { + privateKey = privateKeyVal; + }); + } + }, + ), + SwitchListTile( + value: newAccessory.isActive, + title: const Text('Is Active'), + onChanged: (checked) { + setState(() { + newAccessory.isActive = checked; + }); + }, + ), + SwitchListTile( + value: newAccessory.isDeployed, + title: const Text('Is Deployed'), + onChanged: (checked) { + setState(() { + newAccessory.isDeployed = checked; + }); + }, + ), + ListTile( + title: ElevatedButton( + child: const Text('Import'), + onPressed: () => importKey(context), + ), + ), + ], + ), + ), + ), + ); + } +} diff --git a/openhaystack-mobile/lib/item_management/item_management.dart b/openhaystack-mobile/lib/item_management/item_management.dart new file mode 100644 index 0000000..a490f95 --- /dev/null +++ b/openhaystack-mobile/lib/item_management/item_management.dart @@ -0,0 +1,59 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:openhaystack_mobile/accessory/accessory_detail.dart'; +import 'package:openhaystack_mobile/accessory/accessory_icon.dart'; +import 'package:openhaystack_mobile/accessory/no_accessories.dart'; +import 'package:openhaystack_mobile/item_management/item_export.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:intl/intl.dart'; + +class KeyManagement extends StatelessWidget { + + /// Displays a list of all accessories. + /// + /// Each accessory can be exported and is linked to a detail page. + const KeyManagement({ + Key? key, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Consumer( + builder: (context, accessoryRegistry, child) { + var accessories = accessoryRegistry.accessories; + + if (accessories.isEmpty) { + return const NoAccessoriesPlaceholder(); + } + + return Scrollbar( + child: ListView( + children: accessories.map((accessory) { + String lastSeen = accessory.datePublished != null + ? DateFormat('dd.MM.yyyy kk:mm').format(accessory.datePublished!) + : 'Unknown'; + return ListTile( + onTap: () { + Navigator.push( + context, + MaterialPageRoute(builder: (context) => AccessoryDetail( + accessory: accessory, + )), + ); + }, + dense: true, + title: Text(accessory.name), + subtitle: Text('Last seen: ' + lastSeen), + leading: AccessoryIcon( + icon: accessory.icon, + color: accessory.color, + ), + trailing: ItemExportMenu(accessory: accessory), + ); + }).toList(), + ), + ); + }, + ); + } +} diff --git a/openhaystack-mobile/lib/item_management/loading_spinner.dart b/openhaystack-mobile/lib/item_management/loading_spinner.dart new file mode 100644 index 0000000..8142f18 --- /dev/null +++ b/openhaystack-mobile/lib/item_management/loading_spinner.dart @@ -0,0 +1,21 @@ +import 'package:flutter/material.dart'; + +class LoadingSpinner extends StatelessWidget { + + /// Displays a centered loading spinner. + const LoadingSpinner({ Key? key }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Row( + mainAxisAlignment: MainAxisAlignment.center, + children: [Padding( + padding: const EdgeInsets.only(top: 20), + child: CircularProgressIndicator( + color: Theme.of(context).primaryColor, + semanticsLabel: 'Loading. Please wait.', + ), + )], + ); + } +} diff --git a/openhaystack-mobile/lib/item_management/new_item_action.dart b/openhaystack-mobile/lib/item_management/new_item_action.dart new file mode 100644 index 0000000..9716ca7 --- /dev/null +++ b/openhaystack-mobile/lib/item_management/new_item_action.dart @@ -0,0 +1,86 @@ +import 'package:file_picker/file_picker.dart'; +import 'package:flutter/material.dart'; +import 'package:openhaystack_mobile/item_management/item_creation.dart'; +import 'package:openhaystack_mobile/item_management/item_file_import.dart'; +import 'package:openhaystack_mobile/item_management/item_import.dart'; + +class NewKeyAction extends StatelessWidget { + /// If the action button is small. + final bool mini; + + /// Displays a floating button used to access the accessory creation menu. + /// + /// A new accessory can be created or an existing one imported manually. + const NewKeyAction({ + Key? key, + this.mini = false, + }) : super(key: key); + + /// Display a bottom sheet with creation options. + void showCreationSheet(BuildContext context) { + showModalBottomSheet(context: context, builder: (BuildContext context) { + return SafeArea( + child: ListView( + shrinkWrap: true, + children: [ + ListTile( + title: const Text('Import Accessory'), + leading: const Icon(Icons.import_export), + onTap: () { + Navigator.pushReplacement( + context, + MaterialPageRoute(builder: (context) => const AccessoryImport()), + ); + }, + ), + ListTile( + title: const Text('Import from JSON File'), + leading: const Icon(Icons.description), + onTap: () async { + FilePickerResult? result = await FilePicker.platform.pickFiles( + allowMultiple: false, + type: FileType.custom, + allowedExtensions: ['json'], + dialogTitle: 'Select accessory configuration', + ); + + if (result != null && result.paths.isNotEmpty) { + // File selected, dialog not canceled + String? filePath = result.paths[0]; + + if (filePath != null) { + Navigator.pushReplacement(context, MaterialPageRoute( + builder: (context) => ItemFileImport(filePath: filePath), + )); + } + } + }, + ), + ListTile( + title: const Text('Create new Accessory'), + leading: const Icon(Icons.add_box), + onTap: () { + Navigator.pushReplacement( + context, + MaterialPageRoute(builder: (context) => const AccessoryGeneration()), + ); + }, + ), + ], + ), + ); + }); + } + + @override + Widget build(BuildContext context) { + return FloatingActionButton( + mini: mini, + onPressed: () { + showCreationSheet(context); + }, + tooltip: 'Create', + child: const Icon(Icons.add), + ); + } +} diff --git a/openhaystack-mobile/lib/location/location_model.dart b/openhaystack-mobile/lib/location/location_model.dart new file mode 100644 index 0000000..c6b03c0 --- /dev/null +++ b/openhaystack-mobile/lib/location/location_model.dart @@ -0,0 +1,131 @@ +import 'dart:async'; + +import 'package:flutter/material.dart'; +import 'package:flutter/services.dart'; +import 'package:geocoding/geocoding.dart' as geocode; +import 'package:latlong2/latlong.dart'; +import 'package:location/location.dart'; + +class LocationModel extends ChangeNotifier { + LatLng? here; + geocode.Placemark? herePlace; + StreamSubscription? locationStream; + final Location _location = Location(); + bool initialLocationSet = false; + + /// Requests access to the device location from the user. + /// + /// Initializes the location services and requests location + /// access from the user if not granged. + /// Returns if location access was granted. + Future requestLocationAccess() async { + // Enable location service + var serviceEnabled = await _location.serviceEnabled(); + if (!serviceEnabled) { + serviceEnabled = await _location.requestService(); + if (!serviceEnabled) { + print('Could not enable location service.'); + return false; + } + } + + // Request location access from user if not permanently denied or already granted + var permissionGranted = await _location.hasPermission(); + if (permissionGranted == PermissionStatus.denied) { + permissionGranted = await _location.requestPermission(); + + } + + if (permissionGranted == PermissionStatus.granted) { + // Permission not granted + return true; + } else if (permissionGranted == PermissionStatus.grantedLimited) { + // Permission granted to access approximate location + return false; + } else { + // Permission not granted + return false; + } + } + + /// Requests location updates from the platform. + /// + /// Listeners will be notified about locaiton changes. + Future requestLocationUpdates() async { + var permissionGranted = await requestLocationAccess(); + if (permissionGranted) { + + // Handle future location updates + locationStream ??= _location.onLocationChanged.listen(_updateLocation); + + // Fetch the current location + var locationData = await _location.getLocation(); + _updateLocation(locationData); + } else { + initialLocationSet = true; + if (locationStream != null) { + locationStream?.cancel(); + locationStream = null; + } + _removeCurrentLocation(); + notifyListeners(); + } + } + + /// Updates the current location if new location data is available. + /// + /// Additionally updates the current address information to match + /// the new location. + void _updateLocation(LocationData locationData) { + if (locationData.latitude != null && locationData.longitude != null) { + // print('Locaiton here: ${locationData.latitude!}, ${locationData.longitude!}'); + here = LatLng(locationData.latitude!, locationData.longitude!); + initialLocationSet = true; + getAddress(here!) + .then((value) { + herePlace = value; + notifyListeners(); + }); + } else { + print('Received invalid location data: $locationData'); + } + notifyListeners(); + } + + /// Cancels the listening for location updates. + void cancelLocationUpdates() { + if (locationStream != null) { + locationStream?.cancel(); + locationStream = null; + } + _removeCurrentLocation(); + notifyListeners(); + } + + /// Resets the currently stored location and address information + void _removeCurrentLocation() { + here = null; + herePlace = null; + } + + /// Returns the address for a given geolocation (latitude & longitude). + /// + /// Only works on mobile platforms with their local APIs. + static Future getAddress(LatLng? location) async { + if (location == null) { + return null; + } + double lat = location.latitude; + double lng = location.longitude; + + try { + List placemarks = await geocode.placemarkFromCoordinates(lat, lng); + return placemarks.first; + } on MissingPluginException { + return null; + } on PlatformException { + return null; + } + } + +} diff --git a/openhaystack-mobile/lib/main.dart b/openhaystack-mobile/lib/main.dart new file mode 100644 index 0000000..196275b --- /dev/null +++ b/openhaystack-mobile/lib/main.dart @@ -0,0 +1,114 @@ +import 'dart:async'; +import 'dart:io'; + +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:receive_sharing_intent/receive_sharing_intent.dart'; +import 'package:openhaystack_mobile/dashboard/dashboard_desktop.dart'; +import 'package:openhaystack_mobile/dashboard/dashboard_mobile.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:openhaystack_mobile/item_management/item_file_import.dart'; +import 'package:openhaystack_mobile/location/location_model.dart'; +import 'package:openhaystack_mobile/preferences/user_preferences_model.dart'; +import 'package:openhaystack_mobile/splashscreen.dart'; + +void main() { + runApp(const MyApp()); +} + +class MyApp extends StatelessWidget { + const MyApp({Key? key}) : super(key: key); + + @override + Widget build(BuildContext context) { + return MultiProvider( + providers: [ + ChangeNotifierProvider(create: (ctx) => AccessoryRegistry()), + ChangeNotifierProvider(create: (ctx) => UserPreferences()), + ChangeNotifierProvider(create: (ctx) => LocationModel()), + ], + child: MaterialApp( + title: 'OpenHaystack', + theme: ThemeData( + primarySwatch: Colors.blue, + ), + darkTheme: ThemeData.dark(), + home: const AppLayout(), + ), + ); + } +} + +class AppLayout extends StatefulWidget { + const AppLayout({Key? key}) : super(key: key); + + @override + State createState() => _AppLayoutState(); +} + +class _AppLayoutState extends State { + StreamSubscription? _intentDataStreamSubscription; + + @override + initState() { + super.initState(); + + _intentDataStreamSubscription = ReceiveSharingIntent.getMediaStream() + .listen(handleFileSharingIntent, onError: print); + ReceiveSharingIntent.getInitialMedia() + .then(handleFileSharingIntent); + + var accessoryRegistry = Provider.of(context, listen: false); + accessoryRegistry.loadAccessories(); + } + + Future handleFileSharingIntent(List files) async { + // Received a sharing intent with a number of files. + // Import the accessories for each device in sequence. + // If no files are shared do nothing + for (var file in files) { + if (file.type == SharedMediaType.FILE) { + // On iOS the file:// prefix has to be stripped to access the file path + String path = Platform.isIOS + ? Uri.decodeComponent(file.path.replaceFirst('file://', '')) + : file.path; + Navigator.push(context, MaterialPageRoute( + builder: (context) => ItemFileImport(filePath: path), + )); + } + } + } + + @override + void dispose() { + _intentDataStreamSubscription?.cancel(); + super.dispose(); + } + + @override + void didChangeDependencies() { + // Precache logo for faster load times (e.g. on the splash screen) + precacheImage(const AssetImage('assets/OpenHaystackIcon.png'), context); + super.didChangeDependencies(); + } + + + @override + Widget build(BuildContext context) { + bool isInitialized = context.watch().initialized; + bool isLoading = context.watch().loading; + if (!isInitialized || isLoading) { + return const Splashscreen(); + } + + Size screenSize = MediaQuery.of(context).size; + Orientation orientation = MediaQuery.of(context).orientation; + + // TODO: More advanced media query handling + if (screenSize.width < 800) { + return const DashboardMobile(); + } else { + return const DashboardDesktop(); + } + } +} diff --git a/openhaystack-mobile/lib/map/map.dart b/openhaystack-mobile/lib/map/map.dart new file mode 100644 index 0000000..676286a --- /dev/null +++ b/openhaystack-mobile/lib/map/map.dart @@ -0,0 +1,171 @@ +import 'package:flutter/material.dart'; +import 'package:flutter_map/flutter_map.dart'; +import 'package:latlong2/latlong.dart'; +import 'package:provider/provider.dart'; +import 'package:openhaystack_mobile/accessory/accessory_icon.dart'; +import 'package:openhaystack_mobile/accessory/accessory_model.dart'; +import 'package:openhaystack_mobile/accessory/accessory_registry.dart'; +import 'package:openhaystack_mobile/location/location_model.dart'; + +class AccessoryMap extends StatefulWidget { + final MapController? mapController; + + /// Displays a map with all accessories at their latest position. + const AccessoryMap({ + Key? key, + this.mapController, + }): super(key: key); + + @override + _AccessoryMapState createState() => _AccessoryMapState(); +} + +class _AccessoryMapState extends State { + late MapController _mapController; + void Function()? cancelLocationUpdates; + void Function()? cancelAccessoryUpdates; + bool accessoryInitialized = false; + + @override + void initState() { + super.initState(); + _mapController = widget.mapController ?? MapController(); + + var accessoryRegistry = Provider.of(context, listen: false); + var locationModel = Provider.of(context, listen: false); + + // Resize map to fit all accessories at initial locaiton + fitToContent(accessoryRegistry.accessories, locationModel.here); + + // Fit map if first location is known + void listener () { + // Only use the first location, cancel further updates + cancelLocationUpdates?.call(); + fitToContent(accessoryRegistry.accessories, locationModel.here); + } + locationModel.addListener(listener); + cancelLocationUpdates = () => locationModel.removeListener(listener); + + // Fit map if accessories change? + } + + @override + void dispose() { + super.dispose(); + + cancelLocationUpdates?.call(); + cancelAccessoryUpdates?.call(); + } + + void fitToContent(List accessories, LatLng? hereLocation) async { + // Delay to prevent race conditions + await Future.delayed(const Duration(milliseconds: 500)); + + List points = []; + if (hereLocation != null) { + _mapController.move(hereLocation, _mapController.zoom); + points = [hereLocation]; + } + + List accessoryPoints = accessories + .where((accessory) => accessory.lastLocation != null) + .map((accessory) => accessory.lastLocation!) + .toList(); + _mapController.fitBounds( + LatLngBounds.fromPoints([...points, ...accessoryPoints]), + options: const FitBoundsOptions( + padding: EdgeInsets.all(25), + )); + } + + @override + Widget build(BuildContext context) { + return Consumer2( + builder: (BuildContext context, AccessoryRegistry accessoryRegistry, LocationModel locationModel, Widget? child) { + // Zoom map to fit all accessories on first accessory update + var accessories = accessoryRegistry.accessories; + if (!accessoryInitialized && accessoryRegistry.initialLoadFinished) { + fitToContent(accessories, locationModel.here); + + accessoryInitialized = true; + } + + return FlutterMap( + mapController: _mapController, + options: MapOptions( + center: locationModel.here ?? LatLng(49.874739, 8.656280), + zoom: 13.0, + interactiveFlags: + InteractiveFlag.pinchZoom | InteractiveFlag.drag | + InteractiveFlag.doubleTapZoom | InteractiveFlag.flingAnimation | + InteractiveFlag.pinchMove, + ), + layers: [ + TileLayerOptions( + backgroundColor: Theme.of(context).colorScheme.surface, + tileBuilder: (context, child, tile) { + var isDark = (Theme.of(context).brightness == Brightness.dark); + return isDark ? ColorFiltered( + colorFilter: const ColorFilter.matrix([ + -1, 0, 0, 0, 255, + 0, -1, 0, 0, 255, + 0, 0, -1, 0, 255, + 0, 0, 0, 1, 0, + ]), + child: child, + ) : child; + }, + urlTemplate: "https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", + subdomains: ['a', 'b', 'c'], + attributionBuilder: (_) { + return const Text("© OpenStreetMap contributors"); + }, + ), + MarkerLayerOptions( + markers: [ + ...accessories + .where((accessory) => accessory.lastLocation != null) + .map((accessory) => Marker( + rotate: true, + width: 50, + height: 50, + point: accessory.lastLocation!, + builder: (ctx) => + AccessoryIcon(icon: accessory.icon, color: accessory.color), + )).toList(), + ], + ), + MarkerLayerOptions( + markers: [ + if (locationModel.here != null) Marker( + width: 25.0, + height: 25.0, + point: locationModel.here!, + builder: (ctx) => Stack( + children: [ + Container( + decoration: BoxDecoration( + color: Theme.of(context).colorScheme.surface, + shape: BoxShape.circle, + ), + ), + Padding( + padding: const EdgeInsets.all(5), + child: Container( + decoration: BoxDecoration( + color: Theme.of(context).indicatorColor, + shape: BoxShape.circle, + ), + ), + ), + ], + ), + ), + ] + ), + ], + ); + } + ); + } +} diff --git a/openhaystack-mobile/lib/placeholder/avatar_placeholder.dart b/openhaystack-mobile/lib/placeholder/avatar_placeholder.dart new file mode 100644 index 0000000..f844f4f --- /dev/null +++ b/openhaystack-mobile/lib/placeholder/avatar_placeholder.dart @@ -0,0 +1,23 @@ +import 'package:flutter/material.dart'; + +class AvatarPlaceholder extends StatelessWidget { + final double size; + + /// Displays a placeholder for the actual avatar, occupying the same layout space. + const AvatarPlaceholder({ + Key? key, + this.size = 24, + }) : super(key: key); + + @override + Widget build(BuildContext context) { + return Container( + width: size * 3 / 2, + height: size * 3 / 2, + decoration: const BoxDecoration( + color: Color.fromARGB(255, 200, 200, 200), + shape: BoxShape.circle, + ), + ); + } +} diff --git a/openhaystack-mobile/lib/placeholder/text_placeholder.dart b/openhaystack-mobile/lib/placeholder/text_placeholder.dart new file mode 100644 index 0000000..4c594c2 --- /dev/null +++ b/openhaystack-mobile/lib/placeholder/text_placeholder.dart @@ -0,0 +1,75 @@ +import 'package:flutter/material.dart'; + +class TextPlaceholder extends StatefulWidget { + final double maxWidth; + final double? width; + final double? height; + final bool animated; + + /// Displays a placeholder for the actual text, occupying the same layout space. + /// + /// An optional loading animation is provided. + const TextPlaceholder({ + Key? key, + this.maxWidth = double.infinity, + this.width, + this.height = 10, + this.animated = true, + }) : super(key: key); + + @override + _TextPlaceholderState createState() => _TextPlaceholderState(); +} + +class _TextPlaceholderState extends State with SingleTickerProviderStateMixin{ + late Animation animation; + late AnimationController controller; + + @override + void initState() { + super.initState(); + + controller = AnimationController( + vsync: this, + duration: const Duration(seconds: 1), + ); + animation = Tween(begin: 0, end: 1).animate(controller) + ..addListener(() { + setState(() {}); // Trigger UI update with current value + }) + ..addStatusListener((status) { + if (status == AnimationStatus.completed) { + controller.reverse(); + } else if (status == AnimationStatus.dismissed) { + controller.forward(); + } + }); + + controller.forward(); + } + + @override + void dispose() { + controller.dispose(); + super.dispose(); + } + + @override + Widget build(BuildContext context) { + return Container( + constraints: BoxConstraints(maxWidth: widget.maxWidth), + height: widget.height, + width: widget.width, + decoration: BoxDecoration( + gradient: widget.animated ? LinearGradient( + begin: Alignment.centerLeft, + end: Alignment.centerRight, + stops: [0.0, animation.value, 1.0], + colors: const [Color.fromARGB(255, 200, 200, 200), Color.fromARGB(255, 230, 230, 230), Color.fromARGB(255, 200, 200, 200)], + ): null, + color: widget.animated ? null : const Color.fromARGB(255, 200, 200, 200), + borderRadius: const BorderRadius.all(Radius.circular(8)), + ), + ); + } +} diff --git a/openhaystack-mobile/lib/preferences/preferences_page.dart b/openhaystack-mobile/lib/preferences/preferences_page.dart new file mode 100644 index 0000000..6dd1e66 --- /dev/null +++ b/openhaystack-mobile/lib/preferences/preferences_page.dart @@ -0,0 +1,58 @@ +import 'package:flutter/material.dart'; +import 'package:provider/provider.dart'; +import 'package:openhaystack_mobile/location/location_model.dart'; +import 'package:openhaystack_mobile/preferences/user_preferences_model.dart'; + +class PreferencesPage extends StatefulWidget { + + /// Displays this preferences page with information about the app. + const PreferencesPage({ Key? key }) : super(key: key); + + @override + _PreferencesPageState createState() => _PreferencesPageState(); +} + +class _PreferencesPageState extends State { + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: const Text('Settings'), + ), + body: Consumer( + builder: (BuildContext context, UserPreferences prefs, Widget? child) { + return Center( + child: Container( + constraints: const BoxConstraints(maxWidth: 500), + child: ListView( + children: [ + SwitchListTile( + title: const Text('Show this devices location'), + value: !prefs.locationPreferenceKnown! || (prefs.locationAccessWanted ?? true), + onChanged: (showLocation) { + prefs.setLocationPreference(showLocation); + var locationModel = Provider.of(context, listen: false); + if (showLocation) { + locationModel.requestLocationUpdates(); + } else { + locationModel.cancelLocationUpdates(); + } + }, + ), + ListTile( + title: TextButton( + child: const Text('About'), + onPressed: () => showAboutDialog( + context: context, + ), + ), + ), + ], + ), + ), + ); + }, + ), + ); + } +} diff --git a/openhaystack-mobile/lib/preferences/user_preferences_model.dart b/openhaystack-mobile/lib/preferences/user_preferences_model.dart new file mode 100644 index 0000000..83466ec --- /dev/null +++ b/openhaystack-mobile/lib/preferences/user_preferences_model.dart @@ -0,0 +1,67 @@ +import 'package:flutter/foundation.dart'; +import 'package:shared_preferences/shared_preferences.dart'; + +const introductionShownKey = 'INTRODUCTION_SHOWN'; +const locationPreferenceKnownKey = 'LOCATION_PREFERENCE_KNOWN'; +const locationAccessWantedKey = 'LOCATION_PREFERENCE_WANTED'; + +class UserPreferences extends ChangeNotifier { + + /// If these settings are initialized. + bool initialized = false; + /// The shared preferences storage. + SharedPreferences? _prefs; + + /// Manages information about the users preferences. + UserPreferences() { + _initializeAsync(); + } + + /// Initialize shared preferences access + void _initializeAsync() async { + _prefs = await SharedPreferences.getInstance(); + + // For Debugging: + // await prefs.clear(); + + initialized = true; + notifyListeners(); + } + + /// Returns if the introduction should be shown. + bool? shouldShowIntroduction() { + if (_prefs == null) { + return null; + } else { + if (!_prefs!.containsKey(introductionShownKey)) { + return true; // Initial start of the app + } + return _prefs?.getBool(introductionShownKey); + } + } + + /// Returns if the user's locaiton preference is known. + bool? get locationPreferenceKnown { + return _prefs?.getBool(locationPreferenceKnownKey) ?? false; + } + + /// Returns if the user desires location access. + bool? get locationAccessWanted { + return _prefs?.getBool(locationAccessWantedKey); + } + + /// Updates the location access preference of the user. + Future setLocationPreference(bool locationAccessWanted) async { + _prefs ??= await SharedPreferences.getInstance(); + var success = await _prefs!.setBool(locationPreferenceKnownKey, true); + if (!success) { + return Future.value(false); + } else { + var result = await _prefs!.setBool(locationAccessWantedKey, locationAccessWanted); + notifyListeners(); + return result; + } + + } + +} diff --git a/openhaystack-mobile/lib/splashscreen.dart b/openhaystack-mobile/lib/splashscreen.dart new file mode 100644 index 0000000..c54409a --- /dev/null +++ b/openhaystack-mobile/lib/splashscreen.dart @@ -0,0 +1,28 @@ +import 'package:flutter/material.dart'; + +class Splashscreen extends StatelessWidget { + + /// Display a fullscreen splashscreen to cover loading times. + const Splashscreen({ Key? key }) : super(key: key); + + @override + Widget build(BuildContext context) { + Size screenSize = MediaQuery.of(context).size; + Orientation orientation = MediaQuery.of(context).orientation; + + var maxScreen = orientation == Orientation.portrait ? screenSize.width : screenSize.height; + var maxSize = maxScreen * 0.4; + + return Scaffold( + body: Center( + child: Container( + constraints: BoxConstraints(maxWidth: maxSize, maxHeight: maxSize), + // TODO: Update app icon accordingly (https://docs.flutter.dev/development/ui/assets-and-images#platform-assets) + child: const Image( + width: 1800, + image: AssetImage('assets/OpenHaystackIcon.png')), + ), + ), + ); + } +} diff --git a/openhaystack-mobile/linux/.gitignore b/openhaystack-mobile/linux/.gitignore new file mode 100644 index 0000000..d3896c9 --- /dev/null +++ b/openhaystack-mobile/linux/.gitignore @@ -0,0 +1 @@ +flutter/ephemeral diff --git a/openhaystack-mobile/linux/CMakeLists.txt b/openhaystack-mobile/linux/CMakeLists.txt new file mode 100644 index 0000000..d75323e --- /dev/null +++ b/openhaystack-mobile/linux/CMakeLists.txt @@ -0,0 +1,116 @@ +cmake_minimum_required(VERSION 3.10) +project(runner LANGUAGES CXX) + +set(BINARY_NAME "openhaystack_mobile") +set(APPLICATION_ID "de.seemoo.linux.openhaystack") + +cmake_policy(SET CMP0063 NEW) + +set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") + +# Root filesystem for cross-building. +if(FLUTTER_TARGET_PLATFORM_SYSROOT) + set(CMAKE_SYSROOT ${FLUTTER_TARGET_PLATFORM_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH ${CMAKE_SYSROOT}) + set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) + set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) + set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) +endif() + +# Configure build options. +if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") +endif() + +# Compilation settings that should be applied to most targets. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_14) + target_compile_options(${TARGET} PRIVATE -Wall -Werror) + target_compile_options(${TARGET} PRIVATE "$<$>:-O3>") + target_compile_definitions(${TARGET} PRIVATE "$<$>:NDEBUG>") +endfunction() + +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") + +# Flutter library and tool build rules. +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) + +add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") + +# Application build +add_executable(${BINARY_NAME} + "main.cc" + "my_application.cc" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" +) +apply_standard_settings(${BINARY_NAME}) +target_link_libraries(${BINARY_NAME} PRIVATE flutter) +target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) +add_dependencies(${BINARY_NAME} flutter_assemble) +# Only the install-generated bundle's copy of the executable will launch +# correctly, since the resources must in the right relative locations. To avoid +# people trying to run the unbundled copy, put it in a subdirectory instead of +# the default top-level location. +set_target_properties(${BINARY_NAME} + PROPERTIES + RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/intermediates_do_not_run" +) + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# By default, "installing" just makes a relocatable bundle in the build +# directory. +set(BUILD_BUNDLE_DIR "${PROJECT_BINARY_DIR}/bundle") +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +# Start with a clean build bundle directory every time. +install(CODE " + file(REMOVE_RECURSE \"${BUILD_BUNDLE_DIR}/\") + " COMPONENT Runtime) + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}/lib") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +if(PLUGIN_BUNDLED_LIBRARIES) + install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +if(NOT CMAKE_BUILD_TYPE MATCHES "Debug") + install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() diff --git a/openhaystack-mobile/linux/flutter/CMakeLists.txt b/openhaystack-mobile/linux/flutter/CMakeLists.txt new file mode 100644 index 0000000..33fd580 --- /dev/null +++ b/openhaystack-mobile/linux/flutter/CMakeLists.txt @@ -0,0 +1,87 @@ +cmake_minimum_required(VERSION 3.10) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. + +# Serves the same purpose as list(TRANSFORM ... PREPEND ...), +# which isn't available in 3.10. +function(list_prepend LIST_NAME PREFIX) + set(NEW_LIST "") + foreach(element ${${LIST_NAME}}) + list(APPEND NEW_LIST "${PREFIX}${element}") + endforeach(element) + set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE) +endfunction() + +# === Flutter Library === +# System-level dependencies. +find_package(PkgConfig REQUIRED) +pkg_check_modules(GTK REQUIRED IMPORTED_TARGET gtk+-3.0) +pkg_check_modules(GLIB REQUIRED IMPORTED_TARGET glib-2.0) +pkg_check_modules(GIO REQUIRED IMPORTED_TARGET gio-2.0) + +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_linux_gtk.so") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/lib/libapp.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "fl_basic_message_channel.h" + "fl_binary_codec.h" + "fl_binary_messenger.h" + "fl_dart_project.h" + "fl_engine.h" + "fl_json_message_codec.h" + "fl_json_method_codec.h" + "fl_message_codec.h" + "fl_method_call.h" + "fl_method_channel.h" + "fl_method_codec.h" + "fl_method_response.h" + "fl_plugin_registrar.h" + "fl_plugin_registry.h" + "fl_standard_message_codec.h" + "fl_standard_method_codec.h" + "fl_string_codec.h" + "fl_value.h" + "fl_view.h" + "flutter_linux.h" +) +list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/flutter_linux/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}") +target_link_libraries(flutter INTERFACE + PkgConfig::GTK + PkgConfig::GLIB + PkgConfig::GIO +) +add_dependencies(flutter flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CMAKE_CURRENT_BINARY_DIR}/_phony_ + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.sh" + ${FLUTTER_TARGET_PLATFORM} ${CMAKE_BUILD_TYPE} + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} +) diff --git a/openhaystack-mobile/linux/flutter/generated_plugin_registrant.cc b/openhaystack-mobile/linux/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..c866f10 --- /dev/null +++ b/openhaystack-mobile/linux/flutter/generated_plugin_registrant.cc @@ -0,0 +1,23 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + +#include +#include +#include + +void fl_register_plugins(FlPluginRegistry* registry) { + g_autoptr(FlPluginRegistrar) flutter_secure_storage_linux_registrar = + fl_plugin_registry_get_registrar_for_plugin(registry, "FlutterSecureStorageLinuxPlugin"); + flutter_secure_storage_linux_plugin_register_with_registrar(flutter_secure_storage_linux_registrar); + g_autoptr(FlPluginRegistrar) maps_launcher_registrar = + fl_plugin_registry_get_registrar_for_plugin(registry, "MapsLauncherPlugin"); + maps_launcher_plugin_register_with_registrar(maps_launcher_registrar); + g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar = + fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin"); + url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar); +} diff --git a/openhaystack-mobile/linux/flutter/generated_plugin_registrant.h b/openhaystack-mobile/linux/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..e0f0a47 --- /dev/null +++ b/openhaystack-mobile/linux/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void fl_register_plugins(FlPluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/openhaystack-mobile/linux/flutter/generated_plugins.cmake b/openhaystack-mobile/linux/flutter/generated_plugins.cmake new file mode 100644 index 0000000..98c4365 --- /dev/null +++ b/openhaystack-mobile/linux/flutter/generated_plugins.cmake @@ -0,0 +1,18 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST + flutter_secure_storage_linux + maps_launcher + url_launcher_linux +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) diff --git a/openhaystack-mobile/linux/main.cc b/openhaystack-mobile/linux/main.cc new file mode 100644 index 0000000..e7c5c54 --- /dev/null +++ b/openhaystack-mobile/linux/main.cc @@ -0,0 +1,6 @@ +#include "my_application.h" + +int main(int argc, char** argv) { + g_autoptr(MyApplication) app = my_application_new(); + return g_application_run(G_APPLICATION(app), argc, argv); +} diff --git a/openhaystack-mobile/linux/my_application.cc b/openhaystack-mobile/linux/my_application.cc new file mode 100644 index 0000000..9e177dc --- /dev/null +++ b/openhaystack-mobile/linux/my_application.cc @@ -0,0 +1,104 @@ +#include "my_application.h" + +#include +#ifdef GDK_WINDOWING_X11 +#include +#endif + +#include "flutter/generated_plugin_registrant.h" + +struct _MyApplication { + GtkApplication parent_instance; + char** dart_entrypoint_arguments; +}; + +G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION) + +// Implements GApplication::activate. +static void my_application_activate(GApplication* application) { + MyApplication* self = MY_APPLICATION(application); + GtkWindow* window = + GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application))); + + // Use a header bar when running in GNOME as this is the common style used + // by applications and is the setup most users will be using (e.g. Ubuntu + // desktop). + // If running on X and not using GNOME then just use a traditional title bar + // in case the window manager does more exotic layout, e.g. tiling. + // If running on Wayland assume the header bar will work (may need changing + // if future cases occur). + gboolean use_header_bar = TRUE; +#ifdef GDK_WINDOWING_X11 + GdkScreen* screen = gtk_window_get_screen(window); + if (GDK_IS_X11_SCREEN(screen)) { + const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen); + if (g_strcmp0(wm_name, "GNOME Shell") != 0) { + use_header_bar = FALSE; + } + } +#endif + if (use_header_bar) { + GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); + gtk_widget_show(GTK_WIDGET(header_bar)); + gtk_header_bar_set_title(header_bar, "openhaystack_mobile"); + gtk_header_bar_set_show_close_button(header_bar, TRUE); + gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); + } else { + gtk_window_set_title(window, "openhaystack_mobile"); + } + + gtk_window_set_default_size(window, 1280, 720); + gtk_widget_show(GTK_WIDGET(window)); + + g_autoptr(FlDartProject) project = fl_dart_project_new(); + fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments); + + FlView* view = fl_view_new(project); + gtk_widget_show(GTK_WIDGET(view)); + gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view)); + + fl_register_plugins(FL_PLUGIN_REGISTRY(view)); + + gtk_widget_grab_focus(GTK_WIDGET(view)); +} + +// Implements GApplication::local_command_line. +static gboolean my_application_local_command_line(GApplication* application, gchar*** arguments, int* exit_status) { + MyApplication* self = MY_APPLICATION(application); + // Strip out the first argument as it is the binary name. + self->dart_entrypoint_arguments = g_strdupv(*arguments + 1); + + g_autoptr(GError) error = nullptr; + if (!g_application_register(application, nullptr, &error)) { + g_warning("Failed to register: %s", error->message); + *exit_status = 1; + return TRUE; + } + + g_application_activate(application); + *exit_status = 0; + + return TRUE; +} + +// Implements GObject::dispose. +static void my_application_dispose(GObject* object) { + MyApplication* self = MY_APPLICATION(object); + g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev); + G_OBJECT_CLASS(my_application_parent_class)->dispose(object); +} + +static void my_application_class_init(MyApplicationClass* klass) { + G_APPLICATION_CLASS(klass)->activate = my_application_activate; + G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line; + G_OBJECT_CLASS(klass)->dispose = my_application_dispose; +} + +static void my_application_init(MyApplication* self) {} + +MyApplication* my_application_new() { + return MY_APPLICATION(g_object_new(my_application_get_type(), + "application-id", APPLICATION_ID, + "flags", G_APPLICATION_NON_UNIQUE, + nullptr)); +} diff --git a/openhaystack-mobile/linux/my_application.h b/openhaystack-mobile/linux/my_application.h new file mode 100644 index 0000000..72271d5 --- /dev/null +++ b/openhaystack-mobile/linux/my_application.h @@ -0,0 +1,18 @@ +#ifndef FLUTTER_MY_APPLICATION_H_ +#define FLUTTER_MY_APPLICATION_H_ + +#include + +G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION, + GtkApplication) + +/** + * my_application_new: + * + * Creates a new Flutter-based application. + * + * Returns: a new #MyApplication. + */ +MyApplication* my_application_new(); + +#endif // FLUTTER_MY_APPLICATION_H_ diff --git a/openhaystack-mobile/macos/.gitignore b/openhaystack-mobile/macos/.gitignore new file mode 100644 index 0000000..746adbb --- /dev/null +++ b/openhaystack-mobile/macos/.gitignore @@ -0,0 +1,7 @@ +# Flutter-related +**/Flutter/ephemeral/ +**/Pods/ + +# Xcode-related +**/dgph +**/xcuserdata/ diff --git a/openhaystack-mobile/macos/Flutter/Flutter-Debug.xcconfig b/openhaystack-mobile/macos/Flutter/Flutter-Debug.xcconfig new file mode 100644 index 0000000..4b81f9b --- /dev/null +++ b/openhaystack-mobile/macos/Flutter/Flutter-Debug.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/openhaystack-mobile/macos/Flutter/Flutter-Release.xcconfig b/openhaystack-mobile/macos/Flutter/Flutter-Release.xcconfig new file mode 100644 index 0000000..5caa9d1 --- /dev/null +++ b/openhaystack-mobile/macos/Flutter/Flutter-Release.xcconfig @@ -0,0 +1,2 @@ +#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" +#include "ephemeral/Flutter-Generated.xcconfig" diff --git a/openhaystack-mobile/macos/Flutter/GeneratedPluginRegistrant.swift b/openhaystack-mobile/macos/Flutter/GeneratedPluginRegistrant.swift new file mode 100644 index 0000000..8cf0142 --- /dev/null +++ b/openhaystack-mobile/macos/Flutter/GeneratedPluginRegistrant.swift @@ -0,0 +1,24 @@ +// +// Generated file. Do not edit. +// + +import FlutterMacOS +import Foundation + +import flutter_secure_storage_macos +import location +import maps_launcher +import path_provider_macos +import share_plus_macos +import shared_preferences_macos +import url_launcher_macos + +func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { + FlutterSecureStorageMacosPlugin.register(with: registry.registrar(forPlugin: "FlutterSecureStorageMacosPlugin")) + LocationPlugin.register(with: registry.registrar(forPlugin: "LocationPlugin")) + MapsLauncherPlugin.register(with: registry.registrar(forPlugin: "MapsLauncherPlugin")) + PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) + SharePlusMacosPlugin.register(with: registry.registrar(forPlugin: "SharePlusMacosPlugin")) + SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) + UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) +} diff --git a/openhaystack-mobile/macos/Podfile b/openhaystack-mobile/macos/Podfile new file mode 100644 index 0000000..dade8df --- /dev/null +++ b/openhaystack-mobile/macos/Podfile @@ -0,0 +1,40 @@ +platform :osx, '10.11' + +# CocoaPods analytics sends network stats synchronously affecting flutter build latency. +ENV['COCOAPODS_DISABLE_STATS'] = 'true' + +project 'Runner', { + 'Debug' => :debug, + 'Profile' => :release, + 'Release' => :release, +} + +def flutter_root + generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'ephemeral', 'Flutter-Generated.xcconfig'), __FILE__) + unless File.exist?(generated_xcode_build_settings_path) + raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure \"flutter pub get\" is executed first" + end + + File.foreach(generated_xcode_build_settings_path) do |line| + matches = line.match(/FLUTTER_ROOT\=(.*)/) + return matches[1].strip if matches + end + raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Flutter-Generated.xcconfig, then run \"flutter pub get\"" +end + +require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) + +flutter_macos_podfile_setup + +target 'Runner' do + use_frameworks! + use_modular_headers! + + flutter_install_all_macos_pods File.dirname(File.realpath(__FILE__)) +end + +post_install do |installer| + installer.pods_project.targets.each do |target| + flutter_additional_macos_build_settings(target) + end +end diff --git a/openhaystack-mobile/macos/Runner.xcodeproj/project.pbxproj b/openhaystack-mobile/macos/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..7e674f5 --- /dev/null +++ b/openhaystack-mobile/macos/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,572 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 51; + objects = { + +/* Begin PBXAggregateTarget section */ + 33CC111A2044C6BA0003C045 /* Flutter Assemble */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */; + buildPhases = ( + 33CC111E2044C6BF0003C045 /* ShellScript */, + ); + dependencies = ( + ); + name = "Flutter Assemble"; + productName = FLX; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */; }; + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC10F02044A3C60003C045 /* AppDelegate.swift */; }; + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F22044A3C60003C045 /* Assets.xcassets */; }; + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 33CC10F42044A3C60003C045 /* MainMenu.xib */; }; + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 33CC10E52044A3C60003C045 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 33CC111A2044C6BA0003C045; + remoteInfo = FLX; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 33CC110E2044A8840003C045 /* Bundle Framework */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Bundle Framework"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = ""; }; + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GeneratedPluginRegistrant.swift; sourceTree = ""; }; + 33CC10ED2044A3C60003C045 /* openhaystack_mobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "openhaystack_mobile.app"; sourceTree = BUILT_PRODUCTS_DIR; }; + 33CC10F02044A3C60003C045 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 33CC10F22044A3C60003C045 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Runner/Assets.xcassets; sourceTree = ""; }; + 33CC10F52044A3C60003C045 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MainMenu.xib; sourceTree = ""; }; + 33CC10F72044A3C60003C045 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = Runner/Info.plist; sourceTree = ""; }; + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MainFlutterWindow.swift; sourceTree = ""; }; + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Debug.xcconfig"; sourceTree = ""; }; + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Flutter-Release.xcconfig"; sourceTree = ""; }; + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Flutter-Generated.xcconfig"; path = "ephemeral/Flutter-Generated.xcconfig"; sourceTree = ""; }; + 33E51913231747F40026EE4D /* DebugProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DebugProfile.entitlements; sourceTree = ""; }; + 33E51914231749380026EE4D /* Release.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = Release.entitlements; sourceTree = ""; }; + 33E5194F232828860026EE4D /* AppInfo.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = AppInfo.xcconfig; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 33CC10EA2044A3C60003C045 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 33BA886A226E78AF003329D5 /* Configs */ = { + isa = PBXGroup; + children = ( + 33E5194F232828860026EE4D /* AppInfo.xcconfig */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 333000ED22D3DE5D00554162 /* Warnings.xcconfig */, + ); + path = Configs; + sourceTree = ""; + }; + 33CC10E42044A3C60003C045 = { + isa = PBXGroup; + children = ( + 33FAB671232836740065AC1E /* Runner */, + 33CEB47122A05771004F2AC0 /* Flutter */, + 33CC10EE2044A3C60003C045 /* Products */, + D73912EC22F37F3D000D13A0 /* Frameworks */, + ); + sourceTree = ""; + }; + 33CC10EE2044A3C60003C045 /* Products */ = { + isa = PBXGroup; + children = ( + 33CC10ED2044A3C60003C045 /* openhaystack_mobile.app */, + ); + name = Products; + sourceTree = ""; + }; + 33CC11242044D66E0003C045 /* Resources */ = { + isa = PBXGroup; + children = ( + 33CC10F22044A3C60003C045 /* Assets.xcassets */, + 33CC10F42044A3C60003C045 /* MainMenu.xib */, + 33CC10F72044A3C60003C045 /* Info.plist */, + ); + name = Resources; + path = ..; + sourceTree = ""; + }; + 33CEB47122A05771004F2AC0 /* Flutter */ = { + isa = PBXGroup; + children = ( + 335BBD1A22A9A15E00E9071D /* GeneratedPluginRegistrant.swift */, + 33CEB47222A05771004F2AC0 /* Flutter-Debug.xcconfig */, + 33CEB47422A05771004F2AC0 /* Flutter-Release.xcconfig */, + 33CEB47722A0578A004F2AC0 /* Flutter-Generated.xcconfig */, + ); + path = Flutter; + sourceTree = ""; + }; + 33FAB671232836740065AC1E /* Runner */ = { + isa = PBXGroup; + children = ( + 33CC10F02044A3C60003C045 /* AppDelegate.swift */, + 33CC11122044BFA00003C045 /* MainFlutterWindow.swift */, + 33E51913231747F40026EE4D /* DebugProfile.entitlements */, + 33E51914231749380026EE4D /* Release.entitlements */, + 33CC11242044D66E0003C045 /* Resources */, + 33BA886A226E78AF003329D5 /* Configs */, + ); + path = Runner; + sourceTree = ""; + }; + D73912EC22F37F3D000D13A0 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 33CC10EC2044A3C60003C045 /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 33CC10E92044A3C60003C045 /* Sources */, + 33CC10EA2044A3C60003C045 /* Frameworks */, + 33CC10EB2044A3C60003C045 /* Resources */, + 33CC110E2044A8840003C045 /* Bundle Framework */, + 3399D490228B24CF009A79C7 /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + 33CC11202044C79F0003C045 /* PBXTargetDependency */, + ); + name = Runner; + productName = Runner; + productReference = 33CC10ED2044A3C60003C045 /* openhaystack_mobile.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 33CC10E52044A3C60003C045 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0920; + LastUpgradeCheck = 0930; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 33CC10EC2044A3C60003C045 = { + CreatedOnToolsVersion = 9.2; + LastSwiftMigration = 1100; + ProvisioningStyle = Automatic; + SystemCapabilities = { + com.apple.Sandbox = { + enabled = 1; + }; + }; + }; + 33CC111A2044C6BA0003C045 = { + CreatedOnToolsVersion = 9.2; + ProvisioningStyle = Manual; + }; + }; + }; + buildConfigurationList = 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 33CC10E42044A3C60003C045; + productRefGroup = 33CC10EE2044A3C60003C045 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 33CC10EC2044A3C60003C045 /* Runner */, + 33CC111A2044C6BA0003C045 /* Flutter Assemble */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 33CC10EB2044A3C60003C045 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC10F32044A3C60003C045 /* Assets.xcassets in Resources */, + 33CC10F62044A3C60003C045 /* MainMenu.xib in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3399D490228B24CF009A79C7 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + ); + outputFileListPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n"; + }; + 33CC111E2044C6BF0003C045 /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + Flutter/ephemeral/FlutterInputs.xcfilelist, + ); + inputPaths = ( + Flutter/ephemeral/tripwire, + ); + outputFileListPaths = ( + Flutter/ephemeral/FlutterOutputs.xcfilelist, + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh && touch Flutter/ephemeral/tripwire"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 33CC10E92044A3C60003C045 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 33CC11132044BFA00003C045 /* MainFlutterWindow.swift in Sources */, + 33CC10F12044A3C60003C045 /* AppDelegate.swift in Sources */, + 335BBD1B22A9A15E00E9071D /* GeneratedPluginRegistrant.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 33CC11202044C79F0003C045 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 33CC111A2044C6BA0003C045 /* Flutter Assemble */; + targetProxy = 33CC111F2044C79F0003C045 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 33CC10F42044A3C60003C045 /* MainMenu.xib */ = { + isa = PBXVariantGroup; + children = ( + 33CC10F52044A3C60003C045 /* Base */, + ); + name = MainMenu.xib; + path = Runner; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 338D0CE9231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.11; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Profile; + }; + 338D0CEA231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Profile; + }; + 338D0CEB231458BD00FA5F75 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Profile; + }; + 33CC10F92044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.11; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 33CC10FA2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CODE_SIGN_IDENTITY = "-"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.11; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + }; + name = Release; + }; + 33CC10FC2044A3C60003C045 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/DebugProfile.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + 33CC10FD2044A3C60003C045 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 33E5194F232828860026EE4D /* AppInfo.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_ENTITLEMENTS = Runner/Release.entitlements; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + 33CC111C2044C6BA0003C045 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Manual; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Debug; + }; + 33CC111D2044C6BA0003C045 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + PRODUCT_NAME = "$(TARGET_NAME)"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 33CC10E82044A3C60003C045 /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10F92044A3C60003C045 /* Debug */, + 33CC10FA2044A3C60003C045 /* Release */, + 338D0CE9231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC10FB2044A3C60003C045 /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC10FC2044A3C60003C045 /* Debug */, + 33CC10FD2044A3C60003C045 /* Release */, + 338D0CEA231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 33CC111B2044C6BA0003C045 /* Build configuration list for PBXAggregateTarget "Flutter Assemble" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 33CC111C2044C6BA0003C045 /* Debug */, + 33CC111D2044C6BA0003C045 /* Release */, + 338D0CEB231458BD00FA5F75 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 33CC10E52044A3C60003C045 /* Project object */; +} diff --git a/openhaystack-mobile/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/openhaystack-mobile/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/openhaystack-mobile/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/openhaystack-mobile/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/openhaystack-mobile/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..ce2611f --- /dev/null +++ b/openhaystack-mobile/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/openhaystack-mobile/macos/Runner.xcworkspace/contents.xcworkspacedata b/openhaystack-mobile/macos/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/openhaystack-mobile/macos/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/openhaystack-mobile/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/openhaystack-mobile/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/openhaystack-mobile/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/openhaystack-mobile/macos/Runner/AppDelegate.swift b/openhaystack-mobile/macos/Runner/AppDelegate.swift new file mode 100644 index 0000000..d53ef64 --- /dev/null +++ b/openhaystack-mobile/macos/Runner/AppDelegate.swift @@ -0,0 +1,9 @@ +import Cocoa +import FlutterMacOS + +@NSApplicationMain +class AppDelegate: FlutterAppDelegate { + override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { + return true + } +} diff --git a/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..a2ec33f --- /dev/null +++ b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,68 @@ +{ + "images" : [ + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_16.png", + "scale" : "1x" + }, + { + "size" : "16x16", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "2x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_32.png", + "scale" : "1x" + }, + { + "size" : "32x32", + "idiom" : "mac", + "filename" : "app_icon_64.png", + "scale" : "2x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_128.png", + "scale" : "1x" + }, + { + "size" : "128x128", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "2x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_256.png", + "scale" : "1x" + }, + { + "size" : "256x256", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "2x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_512.png", + "scale" : "1x" + }, + { + "size" : "512x512", + "idiom" : "mac", + "filename" : "app_icon_1024.png", + "scale" : "2x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png new file mode 100644 index 0000000..3c4935a Binary files /dev/null and b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png differ diff --git a/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png new file mode 100644 index 0000000..ed4cc16 Binary files /dev/null and b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png differ diff --git a/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png new file mode 100644 index 0000000..483be61 Binary files /dev/null and b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png differ diff --git a/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png new file mode 100644 index 0000000..bcbf36d Binary files /dev/null and b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png differ diff --git a/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png new file mode 100644 index 0000000..9c0a652 Binary files /dev/null and b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png differ diff --git a/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png new file mode 100644 index 0000000..e71a726 Binary files /dev/null and b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png differ diff --git a/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png new file mode 100644 index 0000000..8a31fe2 Binary files /dev/null and b/openhaystack-mobile/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png differ diff --git a/openhaystack-mobile/macos/Runner/Base.lproj/MainMenu.xib b/openhaystack-mobile/macos/Runner/Base.lproj/MainMenu.xib new file mode 100644 index 0000000..537341a --- /dev/null +++ b/openhaystack-mobile/macos/Runner/Base.lproj/MainMenu.xib @@ -0,0 +1,339 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/openhaystack-mobile/macos/Runner/Configs/AppInfo.xcconfig b/openhaystack-mobile/macos/Runner/Configs/AppInfo.xcconfig new file mode 100644 index 0000000..b5418f1 --- /dev/null +++ b/openhaystack-mobile/macos/Runner/Configs/AppInfo.xcconfig @@ -0,0 +1,14 @@ +// Application-level settings for the Runner target. +// +// This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the +// future. If not, the values below would default to using the project name when this becomes a +// 'flutter create' template. + +// The application's name. By default this is also the title of the Flutter window. +PRODUCT_NAME = openhaystack_mobile + +// The application's bundle identifier +PRODUCT_BUNDLE_IDENTIFIER = de.seemoo.macos.openhaystack + +// The copyright displayed in application information +PRODUCT_COPYRIGHT = Copyright © 2021 com.example. All rights reserved. diff --git a/openhaystack-mobile/macos/Runner/Configs/Debug.xcconfig b/openhaystack-mobile/macos/Runner/Configs/Debug.xcconfig new file mode 100644 index 0000000..36b0fd9 --- /dev/null +++ b/openhaystack-mobile/macos/Runner/Configs/Debug.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Debug.xcconfig" +#include "Warnings.xcconfig" diff --git a/openhaystack-mobile/macos/Runner/Configs/Release.xcconfig b/openhaystack-mobile/macos/Runner/Configs/Release.xcconfig new file mode 100644 index 0000000..dff4f49 --- /dev/null +++ b/openhaystack-mobile/macos/Runner/Configs/Release.xcconfig @@ -0,0 +1,2 @@ +#include "../../Flutter/Flutter-Release.xcconfig" +#include "Warnings.xcconfig" diff --git a/openhaystack-mobile/macos/Runner/Configs/Warnings.xcconfig b/openhaystack-mobile/macos/Runner/Configs/Warnings.xcconfig new file mode 100644 index 0000000..42bcbf4 --- /dev/null +++ b/openhaystack-mobile/macos/Runner/Configs/Warnings.xcconfig @@ -0,0 +1,13 @@ +WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings +GCC_WARN_UNDECLARED_SELECTOR = YES +CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES +CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE +CLANG_WARN__DUPLICATE_METHOD_MATCH = YES +CLANG_WARN_PRAGMA_PACK = YES +CLANG_WARN_STRICT_PROTOTYPES = YES +CLANG_WARN_COMMA = YES +GCC_WARN_STRICT_SELECTOR_MATCH = YES +CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES +CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES +GCC_WARN_SHADOW = YES +CLANG_WARN_UNREACHABLE_CODE = YES diff --git a/openhaystack-mobile/macos/Runner/DebugProfile.entitlements b/openhaystack-mobile/macos/Runner/DebugProfile.entitlements new file mode 100644 index 0000000..dddb8a3 --- /dev/null +++ b/openhaystack-mobile/macos/Runner/DebugProfile.entitlements @@ -0,0 +1,12 @@ + + + + + com.apple.security.app-sandbox + + com.apple.security.cs.allow-jit + + com.apple.security.network.server + + + diff --git a/openhaystack-mobile/macos/Runner/Info.plist b/openhaystack-mobile/macos/Runner/Info.plist new file mode 100644 index 0000000..4789daa --- /dev/null +++ b/openhaystack-mobile/macos/Runner/Info.plist @@ -0,0 +1,32 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIconFile + + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + $(PRODUCT_COPYRIGHT) + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + + diff --git a/openhaystack-mobile/macos/Runner/MainFlutterWindow.swift b/openhaystack-mobile/macos/Runner/MainFlutterWindow.swift new file mode 100644 index 0000000..2722837 --- /dev/null +++ b/openhaystack-mobile/macos/Runner/MainFlutterWindow.swift @@ -0,0 +1,15 @@ +import Cocoa +import FlutterMacOS + +class MainFlutterWindow: NSWindow { + override func awakeFromNib() { + let flutterViewController = FlutterViewController.init() + let windowFrame = self.frame + self.contentViewController = flutterViewController + self.setFrame(windowFrame, display: true) + + RegisterGeneratedPlugins(registry: flutterViewController) + + super.awakeFromNib() + } +} diff --git a/openhaystack-mobile/macos/Runner/Release.entitlements b/openhaystack-mobile/macos/Runner/Release.entitlements new file mode 100644 index 0000000..852fa1a --- /dev/null +++ b/openhaystack-mobile/macos/Runner/Release.entitlements @@ -0,0 +1,8 @@ + + + + + com.apple.security.app-sandbox + + + diff --git a/openhaystack-mobile/pubspec.lock b/openhaystack-mobile/pubspec.lock new file mode 100644 index 0000000..1b7d8a6 --- /dev/null +++ b/openhaystack-mobile/pubspec.lock @@ -0,0 +1,740 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + archive: + dependency: transitive + description: + name: archive + url: "https://pub.dartlang.org" + source: hosted + version: "3.2.1" + args: + dependency: transitive + description: + name: args + url: "https://pub.dartlang.org" + source: hosted + version: "2.3.0" + async: + dependency: transitive + description: + name: async + url: "https://pub.dartlang.org" + source: hosted + version: "2.8.2" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + characters: + dependency: transitive + description: + name: characters + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + charcode: + dependency: transitive + description: + name: charcode + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.1" + clock: + dependency: transitive + description: + name: clock + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + collection: + dependency: transitive + description: + name: collection + url: "https://pub.dartlang.org" + source: hosted + version: "1.15.0" + convert: + dependency: transitive + description: + name: convert + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.1" + crypto: + dependency: transitive + description: + name: crypto + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.1" + fake_async: + dependency: transitive + description: + name: fake_async + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + ffi: + dependency: transitive + description: + name: ffi + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.2" + file: + dependency: transitive + description: + name: file + url: "https://pub.dartlang.org" + source: hosted + version: "6.1.2" + file_picker: + dependency: "direct main" + description: + name: file_picker + url: "https://pub.dartlang.org" + source: hosted + version: "4.4.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_colorpicker: + dependency: "direct main" + description: + name: flutter_colorpicker + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.3" + flutter_launcher_icons: + dependency: "direct main" + description: + name: flutter_launcher_icons + url: "https://pub.dartlang.org" + source: hosted + version: "0.9.2" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.4" + flutter_map: + dependency: "direct main" + description: + name: flutter_map + url: "https://pub.dartlang.org" + source: hosted + version: "0.14.0" + flutter_plugin_android_lifecycle: + dependency: transitive + description: + name: flutter_plugin_android_lifecycle + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.5" + flutter_secure_storage: + dependency: "direct main" + description: + name: flutter_secure_storage + url: "https://pub.dartlang.org" + source: hosted + version: "5.0.2" + flutter_secure_storage_linux: + dependency: transitive + description: + name: flutter_secure_storage_linux + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + flutter_secure_storage_macos: + dependency: transitive + description: + name: flutter_secure_storage_macos + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + flutter_secure_storage_platform_interface: + dependency: transitive + description: + name: flutter_secure_storage_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.0" + flutter_secure_storage_web: + dependency: transitive + description: + name: flutter_secure_storage_web + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.2" + flutter_secure_storage_windows: + dependency: transitive + description: + name: flutter_secure_storage_windows + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.2" + flutter_slidable: + dependency: "direct main" + description: + name: flutter_slidable + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" + geocoding: + dependency: "direct main" + description: + name: geocoding + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.2" + geocoding_platform_interface: + dependency: transitive + description: + name: geocoding_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.1" + http: + dependency: "direct main" + description: + name: http + url: "https://pub.dartlang.org" + source: hosted + version: "0.13.4" + http_parser: + dependency: transitive + description: + name: http_parser + url: "https://pub.dartlang.org" + source: hosted + version: "4.0.0" + image: + dependency: transitive + description: + name: image + url: "https://pub.dartlang.org" + source: hosted + version: "3.1.3" + intl: + dependency: transitive + description: + name: intl + url: "https://pub.dartlang.org" + source: hosted + version: "0.17.0" + js: + dependency: transitive + description: + name: js + url: "https://pub.dartlang.org" + source: hosted + version: "0.6.3" + latlong2: + dependency: transitive + description: + name: latlong2 + url: "https://pub.dartlang.org" + source: hosted + version: "0.8.1" + lints: + dependency: transitive + description: + name: lints + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.1" + lists: + dependency: transitive + description: + name: lists + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.1" + location: + dependency: "direct main" + description: + name: location + url: "https://pub.dartlang.org" + source: hosted + version: "4.3.0" + location_platform_interface: + dependency: transitive + description: + name: location_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.3.0" + location_web: + dependency: transitive + description: + name: location_web + url: "https://pub.dartlang.org" + source: hosted + version: "3.1.1" + maps_launcher: + dependency: "direct main" + description: + name: maps_launcher + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.1" + matcher: + dependency: transitive + description: + name: matcher + url: "https://pub.dartlang.org" + source: hosted + version: "0.12.11" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + url: "https://pub.dartlang.org" + source: hosted + version: "0.1.3" + meta: + dependency: transitive + description: + name: meta + url: "https://pub.dartlang.org" + source: hosted + version: "1.7.0" + mgrs_dart: + dependency: transitive + description: + name: mgrs_dart + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + mime: + dependency: transitive + description: + name: mime + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.1" + nested: + dependency: transitive + description: + name: nested + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.0" + path: + dependency: transitive + description: + name: path + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.0" + path_provider: + dependency: "direct main" + description: + name: path_provider + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.9" + path_provider_android: + dependency: transitive + description: + name: path_provider_android + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.11" + path_provider_ios: + dependency: transitive + description: + name: path_provider_ios + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.7" + path_provider_linux: + dependency: transitive + description: + name: path_provider_linux + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.5" + path_provider_macos: + dependency: transitive + description: + name: path_provider_macos + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.5" + path_provider_platform_interface: + dependency: transitive + description: + name: path_provider_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.3" + path_provider_windows: + dependency: transitive + description: + name: path_provider_windows + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.5" + petitparser: + dependency: transitive + description: + name: petitparser + url: "https://pub.dartlang.org" + source: hosted + version: "4.4.0" + platform: + dependency: transitive + description: + name: platform + url: "https://pub.dartlang.org" + source: hosted + version: "3.1.0" + plugin_platform_interface: + dependency: transitive + description: + name: plugin_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.2" + pointycastle: + dependency: "direct main" + description: + name: pointycastle + url: "https://pub.dartlang.org" + source: hosted + version: "3.5.1" + positioned_tap_detector_2: + dependency: transitive + description: + name: positioned_tap_detector_2 + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.4" + process: + dependency: transitive + description: + name: process + url: "https://pub.dartlang.org" + source: hosted + version: "4.2.4" + proj4dart: + dependency: transitive + description: + name: proj4dart + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + provider: + dependency: "direct main" + description: + name: provider + url: "https://pub.dartlang.org" + source: hosted + version: "6.0.2" + quiver: + dependency: transitive + description: + name: quiver + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.1+1" + receive_sharing_intent: + dependency: "direct main" + description: + name: receive_sharing_intent + url: "https://pub.dartlang.org" + source: hosted + version: "1.4.5" + share_plus: + dependency: "direct main" + description: + name: share_plus + url: "https://pub.dartlang.org" + source: hosted + version: "3.1.0" + share_plus_linux: + dependency: transitive + description: + name: share_plus_linux + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.4" + share_plus_macos: + dependency: transitive + description: + name: share_plus_macos + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.2" + share_plus_platform_interface: + dependency: transitive + description: + name: share_plus_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.1" + share_plus_web: + dependency: transitive + description: + name: share_plus_web + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.4" + share_plus_windows: + dependency: transitive + description: + name: share_plus_windows + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.3" + shared_preferences: + dependency: "direct main" + description: + name: shared_preferences + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.13" + shared_preferences_android: + dependency: transitive + description: + name: shared_preferences_android + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.10" + shared_preferences_ios: + dependency: transitive + description: + name: shared_preferences_ios + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.9" + shared_preferences_linux: + dependency: transitive + description: + name: shared_preferences_linux + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + shared_preferences_macos: + dependency: transitive + description: + name: shared_preferences_macos + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.3" + shared_preferences_platform_interface: + dependency: transitive + description: + name: shared_preferences_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + shared_preferences_web: + dependency: transitive + description: + name: shared_preferences_web + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.3" + shared_preferences_windows: + dependency: transitive + description: + name: shared_preferences_windows + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.1" + stack_trace: + dependency: transitive + description: + name: stack_trace + url: "https://pub.dartlang.org" + source: hosted + version: "1.10.0" + stream_channel: + dependency: transitive + description: + name: stream_channel + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + test_api: + dependency: transitive + description: + name: test_api + url: "https://pub.dartlang.org" + source: hosted + version: "0.4.8" + transparent_image: + dependency: transitive + description: + name: transparent_image + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + tuple: + dependency: transitive + description: + name: tuple + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + typed_data: + dependency: transitive + description: + name: typed_data + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.0" + unicode: + dependency: transitive + description: + name: unicode + url: "https://pub.dartlang.org" + source: hosted + version: "0.3.1" + url_launcher: + dependency: "direct main" + description: + name: url_launcher + url: "https://pub.dartlang.org" + source: hosted + version: "6.0.20" + url_launcher_android: + dependency: transitive + description: + name: url_launcher_android + url: "https://pub.dartlang.org" + source: hosted + version: "6.0.14" + url_launcher_ios: + dependency: transitive + description: + name: url_launcher_ios + url: "https://pub.dartlang.org" + source: hosted + version: "6.0.14" + url_launcher_linux: + dependency: transitive + description: + name: url_launcher_linux + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.0" + url_launcher_macos: + dependency: transitive + description: + name: url_launcher_macos + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.0" + url_launcher_platform_interface: + dependency: transitive + description: + name: url_launcher_platform_interface + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.5" + url_launcher_web: + dependency: transitive + description: + name: url_launcher_web + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.7" + url_launcher_windows: + dependency: transitive + description: + name: url_launcher_windows + url: "https://pub.dartlang.org" + source: hosted + version: "3.0.0" + vector_math: + dependency: transitive + description: + name: vector_math + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.1" + win32: + dependency: transitive + description: + name: win32 + url: "https://pub.dartlang.org" + source: hosted + version: "2.3.6" + wkt_parser: + dependency: transitive + description: + name: wkt_parser + url: "https://pub.dartlang.org" + source: hosted + version: "2.0.0" + xdg_directories: + dependency: transitive + description: + name: xdg_directories + url: "https://pub.dartlang.org" + source: hosted + version: "0.2.0+1" + xml: + dependency: transitive + description: + name: xml + url: "https://pub.dartlang.org" + source: hosted + version: "5.3.1" + yaml: + dependency: transitive + description: + name: yaml + url: "https://pub.dartlang.org" + source: hosted + version: "3.1.0" +sdks: + dart: ">=2.14.0 <3.0.0" + flutter: ">=2.5.0" diff --git a/openhaystack-mobile/pubspec.yaml b/openhaystack-mobile/pubspec.yaml new file mode 100644 index 0000000..7caadf5 --- /dev/null +++ b/openhaystack-mobile/pubspec.yaml @@ -0,0 +1,129 @@ +name: openhaystack_mobile +description: OpenHaystack Mobile + +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +version: 1.0.0+1 + +environment: + sdk: ">=2.12.0 <3.0.0" + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + + # UI + flutter_colorpicker: ^1.0.3 + flutter_launcher_icons: ^0.9.2 + flutter_slidable: ^1.2.0 + + # Networking + http: ^0.13.4 + + # Cryptography + # latest version of pointy castle for crypto functions + pointycastle: ^3.4.0 + + # State Management + provider: ^6.0.1 + + # Location + flutter_map: ^0.14.0 + location: ^4.2.0 + geocoding: ^2.0.1 + + # Storage + shared_preferences: ^2.0.9 + flutter_secure_storage: ^5.0.2 + file_picker: ^4.4.0 + + # Sharing + receive_sharing_intent: ^1.4.5 + share_plus: ^3.0.4 + url_launcher: ^6.0.17 + path_provider: ^2.0.8 + maps_launcher: ^2.0.1 + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + #cupertino_icons: ^1.0.2 + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^1.0.0 + +# Configuration for flutter_launcher_icons +flutter_icons: + android: true + ios: true + image_path: "assets/OpenHaystackIcon.png" + + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + # assets: + # - images/a_dot_burr.jpeg + # - images/a_dot_ham.jpeg + assets: + - assets/ + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/assets-and-images/#resolution-aware. + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/assets-and-images/#from-packages + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/custom-fonts/#from-packages diff --git a/openhaystack-mobile/test/widget_test.dart b/openhaystack-mobile/test/widget_test.dart new file mode 100644 index 0000000..f0b1eef --- /dev/null +++ b/openhaystack-mobile/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility that Flutter provides. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:openhaystack_mobile/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} diff --git a/openhaystack-mobile/web/favicon.png b/openhaystack-mobile/web/favicon.png new file mode 100644 index 0000000..8aaa46a Binary files /dev/null and b/openhaystack-mobile/web/favicon.png differ diff --git a/openhaystack-mobile/web/icons/Icon-192.png b/openhaystack-mobile/web/icons/Icon-192.png new file mode 100644 index 0000000..b749bfe Binary files /dev/null and b/openhaystack-mobile/web/icons/Icon-192.png differ diff --git a/openhaystack-mobile/web/icons/Icon-512.png b/openhaystack-mobile/web/icons/Icon-512.png new file mode 100644 index 0000000..88cfd48 Binary files /dev/null and b/openhaystack-mobile/web/icons/Icon-512.png differ diff --git a/openhaystack-mobile/web/icons/Icon-maskable-192.png b/openhaystack-mobile/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000..eb9b4d7 Binary files /dev/null and b/openhaystack-mobile/web/icons/Icon-maskable-192.png differ diff --git a/openhaystack-mobile/web/icons/Icon-maskable-512.png b/openhaystack-mobile/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000..d69c566 Binary files /dev/null and b/openhaystack-mobile/web/icons/Icon-maskable-512.png differ diff --git a/openhaystack-mobile/web/index.html b/openhaystack-mobile/web/index.html new file mode 100644 index 0000000..bf33302 --- /dev/null +++ b/openhaystack-mobile/web/index.html @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + OpenHaystack Mobile + + + + + + + diff --git a/openhaystack-mobile/web/manifest.json b/openhaystack-mobile/web/manifest.json new file mode 100644 index 0000000..0109b6e --- /dev/null +++ b/openhaystack-mobile/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "openhaystack_mobile", + "short_name": "openhaystack_mobile", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "OpenHaystack2.0", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +} diff --git a/openhaystack-mobile/windows/.gitignore b/openhaystack-mobile/windows/.gitignore new file mode 100644 index 0000000..d492d0d --- /dev/null +++ b/openhaystack-mobile/windows/.gitignore @@ -0,0 +1,17 @@ +flutter/ephemeral/ + +# Visual Studio user-specific files. +*.suo +*.user +*.userosscache +*.sln.docstates + +# Visual Studio build-related files. +x64/ +x86/ + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ diff --git a/openhaystack-mobile/windows/CMakeLists.txt b/openhaystack-mobile/windows/CMakeLists.txt new file mode 100644 index 0000000..e874b0a --- /dev/null +++ b/openhaystack-mobile/windows/CMakeLists.txt @@ -0,0 +1,95 @@ +cmake_minimum_required(VERSION 3.15) +project(openhaystack_mobile LANGUAGES CXX) + +set(BINARY_NAME "openhaystack_mobile") + +cmake_policy(SET CMP0063 NEW) + +set(CMAKE_INSTALL_RPATH "$ORIGIN/lib") + +# Configure build options. +get_property(IS_MULTICONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) +if(IS_MULTICONFIG) + set(CMAKE_CONFIGURATION_TYPES "Debug;Profile;Release" + CACHE STRING "" FORCE) +else() + if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) + set(CMAKE_BUILD_TYPE "Debug" CACHE + STRING "Flutter build mode" FORCE) + set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS + "Debug" "Profile" "Release") + endif() +endif() + +set(CMAKE_EXE_LINKER_FLAGS_PROFILE "${CMAKE_EXE_LINKER_FLAGS_RELEASE}") +set(CMAKE_SHARED_LINKER_FLAGS_PROFILE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE}") +set(CMAKE_C_FLAGS_PROFILE "${CMAKE_C_FLAGS_RELEASE}") +set(CMAKE_CXX_FLAGS_PROFILE "${CMAKE_CXX_FLAGS_RELEASE}") + +# Use Unicode for all projects. +add_definitions(-DUNICODE -D_UNICODE) + +# Compilation settings that should be applied to most targets. +function(APPLY_STANDARD_SETTINGS TARGET) + target_compile_features(${TARGET} PUBLIC cxx_std_17) + target_compile_options(${TARGET} PRIVATE /W4 /WX /wd"4100") + target_compile_options(${TARGET} PRIVATE /EHsc) + target_compile_definitions(${TARGET} PRIVATE "_HAS_EXCEPTIONS=0") + target_compile_definitions(${TARGET} PRIVATE "$<$:_DEBUG>") +endfunction() + +set(FLUTTER_MANAGED_DIR "${CMAKE_CURRENT_SOURCE_DIR}/flutter") + +# Flutter library and tool build rules. +add_subdirectory(${FLUTTER_MANAGED_DIR}) + +# Application build +add_subdirectory("runner") + +# Generated plugin build rules, which manage building the plugins and adding +# them to the application. +include(flutter/generated_plugins.cmake) + + +# === Installation === +# Support files are copied into place next to the executable, so that it can +# run in place. This is done instead of making a separate bundle (as on Linux) +# so that building and running from within Visual Studio will work. +set(BUILD_BUNDLE_DIR "$") +# Make the "install" step default, as it's required to run. +set(CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD 1) +if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) + set(CMAKE_INSTALL_PREFIX "${BUILD_BUNDLE_DIR}" CACHE PATH "..." FORCE) +endif() + +set(INSTALL_BUNDLE_DATA_DIR "${CMAKE_INSTALL_PREFIX}/data") +set(INSTALL_BUNDLE_LIB_DIR "${CMAKE_INSTALL_PREFIX}") + +install(TARGETS ${BINARY_NAME} RUNTIME DESTINATION "${CMAKE_INSTALL_PREFIX}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_ICU_DATA_FILE}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + COMPONENT Runtime) + +install(FILES "${FLUTTER_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) + +if(PLUGIN_BUNDLED_LIBRARIES) + install(FILES "${PLUGIN_BUNDLED_LIBRARIES}" + DESTINATION "${INSTALL_BUNDLE_LIB_DIR}" + COMPONENT Runtime) +endif() + +# Fully re-copy the assets directory on each build to avoid having stale files +# from a previous install. +set(FLUTTER_ASSET_DIR_NAME "flutter_assets") +install(CODE " + file(REMOVE_RECURSE \"${INSTALL_BUNDLE_DATA_DIR}/${FLUTTER_ASSET_DIR_NAME}\") + " COMPONENT Runtime) +install(DIRECTORY "${PROJECT_BUILD_DIR}/${FLUTTER_ASSET_DIR_NAME}" + DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" COMPONENT Runtime) + +# Install the AOT library on non-Debug builds only. +install(FILES "${AOT_LIBRARY}" DESTINATION "${INSTALL_BUNDLE_DATA_DIR}" + CONFIGURATIONS Profile;Release + COMPONENT Runtime) diff --git a/openhaystack-mobile/windows/flutter/CMakeLists.txt b/openhaystack-mobile/windows/flutter/CMakeLists.txt new file mode 100644 index 0000000..b02c548 --- /dev/null +++ b/openhaystack-mobile/windows/flutter/CMakeLists.txt @@ -0,0 +1,103 @@ +cmake_minimum_required(VERSION 3.15) + +set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral") + +# Configuration provided via flutter tool. +include(${EPHEMERAL_DIR}/generated_config.cmake) + +# TODO: Move the rest of this into files in ephemeral. See +# https://github.com/flutter/flutter/issues/57146. +set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper") + +# === Flutter Library === +set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/flutter_windows.dll") + +# Published to parent scope for install step. +set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE) +set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE) +set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/" PARENT_SCOPE) +set(AOT_LIBRARY "${PROJECT_DIR}/build/windows/app.so" PARENT_SCOPE) + +list(APPEND FLUTTER_LIBRARY_HEADERS + "flutter_export.h" + "flutter_windows.h" + "flutter_messenger.h" + "flutter_plugin_registrar.h" + "flutter_texture_registrar.h" +) +list(TRANSFORM FLUTTER_LIBRARY_HEADERS PREPEND "${EPHEMERAL_DIR}/") +add_library(flutter INTERFACE) +target_include_directories(flutter INTERFACE + "${EPHEMERAL_DIR}" +) +target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}.lib") +add_dependencies(flutter flutter_assemble) + +# === Wrapper === +list(APPEND CPP_WRAPPER_SOURCES_CORE + "core_implementations.cc" + "standard_codec.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_PLUGIN + "plugin_registrar.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/") +list(APPEND CPP_WRAPPER_SOURCES_APP + "flutter_engine.cc" + "flutter_view_controller.cc" +) +list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/") + +# Wrapper sources needed for a plugin. +add_library(flutter_wrapper_plugin STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} +) +apply_standard_settings(flutter_wrapper_plugin) +set_target_properties(flutter_wrapper_plugin PROPERTIES + POSITION_INDEPENDENT_CODE ON) +set_target_properties(flutter_wrapper_plugin PROPERTIES + CXX_VISIBILITY_PRESET hidden) +target_link_libraries(flutter_wrapper_plugin PUBLIC flutter) +target_include_directories(flutter_wrapper_plugin PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_plugin flutter_assemble) + +# Wrapper sources needed for the runner. +add_library(flutter_wrapper_app STATIC + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_APP} +) +apply_standard_settings(flutter_wrapper_app) +target_link_libraries(flutter_wrapper_app PUBLIC flutter) +target_include_directories(flutter_wrapper_app PUBLIC + "${WRAPPER_ROOT}/include" +) +add_dependencies(flutter_wrapper_app flutter_assemble) + +# === Flutter tool backend === +# _phony_ is a non-existent file to force this command to run every time, +# since currently there's no way to get a full input/output list from the +# flutter tool. +set(PHONY_OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/_phony_") +set_source_files_properties("${PHONY_OUTPUT}" PROPERTIES SYMBOLIC TRUE) +add_custom_command( + OUTPUT ${FLUTTER_LIBRARY} ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} + ${PHONY_OUTPUT} + COMMAND ${CMAKE_COMMAND} -E env + ${FLUTTER_TOOL_ENVIRONMENT} + "${FLUTTER_ROOT}/packages/flutter_tools/bin/tool_backend.bat" + windows-x64 $ + VERBATIM +) +add_custom_target(flutter_assemble DEPENDS + "${FLUTTER_LIBRARY}" + ${FLUTTER_LIBRARY_HEADERS} + ${CPP_WRAPPER_SOURCES_CORE} + ${CPP_WRAPPER_SOURCES_PLUGIN} + ${CPP_WRAPPER_SOURCES_APP} +) diff --git a/openhaystack-mobile/windows/flutter/generated_plugin_registrant.cc b/openhaystack-mobile/windows/flutter/generated_plugin_registrant.cc new file mode 100644 index 0000000..6968ef0 --- /dev/null +++ b/openhaystack-mobile/windows/flutter/generated_plugin_registrant.cc @@ -0,0 +1,20 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#include "generated_plugin_registrant.h" + +#include +#include +#include + +void RegisterPlugins(flutter::PluginRegistry* registry) { + FlutterSecureStorageWindowsPluginRegisterWithRegistrar( + registry->GetRegistrarForPlugin("FlutterSecureStorageWindowsPlugin")); + MapsLauncherPluginRegisterWithRegistrar( + registry->GetRegistrarForPlugin("MapsLauncherPlugin")); + UrlLauncherWindowsRegisterWithRegistrar( + registry->GetRegistrarForPlugin("UrlLauncherWindows")); +} diff --git a/openhaystack-mobile/windows/flutter/generated_plugin_registrant.h b/openhaystack-mobile/windows/flutter/generated_plugin_registrant.h new file mode 100644 index 0000000..dc139d8 --- /dev/null +++ b/openhaystack-mobile/windows/flutter/generated_plugin_registrant.h @@ -0,0 +1,15 @@ +// +// Generated file. Do not edit. +// + +// clang-format off + +#ifndef GENERATED_PLUGIN_REGISTRANT_ +#define GENERATED_PLUGIN_REGISTRANT_ + +#include + +// Registers Flutter plugins. +void RegisterPlugins(flutter::PluginRegistry* registry); + +#endif // GENERATED_PLUGIN_REGISTRANT_ diff --git a/openhaystack-mobile/windows/flutter/generated_plugins.cmake b/openhaystack-mobile/windows/flutter/generated_plugins.cmake new file mode 100644 index 0000000..cede039 --- /dev/null +++ b/openhaystack-mobile/windows/flutter/generated_plugins.cmake @@ -0,0 +1,18 @@ +# +# Generated file, do not edit. +# + +list(APPEND FLUTTER_PLUGIN_LIST + flutter_secure_storage_windows + maps_launcher + url_launcher_windows +) + +set(PLUGIN_BUNDLED_LIBRARIES) + +foreach(plugin ${FLUTTER_PLUGIN_LIST}) + add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) + target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) + list(APPEND PLUGIN_BUNDLED_LIBRARIES $) + list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) +endforeach(plugin) diff --git a/openhaystack-mobile/windows/runner/CMakeLists.txt b/openhaystack-mobile/windows/runner/CMakeLists.txt new file mode 100644 index 0000000..0b899a0 --- /dev/null +++ b/openhaystack-mobile/windows/runner/CMakeLists.txt @@ -0,0 +1,17 @@ +cmake_minimum_required(VERSION 3.15) +project(runner LANGUAGES CXX) + +add_executable(${BINARY_NAME} WIN32 + "flutter_window.cpp" + "main.cpp" + "utils.cpp" + "win32_window.cpp" + "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" + "Runner.rc" + "runner.exe.manifest" +) +apply_standard_settings(${BINARY_NAME}) +target_compile_definitions(${BINARY_NAME} PRIVATE "NOMINMAX") +target_link_libraries(${BINARY_NAME} PRIVATE flutter flutter_wrapper_app) +target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") +add_dependencies(${BINARY_NAME} flutter_assemble) diff --git a/openhaystack-mobile/windows/runner/Runner.rc b/openhaystack-mobile/windows/runner/Runner.rc new file mode 100644 index 0000000..d24341c --- /dev/null +++ b/openhaystack-mobile/windows/runner/Runner.rc @@ -0,0 +1,121 @@ +// Microsoft Visual C++ generated resource script. +// +#pragma code_page(65001) +#include "resource.h" + +#define APSTUDIO_READONLY_SYMBOLS +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 2 resource. +// +#include "winres.h" + +///////////////////////////////////////////////////////////////////////////// +#undef APSTUDIO_READONLY_SYMBOLS + +///////////////////////////////////////////////////////////////////////////// +// English (United States) resources + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU) +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US + +#ifdef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// TEXTINCLUDE +// + +1 TEXTINCLUDE +BEGIN + "resource.h\0" +END + +2 TEXTINCLUDE +BEGIN + "#include ""winres.h""\r\n" + "\0" +END + +3 TEXTINCLUDE +BEGIN + "\r\n" + "\0" +END + +#endif // APSTUDIO_INVOKED + + +///////////////////////////////////////////////////////////////////////////// +// +// Icon +// + +// Icon with lowest ID value placed first to ensure application icon +// remains consistent on all systems. +IDI_APP_ICON ICON "resources\\app_icon.ico" + + +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +#ifdef FLUTTER_BUILD_NUMBER +#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER +#else +#define VERSION_AS_NUMBER 1,0,0 +#endif + +#ifdef FLUTTER_BUILD_NAME +#define VERSION_AS_STRING #FLUTTER_BUILD_NAME +#else +#define VERSION_AS_STRING "1.0.0" +#endif + +VS_VERSION_INFO VERSIONINFO + FILEVERSION VERSION_AS_NUMBER + PRODUCTVERSION VERSION_AS_NUMBER + FILEFLAGSMASK VS_FFI_FILEFLAGSMASK +#ifdef _DEBUG + FILEFLAGS VS_FF_DEBUG +#else + FILEFLAGS 0x0L +#endif + FILEOS VOS__WINDOWS32 + FILETYPE VFT_APP + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904e4" + BEGIN + VALUE "CompanyName", "com.example" "\0" + VALUE "FileDescription", "OpenHaystack2.0" "\0" + VALUE "FileVersion", VERSION_AS_STRING "\0" + VALUE "InternalName", "openhaystack_mobile" "\0" + VALUE "LegalCopyright", "Copyright (C) 2021 com.example. All rights reserved." "\0" + VALUE "OriginalFilename", "openhaystack_mobile.exe" "\0" + VALUE "ProductName", "openhaystack_mobile" "\0" + VALUE "ProductVersion", VERSION_AS_STRING "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1252 + END +END + +#endif // English (United States) resources +///////////////////////////////////////////////////////////////////////////// + + + +#ifndef APSTUDIO_INVOKED +///////////////////////////////////////////////////////////////////////////// +// +// Generated from the TEXTINCLUDE 3 resource. +// + + +///////////////////////////////////////////////////////////////////////////// +#endif // not APSTUDIO_INVOKED diff --git a/openhaystack-mobile/windows/runner/flutter_window.cpp b/openhaystack-mobile/windows/runner/flutter_window.cpp new file mode 100644 index 0000000..b43b909 --- /dev/null +++ b/openhaystack-mobile/windows/runner/flutter_window.cpp @@ -0,0 +1,61 @@ +#include "flutter_window.h" + +#include + +#include "flutter/generated_plugin_registrant.h" + +FlutterWindow::FlutterWindow(const flutter::DartProject& project) + : project_(project) {} + +FlutterWindow::~FlutterWindow() {} + +bool FlutterWindow::OnCreate() { + if (!Win32Window::OnCreate()) { + return false; + } + + RECT frame = GetClientArea(); + + // The size here must match the window dimensions to avoid unnecessary surface + // creation / destruction in the startup path. + flutter_controller_ = std::make_unique( + frame.right - frame.left, frame.bottom - frame.top, project_); + // Ensure that basic setup of the controller was successful. + if (!flutter_controller_->engine() || !flutter_controller_->view()) { + return false; + } + RegisterPlugins(flutter_controller_->engine()); + SetChildContent(flutter_controller_->view()->GetNativeWindow()); + return true; +} + +void FlutterWindow::OnDestroy() { + if (flutter_controller_) { + flutter_controller_ = nullptr; + } + + Win32Window::OnDestroy(); +} + +LRESULT +FlutterWindow::MessageHandler(HWND hwnd, UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + // Give Flutter, including plugins, an opportunity to handle window messages. + if (flutter_controller_) { + std::optional result = + flutter_controller_->HandleTopLevelWindowProc(hwnd, message, wparam, + lparam); + if (result) { + return *result; + } + } + + switch (message) { + case WM_FONTCHANGE: + flutter_controller_->engine()->ReloadSystemFonts(); + break; + } + + return Win32Window::MessageHandler(hwnd, message, wparam, lparam); +} diff --git a/openhaystack-mobile/windows/runner/flutter_window.h b/openhaystack-mobile/windows/runner/flutter_window.h new file mode 100644 index 0000000..6da0652 --- /dev/null +++ b/openhaystack-mobile/windows/runner/flutter_window.h @@ -0,0 +1,33 @@ +#ifndef RUNNER_FLUTTER_WINDOW_H_ +#define RUNNER_FLUTTER_WINDOW_H_ + +#include +#include + +#include + +#include "win32_window.h" + +// A window that does nothing but host a Flutter view. +class FlutterWindow : public Win32Window { + public: + // Creates a new FlutterWindow hosting a Flutter view running |project|. + explicit FlutterWindow(const flutter::DartProject& project); + virtual ~FlutterWindow(); + + protected: + // Win32Window: + bool OnCreate() override; + void OnDestroy() override; + LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, + LPARAM const lparam) noexcept override; + + private: + // The project to run. + flutter::DartProject project_; + + // The Flutter instance hosted by this window. + std::unique_ptr flutter_controller_; +}; + +#endif // RUNNER_FLUTTER_WINDOW_H_ diff --git a/openhaystack-mobile/windows/runner/main.cpp b/openhaystack-mobile/windows/runner/main.cpp new file mode 100644 index 0000000..4926d71 --- /dev/null +++ b/openhaystack-mobile/windows/runner/main.cpp @@ -0,0 +1,43 @@ +#include +#include +#include + +#include "flutter_window.h" +#include "utils.h" + +int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, + _In_ wchar_t *command_line, _In_ int show_command) { + // Attach to console when present (e.g., 'flutter run') or create a + // new console when running with a debugger. + if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { + CreateAndAttachConsole(); + } + + // Initialize COM, so that it is available for use in the library and/or + // plugins. + ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); + + flutter::DartProject project(L"data"); + + std::vector command_line_arguments = + GetCommandLineArguments(); + + project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); + + FlutterWindow window(project); + Win32Window::Point origin(10, 10); + Win32Window::Size size(1280, 720); + if (!window.CreateAndShow(L"openhaystack_mobile", origin, size)) { + return EXIT_FAILURE; + } + window.SetQuitOnClose(true); + + ::MSG msg; + while (::GetMessage(&msg, nullptr, 0, 0)) { + ::TranslateMessage(&msg); + ::DispatchMessage(&msg); + } + + ::CoUninitialize(); + return EXIT_SUCCESS; +} diff --git a/openhaystack-mobile/windows/runner/resource.h b/openhaystack-mobile/windows/runner/resource.h new file mode 100644 index 0000000..66a65d1 --- /dev/null +++ b/openhaystack-mobile/windows/runner/resource.h @@ -0,0 +1,16 @@ +//{{NO_DEPENDENCIES}} +// Microsoft Visual C++ generated include file. +// Used by Runner.rc +// +#define IDI_APP_ICON 101 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 102 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1001 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/openhaystack-mobile/windows/runner/resources/app_icon.ico b/openhaystack-mobile/windows/runner/resources/app_icon.ico new file mode 100644 index 0000000..c04e20c Binary files /dev/null and b/openhaystack-mobile/windows/runner/resources/app_icon.ico differ diff --git a/openhaystack-mobile/windows/runner/runner.exe.manifest b/openhaystack-mobile/windows/runner/runner.exe.manifest new file mode 100644 index 0000000..c977c4a --- /dev/null +++ b/openhaystack-mobile/windows/runner/runner.exe.manifest @@ -0,0 +1,20 @@ + + + + + PerMonitorV2 + + + + + + + + + + + + + + + diff --git a/openhaystack-mobile/windows/runner/utils.cpp b/openhaystack-mobile/windows/runner/utils.cpp new file mode 100644 index 0000000..d19bdbb --- /dev/null +++ b/openhaystack-mobile/windows/runner/utils.cpp @@ -0,0 +1,64 @@ +#include "utils.h" + +#include +#include +#include +#include + +#include + +void CreateAndAttachConsole() { + if (::AllocConsole()) { + FILE *unused; + if (freopen_s(&unused, "CONOUT$", "w", stdout)) { + _dup2(_fileno(stdout), 1); + } + if (freopen_s(&unused, "CONOUT$", "w", stderr)) { + _dup2(_fileno(stdout), 2); + } + std::ios::sync_with_stdio(); + FlutterDesktopResyncOutputStreams(); + } +} + +std::vector GetCommandLineArguments() { + // Convert the UTF-16 command line arguments to UTF-8 for the Engine to use. + int argc; + wchar_t** argv = ::CommandLineToArgvW(::GetCommandLineW(), &argc); + if (argv == nullptr) { + return std::vector(); + } + + std::vector command_line_arguments; + + // Skip the first argument as it's the binary name. + for (int i = 1; i < argc; i++) { + command_line_arguments.push_back(Utf8FromUtf16(argv[i])); + } + + ::LocalFree(argv); + + return command_line_arguments; +} + +std::string Utf8FromUtf16(const wchar_t* utf16_string) { + if (utf16_string == nullptr) { + return std::string(); + } + int target_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + -1, nullptr, 0, nullptr, nullptr); + if (target_length == 0) { + return std::string(); + } + std::string utf8_string; + utf8_string.resize(target_length); + int converted_length = ::WideCharToMultiByte( + CP_UTF8, WC_ERR_INVALID_CHARS, utf16_string, + -1, utf8_string.data(), + target_length, nullptr, nullptr); + if (converted_length == 0) { + return std::string(); + } + return utf8_string; +} diff --git a/openhaystack-mobile/windows/runner/utils.h b/openhaystack-mobile/windows/runner/utils.h new file mode 100644 index 0000000..3879d54 --- /dev/null +++ b/openhaystack-mobile/windows/runner/utils.h @@ -0,0 +1,19 @@ +#ifndef RUNNER_UTILS_H_ +#define RUNNER_UTILS_H_ + +#include +#include + +// Creates a console for the process, and redirects stdout and stderr to +// it for both the runner and the Flutter library. +void CreateAndAttachConsole(); + +// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string +// encoded in UTF-8. Returns an empty std::string on failure. +std::string Utf8FromUtf16(const wchar_t* utf16_string); + +// Gets the command line arguments passed in as a std::vector, +// encoded in UTF-8. Returns an empty std::vector on failure. +std::vector GetCommandLineArguments(); + +#endif // RUNNER_UTILS_H_ diff --git a/openhaystack-mobile/windows/runner/win32_window.cpp b/openhaystack-mobile/windows/runner/win32_window.cpp new file mode 100644 index 0000000..c10f08d --- /dev/null +++ b/openhaystack-mobile/windows/runner/win32_window.cpp @@ -0,0 +1,245 @@ +#include "win32_window.h" + +#include + +#include "resource.h" + +namespace { + +constexpr const wchar_t kWindowClassName[] = L"FLUTTER_RUNNER_WIN32_WINDOW"; + +// The number of Win32Window objects that currently exist. +static int g_active_window_count = 0; + +using EnableNonClientDpiScaling = BOOL __stdcall(HWND hwnd); + +// Scale helper to convert logical scaler values to physical using passed in +// scale factor +int Scale(int source, double scale_factor) { + return static_cast(source * scale_factor); +} + +// Dynamically loads the |EnableNonClientDpiScaling| from the User32 module. +// This API is only needed for PerMonitor V1 awareness mode. +void EnableFullDpiSupportIfAvailable(HWND hwnd) { + HMODULE user32_module = LoadLibraryA("User32.dll"); + if (!user32_module) { + return; + } + auto enable_non_client_dpi_scaling = + reinterpret_cast( + GetProcAddress(user32_module, "EnableNonClientDpiScaling")); + if (enable_non_client_dpi_scaling != nullptr) { + enable_non_client_dpi_scaling(hwnd); + FreeLibrary(user32_module); + } +} + +} // namespace + +// Manages the Win32Window's window class registration. +class WindowClassRegistrar { + public: + ~WindowClassRegistrar() = default; + + // Returns the singleton registar instance. + static WindowClassRegistrar* GetInstance() { + if (!instance_) { + instance_ = new WindowClassRegistrar(); + } + return instance_; + } + + // Returns the name of the window class, registering the class if it hasn't + // previously been registered. + const wchar_t* GetWindowClass(); + + // Unregisters the window class. Should only be called if there are no + // instances of the window. + void UnregisterWindowClass(); + + private: + WindowClassRegistrar() = default; + + static WindowClassRegistrar* instance_; + + bool class_registered_ = false; +}; + +WindowClassRegistrar* WindowClassRegistrar::instance_ = nullptr; + +const wchar_t* WindowClassRegistrar::GetWindowClass() { + if (!class_registered_) { + WNDCLASS window_class{}; + window_class.hCursor = LoadCursor(nullptr, IDC_ARROW); + window_class.lpszClassName = kWindowClassName; + window_class.style = CS_HREDRAW | CS_VREDRAW; + window_class.cbClsExtra = 0; + window_class.cbWndExtra = 0; + window_class.hInstance = GetModuleHandle(nullptr); + window_class.hIcon = + LoadIcon(window_class.hInstance, MAKEINTRESOURCE(IDI_APP_ICON)); + window_class.hbrBackground = 0; + window_class.lpszMenuName = nullptr; + window_class.lpfnWndProc = Win32Window::WndProc; + RegisterClass(&window_class); + class_registered_ = true; + } + return kWindowClassName; +} + +void WindowClassRegistrar::UnregisterWindowClass() { + UnregisterClass(kWindowClassName, nullptr); + class_registered_ = false; +} + +Win32Window::Win32Window() { + ++g_active_window_count; +} + +Win32Window::~Win32Window() { + --g_active_window_count; + Destroy(); +} + +bool Win32Window::CreateAndShow(const std::wstring& title, + const Point& origin, + const Size& size) { + Destroy(); + + const wchar_t* window_class = + WindowClassRegistrar::GetInstance()->GetWindowClass(); + + const POINT target_point = {static_cast(origin.x), + static_cast(origin.y)}; + HMONITOR monitor = MonitorFromPoint(target_point, MONITOR_DEFAULTTONEAREST); + UINT dpi = FlutterDesktopGetDpiForMonitor(monitor); + double scale_factor = dpi / 96.0; + + HWND window = CreateWindow( + window_class, title.c_str(), WS_OVERLAPPEDWINDOW | WS_VISIBLE, + Scale(origin.x, scale_factor), Scale(origin.y, scale_factor), + Scale(size.width, scale_factor), Scale(size.height, scale_factor), + nullptr, nullptr, GetModuleHandle(nullptr), this); + + if (!window) { + return false; + } + + return OnCreate(); +} + +// static +LRESULT CALLBACK Win32Window::WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + if (message == WM_NCCREATE) { + auto window_struct = reinterpret_cast(lparam); + SetWindowLongPtr(window, GWLP_USERDATA, + reinterpret_cast(window_struct->lpCreateParams)); + + auto that = static_cast(window_struct->lpCreateParams); + EnableFullDpiSupportIfAvailable(window); + that->window_handle_ = window; + } else if (Win32Window* that = GetThisFromHandle(window)) { + return that->MessageHandler(window, message, wparam, lparam); + } + + return DefWindowProc(window, message, wparam, lparam); +} + +LRESULT +Win32Window::MessageHandler(HWND hwnd, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept { + switch (message) { + case WM_DESTROY: + window_handle_ = nullptr; + Destroy(); + if (quit_on_close_) { + PostQuitMessage(0); + } + return 0; + + case WM_DPICHANGED: { + auto newRectSize = reinterpret_cast(lparam); + LONG newWidth = newRectSize->right - newRectSize->left; + LONG newHeight = newRectSize->bottom - newRectSize->top; + + SetWindowPos(hwnd, nullptr, newRectSize->left, newRectSize->top, newWidth, + newHeight, SWP_NOZORDER | SWP_NOACTIVATE); + + return 0; + } + case WM_SIZE: { + RECT rect = GetClientArea(); + if (child_content_ != nullptr) { + // Size and position the child window. + MoveWindow(child_content_, rect.left, rect.top, rect.right - rect.left, + rect.bottom - rect.top, TRUE); + } + return 0; + } + + case WM_ACTIVATE: + if (child_content_ != nullptr) { + SetFocus(child_content_); + } + return 0; + } + + return DefWindowProc(window_handle_, message, wparam, lparam); +} + +void Win32Window::Destroy() { + OnDestroy(); + + if (window_handle_) { + DestroyWindow(window_handle_); + window_handle_ = nullptr; + } + if (g_active_window_count == 0) { + WindowClassRegistrar::GetInstance()->UnregisterWindowClass(); + } +} + +Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { + return reinterpret_cast( + GetWindowLongPtr(window, GWLP_USERDATA)); +} + +void Win32Window::SetChildContent(HWND content) { + child_content_ = content; + SetParent(content, window_handle_); + RECT frame = GetClientArea(); + + MoveWindow(content, frame.left, frame.top, frame.right - frame.left, + frame.bottom - frame.top, true); + + SetFocus(child_content_); +} + +RECT Win32Window::GetClientArea() { + RECT frame; + GetClientRect(window_handle_, &frame); + return frame; +} + +HWND Win32Window::GetHandle() { + return window_handle_; +} + +void Win32Window::SetQuitOnClose(bool quit_on_close) { + quit_on_close_ = quit_on_close; +} + +bool Win32Window::OnCreate() { + // No-op; provided for subclasses. + return true; +} + +void Win32Window::OnDestroy() { + // No-op; provided for subclasses. +} diff --git a/openhaystack-mobile/windows/runner/win32_window.h b/openhaystack-mobile/windows/runner/win32_window.h new file mode 100644 index 0000000..17ba431 --- /dev/null +++ b/openhaystack-mobile/windows/runner/win32_window.h @@ -0,0 +1,98 @@ +#ifndef RUNNER_WIN32_WINDOW_H_ +#define RUNNER_WIN32_WINDOW_H_ + +#include + +#include +#include +#include + +// A class abstraction for a high DPI-aware Win32 Window. Intended to be +// inherited from by classes that wish to specialize with custom +// rendering and input handling +class Win32Window { + public: + struct Point { + unsigned int x; + unsigned int y; + Point(unsigned int x, unsigned int y) : x(x), y(y) {} + }; + + struct Size { + unsigned int width; + unsigned int height; + Size(unsigned int width, unsigned int height) + : width(width), height(height) {} + }; + + Win32Window(); + virtual ~Win32Window(); + + // Creates and shows a win32 window with |title| and position and size using + // |origin| and |size|. New windows are created on the default monitor. Window + // sizes are specified to the OS in physical pixels, hence to ensure a + // consistent size to will treat the width height passed in to this function + // as logical pixels and scale to appropriate for the default monitor. Returns + // true if the window was created successfully. + bool CreateAndShow(const std::wstring& title, + const Point& origin, + const Size& size); + + // Release OS resources associated with window. + void Destroy(); + + // Inserts |content| into the window tree. + void SetChildContent(HWND content); + + // Returns the backing Window handle to enable clients to set icon and other + // window properties. Returns nullptr if the window has been destroyed. + HWND GetHandle(); + + // If true, closing this window will quit the application. + void SetQuitOnClose(bool quit_on_close); + + // Return a RECT representing the bounds of the current client area. + RECT GetClientArea(); + + protected: + // Processes and route salient window messages for mouse handling, + // size change and DPI. Delegates handling of these to member overloads that + // inheriting classes can handle. + virtual LRESULT MessageHandler(HWND window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Called when CreateAndShow is called, allowing subclass window-related + // setup. Subclasses should return false if setup fails. + virtual bool OnCreate(); + + // Called when Destroy is called. + virtual void OnDestroy(); + + private: + friend class WindowClassRegistrar; + + // OS callback called by message pump. Handles the WM_NCCREATE message which + // is passed when the non-client area is being created and enables automatic + // non-client DPI scaling so that the non-client area automatically + // responsponds to changes in DPI. All other messages are handled by + // MessageHandler. + static LRESULT CALLBACK WndProc(HWND const window, + UINT const message, + WPARAM const wparam, + LPARAM const lparam) noexcept; + + // Retrieves a class instance pointer for |window| + static Win32Window* GetThisFromHandle(HWND const window) noexcept; + + bool quit_on_close_ = false; + + // window handle for top level window. + HWND window_handle_ = nullptr; + + // window handle for hosted content. + HWND child_content_ = nullptr; +}; + +#endif // RUNNER_WIN32_WINDOW_H_