carp_webservices 3.0.1
carp_webservices: ^3.0.1 copied to clipboard
Flutter API for accessing the CARP web services - authentication, file management, data points, and app-specific collections of documents.
example/lib/main.dart
import 'package:carp_mobile_sensing/carp_mobile_sensing.dart';
import 'package:flutter/material.dart';
import 'package:carp_webservices/carp_services/carp_services.dart';
import 'package:carp_webservices/carp_auth/carp_auth.dart';
import 'package:carp_core/carp_core.dart';
import 'package:oidc/oidc.dart';
// The URI of the CAWS server to connect to.
const String cawsUri = 'dev.carp.dk';
void main() {
CarpMobileSensing.ensureInitialized();
runApp(MyApp());
}
class MyApp extends StatelessWidget {
Widget build(BuildContext context) {
return MaterialApp(
title: 'CARP Backend Demo',
home: HomePage(),
);
}
}
class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
void initState() {
super.initState();
bloc.init();
}
void dispose() {
bloc.dispose();
super.dispose();
}
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
StreamBuilder(
stream: CarpAuthService().manager?.userChanges(),
builder: (BuildContext context, AsyncSnapshot<OidcUser?> event) {
if (!event.hasData) {
return TextButton.icon(
onPressed: () async => bloc.currentUser =
await CarpAuthService().authenticate(),
icon: Icon(Icons.login),
label: Text(
'LOGIN',
style: TextStyle(fontSize: 35),
),
);
} else {
return TextButton.icon(
onPressed: () => CarpAuthService().logout(),
icon: Icon(Icons.logout),
label: Text(
'LOGOUT',
style: TextStyle(fontSize: 35),
),
);
}
}),
TextButton.icon(
onPressed: () => bloc.getStudyInvitation(context),
icon: Icon(Icons.mail),
label: Text(
'GET STUDY',
style: TextStyle(fontSize: 35),
),
),
StreamBuilder(
stream: CarpAuthService().authStateChanges,
builder: (BuildContext context, AsyncSnapshot<AuthEvent> event) =>
Padding(
padding: EdgeInsets.fromLTRB(10, 30, 10, 0),
child: Text(
(CarpAuthService().authenticated)
? 'Authenticated as ${CarpAuthService().currentUser.firstName} ${CarpAuthService().currentUser.lastName}'
: 'Not authenticated',
textAlign: TextAlign.center,
),
),
)
],
)),
);
}
}
class AppBLoC {
ActiveParticipationInvitation? _invitation;
final Uri _uri = Uri(
scheme: 'https',
host: cawsUri,
pathSegments: [
'auth',
'realms',
'Carp',
],
);
late CarpApp _app = CarpApp(
name: "CAWS @ DTU",
uri: _uri.replace(pathSegments: []),
);
late CarpAuthProperties _authProperties = CarpAuthProperties(
authURL: _uri,
clientId: 'studies-app',
redirectURI: Uri.parse('carp-studies-auth://auth'),
discoveryURL: _uri.replace(pathSegments: [
..._uri.pathSegments,
]),
);
CarpApp get app => _app;
CarpUser? currentUser;
bool get authenticated => currentUser != null;
String? get studyId => _invitation?.studyId;
String? get studyDeploymentId => _invitation?.studyDeploymentId;
Future<void> init() async {
await CarpAuthService().configure(_authProperties);
CarpService().configure(app);
}
void dispose() async {}
Future<ActiveParticipationInvitation?> getStudyInvitation(
BuildContext context) async {
// configure a participant service based on the carp service already configured
CarpParticipationService().configureFrom(CarpService());
_invitation = await CarpParticipationService().getStudyInvitation(context);
print('CARP Study Invitation: $_invitation');
// check that the app has been updated to reflect the study id and deployment id
print('Study ID: ${app.studyId}, Deployment ID: ${app.studyDeploymentId}');
return _invitation;
}
}
final bloc = AppBLoC();