]> git.immae.eu Git - perso/Immae/Projets/Scripts/Public.git/blame - mails_iprof
Add tipping hint
[perso/Immae/Projets/Scripts/Public.git] / mails_iprof
CommitLineData
5172ecf8
IB
1#!/usr/bin/env sh
2# The MIT License (MIT)
3#
4# Copyright (c) 2011-2015 Ismaël Bouya http://www.normalesup.org/~bouya/
5#
6# Permission is hereby granted, free of charge, to any person obtaining a copy
7# of this software and associated documentation files (the "Software"), to deal
8# in the Software without restriction, including without limitation the rights
9# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10# copies of the Software, and to permit persons to whom the Software is
11# furnished to do so, subject to the following conditions:
12#
13# The above copyright notice and this permission notice shall be included in
14# all copies or substantial portions of the Software.
15#
16# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22# THE SOFTWARE.
23
2d8938f6
IB
24
25# Feel like tipping/donating? https://www.immae.eu/licenses_and_tipping
26
5172ecf8
IB
27if [ "$*" = "" ]; then
28 echo "`basename $0` academie login password"
29 echo "où academie est remplacé dans:"
30 echo "https://bv.ac-academie.fr/iprof/ServletIprof"
31 exit 1
32fi
33
34iPROF="https://bv.ac-$1.fr/iprof/ServletIprof"
35login="$2"
36mdp="$3"
37
38numu=`curl $iPROF 2>/dev/null | grep numu| sed -e "s/.*value='\(.*\)'.*/\1/"`
39
40session=`curl -d 'codeTraitement=Authentification&typeConnexion=ENS&codeProfil=E&numu='$numu'&login='$login'&motDePasse='$mdp $iPROF 2>/dev/null | grep "value='CourrierE'" | sed -e "s/.*action='\/iprof\/ServletIprof\;\([^']*\)'.*/\1/"`
41
42curl -d 'codeTraitement=CourrierE' $iPROF';'$session 2>/dev/null 1>&2
43
44M=`mktemp`
45
46curl -d 'codeThemeEnCours=tous&codeTraitement=CourrierE&numu='$numu'&messageID=&action=&typeDossier=recu&dossierEnCours=ca' $iPROF';'$session 2>/dev/null | grep "document.f_message.messageID.value" | sed -e "s/.*messageID.value='<\([^>]*\)>'.*texteSouligne\">\([^<]*\)<.*texte\"[^>]*>\([^<]*\)<.*/\1 \3/g" >> $M
47
48Nouveau=`wc -l $M | cut -d" " -f1`
49Ancien=`wc -l $HOME/.iprof | cut -d" " -f1`
50
51if [ "x"$Nouveau != "x"$Ancien ];then
52 echo "Du nouveau sur I-prof"
53 rm $HOME/.iprof
54 cp $M $HOME/.iprof
55fi
56rm -f $M