Merge branch 'Enzo'
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
3470feff12
@ -1,44 +0,0 @@
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import 'package:smartfit_app_mobile/modele/api/i_data_strategy.dart';
|
||||
import 'package:smartfit_app_mobile/modele/api/request_api.dart';
|
||||
import 'package:smartfit_app_mobile/modele/manager_file.dart';
|
||||
import 'package:smartfit_app_mobile/modele/user.dart';
|
||||
import 'package:tuple/tuple.dart';
|
||||
|
||||
class ListActivityUtile {
|
||||
final IDataStrategy _strategy = RequestApi();
|
||||
final ManagerFile _managerFile = ManagerFile();
|
||||
|
||||
Future<void> getContentOnTheFirstFileMobile(BuildContext context) async {
|
||||
Tuple2 result = await _strategy.getFile(
|
||||
Provider.of<User>(context, listen: false).token,
|
||||
Provider.of<User>(context, listen: false).listActivity[0].fileUuid);
|
||||
if (result.item1 == false) {
|
||||
//Erreur
|
||||
//print(result);
|
||||
return;
|
||||
}
|
||||
File file = File(
|
||||
"${await _managerFile.localPath}/${Provider.of<User>(context, listen: false).listActivity[0].nameFile}");
|
||||
await file.create();
|
||||
await file.writeAsBytes(result.item2);
|
||||
Provider.of<User>(context, listen: false).listActivity[0].contentActivity =
|
||||
await _managerFile.readFitFileWhithFile(file);
|
||||
}
|
||||
|
||||
Future<void> getContentOnTheFirstFileWeb(BuildContext context) async {
|
||||
User user = Provider.of<User>(context, listen: false);
|
||||
Tuple2 result =
|
||||
await _strategy.getFile(user.token, user.listActivity[0].fileUuid);
|
||||
if (result.item1 == false) {
|
||||
//Erreur
|
||||
//print(result);
|
||||
return;
|
||||
}
|
||||
Provider.of<User>(context, listen: false).listActivity[0].contentActivity =
|
||||
await _managerFile.readFitFileWeb(result.item2);
|
||||
}
|
||||
}
|
@ -0,0 +1,74 @@
|
||||
import 'dart:convert';
|
||||
import 'dart:typed_data';
|
||||
import 'package:csv/csv.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:provider/provider.dart';
|
||||
import 'package:smartfit_app_mobile/modele/activity.dart';
|
||||
import 'package:smartfit_app_mobile/modele/api/i_data_strategy.dart';
|
||||
import 'package:smartfit_app_mobile/modele/api/request_api.dart';
|
||||
import 'package:smartfit_app_mobile/modele/manager_file.dart';
|
||||
import 'package:smartfit_app_mobile/modele/user.dart';
|
||||
import 'package:tuple/tuple.dart';
|
||||
|
||||
class ListActivityUtile {
|
||||
final IDataStrategy _strategy = RequestApi();
|
||||
final ManagerFile _managerFile = ManagerFile();
|
||||
|
||||
Future<Tuple2<bool, String>> getContentActivity(BuildContext context) async {
|
||||
Tuple2 result = await _strategy.getFile(
|
||||
Provider.of<User>(context, listen: false).token,
|
||||
Provider.of<User>(context, listen: false).listActivity[0].fileUuid);
|
||||
if (result.item1 == false) {
|
||||
return Tuple2(result.item1, result.item2);
|
||||
}
|
||||
Provider.of<User>(context, listen: false).listActivity[0].contentActivity =
|
||||
List.from(_managerFile.convertByteIntoCSV(result.item2));
|
||||
return const Tuple2(true, "Yeah");
|
||||
}
|
||||
|
||||
Future<Tuple2<bool, String>> getFiles(
|
||||
String token, BuildContext context) async {
|
||||
bool notZero = false;
|
||||
Tuple2 result = await _strategy
|
||||
.getFiles(Provider.of<User>(context, listen: false).token);
|
||||
if (result.item1 == false) {
|
||||
return Tuple2(result.item1, result.item2);
|
||||
}
|
||||
|
||||
for (Map<String, dynamic> element in result.item2) {
|
||||
if (!notZero) {
|
||||
Provider.of<User>(context, listen: false).listActivity.clear();
|
||||
notZero = true;
|
||||
}
|
||||
Provider.of<User>(context, listen: false).addActivity(ActivityOfUser(
|
||||
element["creation_date"].toString(),
|
||||
element["category"].toString(),
|
||||
element["uuid"].toString(),
|
||||
element["filename"].toString()));
|
||||
}
|
||||
|
||||
if (notZero) {
|
||||
await getContentActivity(context);
|
||||
}
|
||||
return const Tuple2(true, "Yeah");
|
||||
}
|
||||
|
||||
Future<Tuple2<bool, String>> addFile(
|
||||
Uint8List bytes, String filename, String token) async {
|
||||
// -- Transormer le fit en CSV
|
||||
List<List<String>> csv = _managerFile.convertBytesFitFileIntoCSVList(bytes);
|
||||
String csvString = const ListToCsvConverter().convert(csv);
|
||||
Uint8List byteCSV = Uint8List.fromList(utf8.encode(csvString));
|
||||
// --- Save Local
|
||||
// --- Api
|
||||
String categoryActivity = filename.split("_").first.toLowerCase();
|
||||
String dateActivity = filename.split("_")[1].split("T").first;
|
||||
|
||||
Tuple2<bool, String> result = await _strategy.uploadFileByte(
|
||||
token, byteCSV, filename, categoryActivity, dateActivity);
|
||||
if (result.item1 == false) {
|
||||
return Tuple2(false, result.item2);
|
||||
}
|
||||
return const Tuple2(true, "Yeah");
|
||||
}
|
||||
}
|
@ -1,406 +0,0 @@
|
||||
/*
|
||||
import 'dart:convert';
|
||||
import 'package:crypto/crypto.dart';
|
||||
import 'package:csv/csv.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:path_provider/path_provider.dart';
|
||||
import 'package:file_picker/file_picker.dart';
|
||||
import 'dart:io';
|
||||
|
||||
import 'package:smartfit_app_mobile/modele/api/i_data_strategy.dart';
|
||||
import 'package:smartfit_app_mobile/modele/api/request_api.dart';
|
||||
import 'package:smartfit_app_mobile/modele/manager_file.dart';
|
||||
import 'package:tuple/tuple.dart';
|
||||
|
||||
// ----------- File --------------- //
|
||||
|
||||
// Dossier de l'application
|
||||
Future<String> get _localPath async {
|
||||
final directory = await getApplicationDocumentsDirectory();
|
||||
return directory.path;
|
||||
}
|
||||
|
||||
// Uri du fichier
|
||||
Future<File> get _localFile async {
|
||||
final path = await _localPath;
|
||||
return File('$path/counter.txt');
|
||||
}
|
||||
|
||||
Future<File> writeCounter(int counter) async {
|
||||
final file = await _localFile;
|
||||
// Write the file
|
||||
return file.writeAsString('$counter');
|
||||
}
|
||||
|
||||
Future<int> readCounter() async {
|
||||
try {
|
||||
final file = await _localFile;
|
||||
|
||||
// Read the file
|
||||
final contents = await file.readAsString();
|
||||
|
||||
return int.parse(contents);
|
||||
} catch (e) {
|
||||
// If encountering an error, return 0
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
String getPlatforme() {
|
||||
if (kIsWeb) {
|
||||
return "Web";
|
||||
}
|
||||
if (Platform.isAndroid) {
|
||||
return "Android";
|
||||
}
|
||||
if (Platform.isWindows) {
|
||||
return "Windows";
|
||||
}
|
||||
if (Platform.isMacOS) {
|
||||
return "MacOS";
|
||||
}
|
||||
return "Null";
|
||||
}
|
||||
|
||||
// File picker
|
||||
|
||||
// ------------------------------------------------- //
|
||||
|
||||
class TestPage extends StatefulWidget {
|
||||
const TestPage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
State<TestPage> createState() => _TestPage();
|
||||
}
|
||||
|
||||
class _TestPage extends State<TestPage> {
|
||||
// Lire un fichier avec picker
|
||||
FilePickerResult? result;
|
||||
IDataStrategy strategy = RequestApi();
|
||||
String platforme = getPlatforme();
|
||||
|
||||
//late File x = File(file.path);
|
||||
Future<void> readFile() async {
|
||||
ManagerFile x = ManagerFile();
|
||||
PlatformFile t = result!.files.single;
|
||||
String? y = t.path;
|
||||
if (t.path == null) {
|
||||
print("t");
|
||||
} else {
|
||||
List<dynamic> result = await x.readFitFile(y!);
|
||||
|
||||
//print(x.getDistanceWithTime(ActivityOfUser(result)));
|
||||
//print(x.getDistance(ActivityOfUser(result)));
|
||||
//print(x.getAltitudeWithTime(ActivityOfUser(result)));
|
||||
//print(x.getSpeedWithTime(ActivityOfUser(result)));
|
||||
final csv = const ListToCsvConverter().convert(result.cast<List?>());
|
||||
File f = File(await x.localPath + "/fit2.csv");
|
||||
f.createSync();
|
||||
await f.writeAsString(csv);
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> createUser() async {
|
||||
String mds = "1234";
|
||||
var byte = utf8.encode(mds);
|
||||
var digest = sha256.convert(byte);
|
||||
print(digest.toString());
|
||||
print("Appel");
|
||||
Tuple2<bool, String> res =
|
||||
await strategy.postUser("toto@gmail.com", digest.toString(), "toto");
|
||||
print(res.item1);
|
||||
print(res.item2);
|
||||
}
|
||||
|
||||
Future<void> login() async {
|
||||
String mds = "1234";
|
||||
var byte = utf8.encode(mds);
|
||||
var digest = sha256.convert(byte);
|
||||
print(digest.toString());
|
||||
print("Appel");
|
||||
Tuple2<bool, String> res =
|
||||
await strategy.connexion("1234", digest.toString());
|
||||
print(res.item1);
|
||||
print(res.item2);
|
||||
}
|
||||
|
||||
Future<void> deleteUser() async {
|
||||
String token =
|
||||
"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1dWlkIjoiYjA3OThmMjAtN2ZiMy0xMWVlLWJhZmQtMDI0MjBhNWEwMDFmIiwiZXhwIjoxNzA0ODgyNDI3fQ.2_bnvEC7_pwchielF3Kpu9fFtXDv_KabdOU8T07UnWI";
|
||||
print("Appel");
|
||||
Tuple2<bool, String> res = await strategy.deleteUser(token);
|
||||
print(res.item1);
|
||||
print(res.item2);
|
||||
}
|
||||
|
||||
Future<void> getFiles() async {
|
||||
String token =
|
||||
"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1dWlkIjoiOGJiNDdmMDAtODJkNi0xMWVlLTkzMTMtMDI0MjBhNWEwMDFmIiwiZXhwIjoxNzA1MjI4MTUyfQ.9ADC65f2rNI_llytvhA6tX0NM9_O3-2RlwPXqV0yYcI";
|
||||
print("Appel");
|
||||
Tuple2 res = await strategy.getFiles(token);
|
||||
print(res.item1);
|
||||
print(res.item2);
|
||||
}
|
||||
|
||||
Future<void> modifAttribut() async {
|
||||
String nameAtt = "username";
|
||||
String newValue = "toto2";
|
||||
String token =
|
||||
"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1dWlkIjoiOGUyYWVmMTItN2ZiNC0xMWVlLWJhZmQtMDI0MjBhNWEwMDFmIiwiZXhwIjoxNzA0ODgzMDM4fQ.umN7LmUDbKUOeIToLcsOUIioQ7u4wsReHggRDB68VPQ";
|
||||
print("Appel");
|
||||
Tuple2 res = await strategy.modifAttribut(token, nameAtt, newValue);
|
||||
print(res.item1);
|
||||
print(res.item2);
|
||||
}
|
||||
|
||||
Future<void> uploadFile() async {
|
||||
PlatformFile t = result!.files.single;
|
||||
String token =
|
||||
"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1dWlkIjoiOGJiNDdmMDAtODJkNi0xMWVlLTkzMTMtMDI0MjBhNWEwMDFmIiwiZXhwIjoxNzA1MjI4MTUyfQ.9ADC65f2rNI_llytvhA6tX0NM9_O3-2RlwPXqV0yYcI";
|
||||
String? lol = t.path!;
|
||||
print("Appel");
|
||||
Tuple2 res = await strategy.uploadFile(token, File(lol));
|
||||
print(res.item1);
|
||||
print(res.item2);
|
||||
}
|
||||
|
||||
Future<void> getOneFile() async {
|
||||
String ui = "fc6e234c-7fc6-11ee-bafd-02420a5a001f";
|
||||
String token =
|
||||
"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1dWlkIjoiOGUyYWVmMTItN2ZiNC0xMWVlLWJhZmQtMDI0MjBhNWEwMDFmIiwiZXhwIjoxNzA0ODgzOTE3fQ.TUdrGEo7A0auQlUfO5RQm874QWuGXFBSKbJ8qTGPF2M";
|
||||
print("Appel");
|
||||
Tuple2 res = await strategy.getFile(token, ui);
|
||||
print(res.item1);
|
||||
print(res.item2);
|
||||
|
||||
ManagerFile x = ManagerFile();
|
||||
File file = File("${await x.localPath}/Walking_2023-11-08T10_57_28.fit");
|
||||
await file.create();
|
||||
await file.writeAsBytes(res.item2);
|
||||
print(await x.localPath);
|
||||
print("Save");
|
||||
|
||||
print(await x
|
||||
.readFitFile("${await x.localPath}/Walking_2023-11-08T10_57_28.fit"));
|
||||
}
|
||||
|
||||
Future<void> getInfoUser() async {
|
||||
String token =
|
||||
"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1dWlkIjoiOGUyYWVmMTItN2ZiNC0xMWVlLWJhZmQtMDI0MjBhNWEwMDFmIiwiZXhwIjoxNzA0ODgzOTE3fQ.TUdrGEo7A0auQlUfO5RQm874QWuGXFBSKbJ8qTGPF2M";
|
||||
Tuple2 res = await strategy.getInfoUser(token);
|
||||
print(res.item1);
|
||||
print(res.item2);
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
User w = context.watch<User>();
|
||||
|
||||
return Scaffold(
|
||||
body: Column(
|
||||
children: [
|
||||
const Text('A random AWESOME idea:'),
|
||||
const Text("User"),
|
||||
|
||||
// ↓ Add this.
|
||||
ElevatedButton(
|
||||
onPressed: () {
|
||||
print('button pressed!');
|
||||
},
|
||||
child: Text('Next'),
|
||||
),
|
||||
ElevatedButton(
|
||||
onPressed: () async {
|
||||
result = await FilePicker.platform.pickFiles();
|
||||
if (result == null) {
|
||||
print("No file selected");
|
||||
} else {
|
||||
for (var element in result!.files) {
|
||||
print(element.name);
|
||||
}
|
||||
}
|
||||
},
|
||||
child: const Text("File - ")),
|
||||
ElevatedButton(onPressed: login, child: const Text("Connexion")),
|
||||
ElevatedButton(
|
||||
onPressed: createUser, child: const Text("Create User")),
|
||||
ElevatedButton(
|
||||
onPressed: deleteUser, child: const Text("Delete User")),
|
||||
ElevatedButton(onPressed: readFile, child: const Text("ReadFile")),
|
||||
ElevatedButton(onPressed: getFiles, child: const Text("getFiles")),
|
||||
ElevatedButton(
|
||||
onPressed: modifAttribut, child: const Text("modif attribut")),
|
||||
ElevatedButton(
|
||||
onPressed: uploadFile, child: const Text("Upload File")),
|
||||
ElevatedButton(
|
||||
onPressed: getOneFile, child: const Text("Get One File")),
|
||||
ElevatedButton(
|
||||
onPressed: getInfoUser, child: const Text("Get info User")),
|
||||
Text(platforme),
|
||||
Text(w.email),
|
||||
Text(context.watch<User>().username),
|
||||
Text(Provider.of<User>(context).username)
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class MyHomePage extends StatefulWidget {
|
||||
const MyHomePage({super.key, required this.title});
|
||||
|
||||
// This widget is the home page of your application. It is stateful, meaning
|
||||
// that it has a State object (defined below) that contains fields that affect
|
||||
// how it looks.
|
||||
|
||||
// This class is the configuration for the state. It holds the values (in this
|
||||
// case the title) provided by the parent (in this case the App widget) and
|
||||
// used by the build method of the State. Fields in a Widget subclass are
|
||||
// always marked "final".
|
||||
|
||||
final String title;
|
||||
|
||||
@override
|
||||
State<MyHomePage> createState() => _MyHomePageState();
|
||||
}
|
||||
|
||||
class _MyHomePageState extends State<MyHomePage> {
|
||||
int _counter = 0;
|
||||
|
||||
void _incrementCounter() {
|
||||
setState(() {
|
||||
// This call to setState tells the Flutter framework that something has
|
||||
// changed in this State, which causes it to rerun the build method below
|
||||
// so that the display can reflect the updated values. If we changed
|
||||
// _counter without calling setState(), then the build method would not be
|
||||
// called again, and so nothing would appear to happen.
|
||||
_counter++;
|
||||
});
|
||||
}
|
||||
|
||||
void _updateText(String text) {
|
||||
setState(() {
|
||||
test = text;
|
||||
});
|
||||
}
|
||||
|
||||
IDataStrategy tmp = RequestApi();
|
||||
//late Future<String> val = tmp.GetFile("x", "x");
|
||||
late Future<String> val = tmp.test();
|
||||
final TextEditingController _controller = TextEditingController();
|
||||
String test = "Null";
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
// This method is rerun every time setState is called, for instance as done
|
||||
// by the _incrementCounter method above.
|
||||
//
|
||||
// The Flutter framework has been optimized to make rerunning build methods
|
||||
// fast, so that you can just rebuild anything that needs updating rather
|
||||
// than having to individually change instances of widgets.
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
// TRY THIS: Try changing the color here to a specific color (to
|
||||
// Colors.amber, perhaps?) and trigger a hot reload to see the AppBar
|
||||
// change color while the other colors stay the same.
|
||||
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
|
||||
// Here we take the value from the MyHomePage object that was created by
|
||||
// the App.build method, and use it to set our appbar title.
|
||||
title: Text(widget.title),
|
||||
),
|
||||
|
||||
body: Center(
|
||||
// Center is a layout widget. It takes a single child and positions it
|
||||
// in the middle of the parent.
|
||||
child: Column(
|
||||
// Column is also a layout widget. It takes a list of children and
|
||||
// arranges them vertically. By default, it sizes itself to fit its
|
||||
// children horizontally, and tries to be as tall as its parent.
|
||||
//
|
||||
// Column has various properties to control how it sizes itself and
|
||||
// how it positions its children. Here we use mainAxisAlignment to
|
||||
// center the children vertically; the main axis here is the vertical
|
||||
// axis because Columns are vertical (the cross axis would be
|
||||
// horizontal).
|
||||
//
|
||||
// TRY THIS: Invoke "debug painting" (choose the "Toggle Debug Paint"
|
||||
// action in the IDE, or press "p" in the console), to see the
|
||||
// wireframe for each widget.
|
||||
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
const Text('TEST'),
|
||||
Text(
|
||||
'$_counter',
|
||||
style: Theme.of(context).textTheme.headlineMedium,
|
||||
),
|
||||
FutureBuilder<String>(
|
||||
future: val,
|
||||
builder: (context, snapshot) {
|
||||
if (snapshot.connectionState == ConnectionState.done) {
|
||||
if (snapshot.hasData) {
|
||||
return Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: <Widget>[Text(snapshot.data!)],
|
||||
);
|
||||
}
|
||||
} else {
|
||||
return const Text("FAIL");
|
||||
}
|
||||
},
|
||||
)
|
||||
],
|
||||
),
|
||||
),
|
||||
floatingActionButton: FloatingActionButton(
|
||||
onPressed: _incrementCounter,
|
||||
tooltip: 'Increment',
|
||||
child: const Icon(Icons.add),
|
||||
), // This trailing comma makes auto-formatting nicer for build methods.
|
||||
body: Container(
|
||||
alignment: Alignment.center,
|
||||
padding: const EdgeInsets.all(8),
|
||||
child: FutureBuilder<String>(
|
||||
future: val,
|
||||
builder: (context, snapshot) {
|
||||
if (snapshot.connectionState == ConnectionState.done) {
|
||||
if (snapshot.hasData) {
|
||||
return Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: <Widget>[
|
||||
Text(snapshot.data!),
|
||||
Text(test),
|
||||
TextField(
|
||||
controller: _controller,
|
||||
decoration: const InputDecoration(
|
||||
hintText: 'Enter Title',
|
||||
),
|
||||
),
|
||||
ElevatedButton(
|
||||
onPressed: () {
|
||||
_updateText(_controller.text);
|
||||
},
|
||||
child: const Text('Update Data'),
|
||||
),
|
||||
ElevatedButton(
|
||||
onPressed: () {
|
||||
Navigator.of(context).push(MaterialPageRoute(
|
||||
builder: (context) => const TestPage()));
|
||||
},
|
||||
child: const Text("Changer de page"))
|
||||
],
|
||||
);
|
||||
} else if (snapshot.hasError) {
|
||||
return Text('${snapshot.error}');
|
||||
}
|
||||
}
|
||||
|
||||
return const CircularProgressIndicator();
|
||||
},
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
*/
|
Loading…
Reference in new issue