planningcenter_api 0.1.0 planningcenter_api: ^0.1.0 copied to clipboard
Supports nearly 100% of the Planning Center public API.
example/planningcenter_api_example.dart
import 'dart:io'; // to exit the script faster
import 'dart:convert'; // for the pretty printing of json
import 'package:planningcenter_api/planningcenter_api.dart';
/// this is where I store my [appid] and [secret] constants
import '../secrets.dart';
/// This funciton might come in handy for you sometime :-)
String pretty(Object obj) {
JsonEncoder encoder = JsonEncoder.withIndent(' ', (obj) {
try {
return obj.toJson();
} catch (_) {
return obj.toString();
}
});
return encoder.convert(obj);
}
/// here's the real example code
void main() async {
// begin by initializing the PlanningCenter api
PlanningCenter.init(appid, secret);
// Now, all classes beginning with Pco are available for use
/// Get the service types on the default organization (defaults to grabbing 25)
/// will return List<PcoServicesServiceType>
var serviceTypes = await PcoServicesServiceType.getMany();
if (serviceTypes.isNotEmpty) {
var service = serviceTypes.first;
print('Found Service Type: ${service.name}');
/// most class instances have methods allowing you to fetch related items
/// this time, we also are using a query object to request plands in descending order
/// of their sort date
var plans = await service.getPlans(query: PlanningCenterApiQuery(order: '-sort_date'));
if (plans.isNotEmpty) {
var plan = plans.first;
print('Found Plan: ${plan.seriesTitle} - ${plan.title} - ${plan.lastTimeAt}');
var items = await plans.first.getItems();
for (var item in items) {
print('Plan Item: ${item.title}\n${item.description}\n');
if (item.title == 'CHANGE ME') {
print('attempting to update this item');
item.title = 'CHANGED';
var result = await item.save();
print(result ? 'successful' : 'not successful');
}
}
}
}
// to call the API directly, you can do this.
var res = await PlanningCenter.instance.call('/services/v2/songs');
print(pretty(res));
exit(0);
}