0.7.1 • Published 3 months ago

isenjs v0.7.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

npm version install size

Description

A Nodejs API wrapper for ISEN-OUEST, with webAurion information like calendar, grades, absences...

Usage

  • npm install isenjs

Here is an example script with login:

const { Client } = require('isenjs');


// Create the client
const client = new Client("<username>",
                          "<password>"
                         );

(async () => {
    try {

        const logged_in = await client.logged_in; // don't this line for login the user
        if (!logged_in) {
            console.error("Login failed");
            return;
        }

        // Get User Info
        const userInfo = await client.userInfo();
        console.log("User Info:", userInfo);

    } catch (error) {
        console.error("Error:", error);
    }
})();

Here is an example script without login (just classMember for now):

const { Client } = require('isenjs'); // Assuming the package is available as 'isenjs'

// Create the client
const client = new Client();

(async () => {
    try {

        const classMember = await client.classMember("CIR", "2", "Caen")

        console.log(classMember);
        // console.log(classMember.toJSON()); // to have the Object

  } catch (error) {
        console.error("Error:", error);
  }
})();


// OR symply
// client.classMember("CIR", "2", "Caen")
//   .then(classMember => {
//     console.log(classMember);
//      // console.log(classMember.toJSON()); to have the Object
//   })
//   .catch(error => {
//     console.error("An error occurred:", error);
//   });

Here is an example script to get absences from webAurion:

const { WebAurion } = require('isenjs'); // don't forget to import WebAurion

const client = new WebAurion("<username>",
                          "<password>");

(async () => {
    try {

        const logged_in = await client.logged_in; // don't this line for login the user
        if (!logged_in) {
            console.error("Login failed");
            return;
        }

        const absences = await client.absences();
        console.log(absences);
        // console.log(absences.toJSON()); // to have the Object


    } catch (error) {
        console.error("Error:", error);
    }
})();

Here is an example script to get grades from webAurion:

const { WebAurion } = require('isenjs'); // don't forget to import WebAurion

const client = new WebAurion("<username>",
                          "<password>");

(async () => {
    try {

        const logged_in = await client.logged_in; // don't this line for login the user
        if (!logged_in) {
            console.error("Login failed");
            return;
        }

        const grades = await client.grades();
        console.log(grades);
        // console.log(grades.toJSEON()); // to have the Object


    } catch (error) {
        console.error("Error:", error);
    }
})();

Here is an example to get planning from webAurion

const { WebAurion } = require('isenjs'); // don't forget to import WebAurion

const client = new WebAurion("<username>",
                          "<password>");

(async () => {
    try {

        const logged_in = await client.logged_in; // don't this line for login the user
        if (!logged_in) {
            console.error("Login failed");
            return;
        }

        // params: start_date : (str, optional) , end_date : (str, optional)
        // format (Ex. "12-08-2023")
        // default : the current week
        const planning = await client.planning();

        console.log(planning);
        //console.log(planning.toJSON()); // to have the Object


    } catch (error) {
        console.error("Error:", error);
    }
})();

Here is an other example if you want group schedule

const { WebAurion } = require('isenjs'); // don't forget to import WebAurion

const client = new WebAurion("<username>",
                          "<password>");

(async () => {
    try {

        const logged_in = await client.logged_in; // don't this line for login the user
        if (!logged_in) {
            console.error("Login failed");
            return;
        }

        // params: cycle : str , year : str, city: str, start_date : (str, optional) , end_date : (str, optional)
        // format (Ex. "12-08-2023")
        // default : the current week
        const groupPlanning = await client.groupPlanning("CIR", "2", "Caen", "16-08-2023", "16-05-2024");

        console.log(planning);
        //console.log(groupPlanning.toJSON()); // to have the Object


    } catch (error) {
        console.error("Error:", error);
    }
})();

Here is an other example if you want room schedule

const { WebAurion } = require('isenjs'); // don't forget to import WebAurion

const client = new WebAurion("<username>",
                          "<password>");

(async () => {
    try {

        const logged_in = await client.logged_in; // don't this line for login the user
        if (!logged_in) {
            console.error("Login failed");
            return;
        }


        // params: city: str, start_date : (str, optional) , end_date : (str, optional)
        // format (Ex. "12-08-2023")
        // default : the current week
        const roomPlanning = await client.roomPlanning("Caen", "16-08-2023", "16-05-2024");

        console.log(roomPlanning);
        //console.log(roomPlanning.toJSON()); // to have the Object


    } catch (error) {
        console.error("Error:", error);
    }
})();

Example for get your school report

const { WebAurion } = require('isenjs'); // don't forget to import WebAurion

const client = new WebAurion("<username>",
                          "<password>");

(async () => {
    try {

        const logged_in = await client.logged_in; // don't this line for login the user
        if (!logged_in) {
            console.error("Login failed");
            return;
        }

        const schoolReport = await client.getSchoolReport();

        console.log(schoolReport);
        //console.log(schoolReport.toJSON()); // to have the Object


    } catch (error) {
        console.error("Error:", error);
    }
})();

Example for download your school report

const { WebAurion } = require('isenjs'); // don't forget to import WebAurion

const client = new WebAurion("<username>",
                          "<password>");

(async () => {
    try {

        const logged_in = await client.logged_in; // don't this line for login the user
        if (!logged_in) {
            console.error("Login failed");
            return;
        }

        await client.downloadReport() // Download all your school report with the default name

        // if you want only one report

        // client.downloadReport(null, "report_id")
        // Download the report with the id "report_id" with the default name (you have the id with the schoolReport object Ex. schoolReport = webAurion.getSchoolReport() )


    } catch (error) {
        console.error("Error:", error);
    }
})();

LICENSE

Copyright (c) 2023 CorentinMre

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.7.1

3 months ago

0.6.7

3 months ago

0.6.6

3 months ago

0.6.9

3 months ago

0.6.8

3 months ago

0.7.0

3 months ago

0.6.3

3 months ago

0.6.2

3 months ago

0.6.5

3 months ago

0.6.4

3 months ago

0.6.1

3 months ago

0.6.0

3 months ago

0.5.8

3 months ago

0.5.9

3 months ago

0.5.7

3 months ago

0.5.6

3 months ago

0.5.5

3 months ago

0.5.4

4 months ago

0.5.3

4 months ago

0.5.2

4 months ago

0.5.1

5 months ago

0.5.0

5 months ago

0.4.9

7 months ago

0.4.8

7 months ago

0.3.0

8 months ago

0.3.6

8 months ago

0.3.5

8 months ago

0.3.8

8 months ago

0.3.7

8 months ago

0.3.2

8 months ago

0.3.1

8 months ago

0.3.4

8 months ago

0.3.3

8 months ago

0.3.9

8 months ago

0.4.5

7 months ago

0.2.7

8 months ago

0.4.4

7 months ago

0.2.6

8 months ago

0.4.7

7 months ago

0.2.9

8 months ago

0.4.6

7 months ago

0.2.8

8 months ago

0.4.0

8 months ago

0.4.3

7 months ago

0.2.5

8 months ago

0.4.2

8 months ago

0.2.1

8 months ago

0.2.0

8 months ago

0.1.8

8 months ago

0.1.7

8 months ago

0.1.9

8 months ago

0.2.3

8 months ago

0.2.2

8 months ago

0.1.6

9 months ago

0.2.4

8 months ago

0.1.5

9 months ago

0.1.4

9 months ago

0.1.3

9 months ago

0.1.2

9 months ago

0.1.1

9 months ago

0.1.0

9 months ago

0.0.8

9 months ago

0.0.7

9 months ago

0.0.6

9 months ago

0.0.5

9 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago