mirror of
https://bitbucket.org/myhomie/myhomie_app.git
synced 2025-12-06 00:51:19 +00:00
198 lines
5.7 KiB
Dart
198 lines
5.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:mqtt_client/mqtt_client.dart';
|
|
import 'package:mqtt_client/mqtt_server_client.dart';
|
|
import 'package:mycoreapi/api.dart';
|
|
import 'package:myhomie_app/client.dart';
|
|
|
|
import 'constants.dart';
|
|
|
|
void main() {
|
|
String initialRoute;
|
|
|
|
initialRoute = '/home';
|
|
|
|
final MyApp myApp = MyApp(
|
|
initialRoute: initialRoute,
|
|
//context: localContext,
|
|
);
|
|
|
|
runApp(myApp);
|
|
}
|
|
|
|
class MyApp extends StatefulWidget {
|
|
final String initialRoute;
|
|
//final Context context;
|
|
MyApp({this.initialRoute});
|
|
|
|
// This widget is the root of your application.
|
|
@override
|
|
_MyAppState createState() => _MyAppState();
|
|
}
|
|
|
|
class _MyAppState extends State<MyApp> {
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
title: 'MyHomie App Demo',
|
|
initialRoute: widget.initialRoute,
|
|
/*supportedLocales: [
|
|
const Locale('en', 'US'),
|
|
//const Locale('fr', 'FR'),
|
|
],*/
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.blue,
|
|
scaffoldBackgroundColor: kBackgroundColor,
|
|
//fontFamily: "Vollkorn",
|
|
textTheme: TextTheme(bodyText1: TextStyle(color: kBodyTextColor)),
|
|
visualDensity: VisualDensity.adaptivePlatformDensity,
|
|
),
|
|
routes: {
|
|
'/home': (context) => MyHomePage(title: 'MyHomie App Demo Home Page')
|
|
}
|
|
);
|
|
}
|
|
}
|
|
|
|
class MyHomePage extends StatefulWidget {
|
|
MyHomePage({Key key, this.title}) : super(key: key);
|
|
final String title;
|
|
|
|
@override
|
|
_MyHomePageState createState() => _MyHomePageState();
|
|
}
|
|
|
|
class _MyHomePageState extends State<MyHomePage> {
|
|
int _counter = 0;
|
|
//final MqttServerClient client = MqttServerClient.withPort('192.168.31.140', 'flutter_client', 1883); // TODO Add switch button or check online connexion if local broker available
|
|
//final MqttServerClient client = MqttServerClient.withPort('myhomie.be', 'flutter_client00', 1883); // TODO ONLINE
|
|
final clientAPI = Client();
|
|
|
|
void _incrementCounter() {
|
|
setState(() {
|
|
_counter++;
|
|
|
|
/*print("client.connectionStatus !!! ==" + client.connectionStatus.toString());
|
|
if (client.connectionStatus.state == MqttConnectionState.connected) {
|
|
const pubTopic = 'topic/test';
|
|
final builder = MqttClientPayloadBuilder();
|
|
builder.addString('Hello MQTT');
|
|
client.publishMessage(pubTopic, MqttQos.atLeastOnce, builder.payload);
|
|
}*/
|
|
});
|
|
}
|
|
|
|
void authenticateTRY() async {
|
|
print("try auth.. ");
|
|
LoginDTO loginDTO = new LoginDTO(email: "test", password: "test");
|
|
LoginDTO user = await clientAPI.authenticationApi.authenticationAuthenticateWithJson(loginDTO);
|
|
print("USER ??");
|
|
print(user);
|
|
// TODO Call authenticationAuthenticateWithJson to retrieve token and set apiclient bearer token with the result
|
|
|
|
/*var user2 = await clientAPI.userApi.userGet2("604a33639b4a377a413045b9");
|
|
print("user2 values ??");
|
|
print(user2.email);*/
|
|
}
|
|
|
|
// connection succeeded
|
|
void onConnected() {
|
|
print('Connected !!!!!!!!!!!! ----------------------------------');
|
|
|
|
/*client.updates.listen((List<MqttReceivedMessage<MqttMessage>> c) {
|
|
final MqttPublishMessage message = c[0].payload;
|
|
final payload = MqttPublishPayload.bytesToStringAsString(message.payload.message);
|
|
print('Received message:$payload from topic: ${c[0].topic}>');
|
|
});*/
|
|
}
|
|
|
|
// unconnected
|
|
void onDisconnected() {
|
|
print('Disconnected');
|
|
}
|
|
|
|
// subscribe to topic succeeded
|
|
void onSubscribed(String topic) {
|
|
print('Subscribed topic: $topic');
|
|
}
|
|
|
|
// subscribe to topic failed
|
|
void onSubscribeFail(String topic) {
|
|
print('Failed to subscribe $topic');
|
|
}
|
|
|
|
// unsubscribe succeeded
|
|
void onUnsubscribed(String topic) {
|
|
print('Unsubscribed topic: $topic');
|
|
}
|
|
|
|
Future<MqttServerClient> connect() async {
|
|
/*client.logging(on: false);
|
|
client.keepAlivePeriod = 20;
|
|
client.onDisconnected = onDisconnected;
|
|
client.onConnected = onConnected;
|
|
client.onSubscribed = onSubscribed;*/
|
|
|
|
/// Security context
|
|
/*SecurityContext context = new SecurityContext()
|
|
..useCertificateChain('path/to/my_cert.pem')
|
|
..usePrivateKey('path/to/my_key.pem', password: 'key_password')
|
|
..setClientAuthorities('path/to/client.crt', password: 'password');*/
|
|
//client.setProtocolV31();
|
|
//client.secure = true;
|
|
//client.securityContext = context;
|
|
|
|
final connMessage = MqttConnectMessage()
|
|
.authenticateAs('thomas', 'MyCore,1') // TODO ONLINE
|
|
/*.keepAliveFor(60)
|
|
.withWillTopic('willtopic')
|
|
.withWillMessage('Will message')*/
|
|
.withClientIdentifier("TESSST")
|
|
.startClean();
|
|
//.withWillQos(MqttQos.atLeastOnce);
|
|
//client.secure = true;
|
|
/*client.connectionMessage = connMessage;
|
|
client.autoReconnect = true;
|
|
try {
|
|
await client.connect();
|
|
} catch (e) {
|
|
print('Exception: $e');
|
|
client.disconnect();
|
|
}
|
|
|
|
client.subscribe("#", MqttQos.atLeastOnce);
|
|
*/
|
|
//return client;
|
|
return null;
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
connect();
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(widget.title),
|
|
),
|
|
body: Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: <Widget>[
|
|
Text(
|
|
'You have pushed the button this many times:',
|
|
),
|
|
Text(
|
|
'$_counter',
|
|
style: Theme.of(context).textTheme.headline4,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
floatingActionButton: FloatingActionButton(
|
|
onPressed: authenticateTRY,
|
|
tooltip: 'Increment',
|
|
child: Icon(Icons.add),
|
|
),
|
|
);
|
|
}
|
|
} |