Benutzer-Werkzeuge

Webseiten-Werkzeuge


cloud4education

Dies ist eine alte Version des Dokuments!


cloud4education

Version 4.5.1

templates/layout.user.php
<title><?php echo isset($_['application']) && !empty($_['application'])?$_['application'].' | ':'' ?>cloud4education <?php echo OC_User::getUser()?' ('.OC_User::getUser().') ':'' ?></title>

Version 4.0.1

lib/user.php
        /**
         * @brief Kick the user
         * @returns true
         *
         * Logout, destroys session
         */
        public static function logout(){
                OC_Hook::emit( "OC_User", "logout", array());
                exec("sudo umount /srv/www/htdocs/".OC::$WEBROOT."/data/".OC_User::getUser()."/files/Home");
                foreach(self::getS4eShares() as $share) {
                        exec("sudo umount /srv/www/htdocs/".OC::$WEBROOT."/data/".OC_User::getUser()."/files/".$share);
                }
// BÖSE?                OC_Helper::rmdirr("/srv/www/htdocs/".OC::$WEBROOT."/data/".OC_User::getUser());
                OC_Helper::rmdirr("/srv/www/htdocs/".OC::$WEBROOT."/data/".OC_User::getUser());
                $_SESSION['user_id'] = false;
                OC_User::unsetMagicInCookie();
                return true;
        }
lib/util.php
        /**
        * Check if the user is logged in, redirects to home if not
        */
        public static function checkLoggedIn(){
                // Check if we are a user
                if( !OC_User::isLoggedIn()){
                        header( 'Location: '.OC_Helper::linkTo( '', 'index.php' , true));
                        exit();
                }
        }
 
/*** server4education ***/
 
        /**
        * Check if home folder is mounted, mount if not
        */
        public static function checkHomeMounted(){
                // Check if home folder is mounted
                if (!OC_Filesystem::is_dir('/Home')) {
                        OC_Filesystem::mkdir('/Home'); }
                        exec("sudo /usr/local/bin/mounthome ".OC_User::getUser()." ".$_SESSION['user_password']);
#exec("sudo mount | grep \"on /srv/www/htdocs/owncloud/data/".OC_User::getUser()."/files/Home type\"; if [ $? -eq 1 ] ; then sudo mount //localhost/".OC_User::getUser()." /srv/www/htdocs/".OC::$WEBROOT."/data/".OC_User::getUser()."/files/Home -o user=".OC_User::getUser().",pass=".$_SESSION['user_password'].",uid=wwwrun,gid=www; fi");

                foreach(self::getS4eShares() as $share) {
                        if (!OC_Filesystem::is_dir('/'.$share)) {
                                OC_Filesystem::mkdir('/'.$share);
                        }
                        exec("sudo /usr/local/bin/mountshare ".OC_User::getUser()." ".$_SESSION['user_password']." ".$share);
#                        exec("mount | grep \"on /srv/www/htdocs/".OC::$WEBROOT."/data/".OC_User::getUser()."/files/".$share." type\" > /dev/null; if [ $? -eq 1 ] ; then sudo mount //localhost/".$share." /srv/www/htdocs/".OC::$WEBROOT."/data/".OC_User::getUser()."/files/".$share." -o user=".OC_User::getUser().",pass=".$_SESSION['user_password'].",uid=wwwrun,gid=www; fi");
                }
                exec("logger \"".OC_User::getUser()." - cloud4education ".`date +%s`."\"");
        }
 
/*** server4education ***/
files/index.php
// Check if we are a user
OC_Util::checkLoggedIn();
OC_Util::checkHomeMounted();
config/s4eshares.config
gemeinsam
material
abgabe
/usr/local/bin/cloud4education
#!/bin/bash
 
for username in $(mount | grep owncloud | grep Home | cut -d"/" -f4 | cut -d" " -f1); do
 START=$(grep "logger: $username" /var/log/messages | tail -1 | awk '{print $9}')
 DUR=$(echo "( ( $(date +%s) - $START ) / 60 )" | bc)
 if [ $DUR -gt 15 ]; then
  umount /srv/www/htdocs/owncloud/data/$username/files/Home
  for SHARE in `cat /srv/www/htdocs/owncloud/config/s4eshares.config`; do
    umount /srv/www/htdocs/owncloud/data/$username/files/$SHARE
  done
  rm /srv/www/htdocs/owncloud/data/$username
 fi
done
/usr/local/bin/mounthome
#!/bin/bash
 
mount | grep "on /srv/www/htdocs/owncloud/data/$1/files/Home type" > /dev/null
if [ $? -eq 1 ] ; then
        sudo mount "//localhost/$1" /srv/www/htdocs/owncloud/data/$1/files/Home -o user="$1",pass="$2",uid=wwwrun,gid=www
fi
/usr/local/bin/mountshare
#!/bin/bash
 
mount | grep "on /srv/www/htdocs/owncloud/data/$1/files/$3 type" > /dev/null
if [ $? -eq 1 ] ; then
        sudo mount "//localhost/$3" "/srv/www/htdocs/owncloud/data/$1/files/$3" -o user="$1",pass="$2",uid=wwwrun,gid=www
fi
crontab
# Umount lost cloud4education connections
*/15 * * * *  /usr/local/bin/cloud4education > /dev/null 2>&1
  • Branding:
    • core/img/owncloud-logo-medium-white.png
    • core/img/logo-wide.svg
templates/layout.user.php
<title>cloud4education</title>
templates/layout.guest.php
<title>cloud4education</title>
...
<footer><p class="info"><a href="http://www.cloud4education.at/">cloud4education</a> &ndash; <?php echo $l->t( 'eine freie Cloud-L&ouml;sung f&uuml;r Schulen' ); ?></p></footer>
cloud4education.1352031783.txt.gz · Zuletzt geändert: 2012/11/04 13:23 von admin