]> git.immae.eu Git - perso/Immae/Projets/Scripts/Public.git/blame_incremental - mails_iprof
Commit initial
[perso/Immae/Projets/Scripts/Public.git] / mails_iprof
... / ...
CommitLineData
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
24if [ "$*" = "" ]; then
25 echo "`basename $0` academie login password"
26 echo "où academie est remplacé dans:"
27 echo "https://bv.ac-academie.fr/iprof/ServletIprof"
28 exit 1
29fi
30
31iPROF="https://bv.ac-$1.fr/iprof/ServletIprof"
32login="$2"
33mdp="$3"
34
35numu=`curl $iPROF 2>/dev/null | grep numu| sed -e "s/.*value='\(.*\)'.*/\1/"`
36
37session=`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/"`
38
39curl -d 'codeTraitement=CourrierE' $iPROF';'$session 2>/dev/null 1>&2
40
41M=`mktemp`
42
43curl -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
44
45Nouveau=`wc -l $M | cut -d" " -f1`
46Ancien=`wc -l $HOME/.iprof | cut -d" " -f1`
47
48if [ "x"$Nouveau != "x"$Ancien ];then
49 echo "Du nouveau sur I-prof"
50 rm $HOME/.iprof
51 cp $M $HOME/.iprof
52fi
53rm -f $M