EduWireApps / kdecole-api-dart

An unofficial wrapper for the kdecole api
MIT License
6 stars 1 forks source link
dart kdecole

This is an UNOFFICIAL wrapper for the kdecole api

How to use ?

Login

First, you need to create a Client() object :

LOGIN AND PASSWORD ARE NOT YOUR ENT ONES. TEMPORARY USERNAME AND PASSWORD GIVEN TO INIT THE MOBILE APP SHALL BE USED

var client = Client(url: '<your CAS url', username: '<your username>', password: '<your password');

or if you already have a token :

var client = Client.fromToken(token: '<your token', url: 'your CAS url');

Now you're logged in !

To logout :

await client.logout();

Messaging

Get the mail box

Of course, you need to have a Client() object,
Next, just get an email list :

var list = await client.getEmails();

It returns you a list of emails which first lines of the first message can be seen. This contains the id, the expeditor and the receivers. WARNING you can't get the full messages body by this way

Get details of an email

From your email object, you just need to do :

await client.getFullEmail(youremail);

It will return you another email which contains all the data from the given one, plus the whole discussion, in a list of Message objects

The message object

You can get from it :

Homeworks

Get the homeworks

As well as the messaging, this method only return you the first lines of the homework :

var homeworksList = await client.getHomeworks();

It will return you a list of homeworks

Get the full homework

var hw = await client.getFullHomework(oldHw);

It will return you the new Hw with the full body

Homework object

You can get from it :

Timetable

Get the timetable

There is only one method :

var tt = await client.getTimetable();

It will return to you a list of Course

The course object

You can get from it :