Skip to content

EduWireApps/kdecole-api-dart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 :

  • The sender
  • The date
  • The message

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 :

  • The content
  • The type
  • The subject
  • The estimated time (if given by the professor)
  • The status (is realised)
  • The uuid
  • The uuid of the session
  • the Date

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 :

  • The subject
  • A list of homeworks (only theuid, just get the sessionUid and use the getFullHomework method)
  • The content (if given)
  • The start date (Datetime)
  • The end date (Datetime too)

About

An unofficial wrapper for the kdecole api

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Contributors 4

  •  
  •  
  •  
  •  

Languages