source: sandbox/2.3-MailArchiver/login.php @ 6779

Revision 6779, 4.9 KB checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado Expresso(branch 2.3) integrado ao MailArchiver?.

Line 
1<?php
2        /**************************************************************************\
3        * eGroupWare login                                                         *
4        * http://www.egroupware.org                                                *
5        * Originaly written by Dan Kuykendall <seek3r@phpgroupware.org>            *
6        *                      Joseph Engo    <jengo@phpgroupware.org>             *
7        * Updated by Nilton Emilio Buhrer Neto <niltonneto@celepar.pr.gov.br>      *
8        *  This program is free software; you can redistribute it and/or modify it *
9        *  under the terms of the GNU General Public License as published by the   *
10        *  Free Software Foundation; either version 2 of the License, or (at your  *
11        *  option) any later version.                                              *
12        \**************************************************************************/
13       
14        $phpgw_info = array();
15        $submit = False;                        // set to some initial value
16
17        $GLOBALS['phpgw_info']['flags'] = array(
18                'disable_Template_class' => True,
19                'login'                  => True,
20                'currentapp'             => 'login',
21                'noheader'               => True
22        );
23
24        if(file_exists('./header.inc.php'))
25        {
26                include('./header.inc.php');
27                // Force location to home, while logged in.
28                $GLOBALS['sessionid'] = @$_GET['sessionid'] ? $_GET['sessionid'] : @$_COOKIE['sessionid'];
29                if(isset($GLOBALS['sessionid']) && $_GET['cd'] != 10)
30                        $GLOBALS['phpgw']->redirect_link('/home.php');
31                if ($GLOBALS['phpgw_info']['server']['use_https'] > 0)
32                {
33                        if ($_SERVER['HTTPS'] != 'on')
34                        {
35                                Header('Location: https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']);
36                                exit;
37                        }
38                }
39                       
40                if(function_exists('CreateObject'))
41                {
42                    if($_GET['dont_redirect_if_moble'] != 1) {
43                        //detect if the user has a compatible browser, if don't have send him to expresso mini
44                        $browser = CreateObject('phpgwapi.browser');
45                       
46                        switch ($browser->get_platform()) {
47                                case browser::PLATFORM_IPHONE:
48                                case browser::PLATFORM_IPOD:
49                                case browser::PLATFORM_IPAD:
50                                case browser::PLATFORM_BLACKBERRY:
51                                case browser::PLATFORM_NOKIA:
52                                case browser::PLATFORM_ANDROID:
53                                        $GLOBALS['phpgw']->redirect_link('/mobile/');                                   
54                                        break;
55                                default:
56                                        break;
57                        }
58                    }
59                       
60                        $GLOBALS['phpgw']->session = CreateObject('phpgwapi.sessions');
61                }
62                else
63                {
64                        Header('Location: setup/index.php');
65                        exit;
66                }
67        }
68        else
69        {
70                Header('Location: setup/index.php');
71                exit;
72        }
73
74        $GLOBALS['phpgw_info']['server']['template_dir'] = PHPGW_SERVER_ROOT . '/phpgwapi/templates/' . $GLOBALS['phpgw_info']['login_template_set'];
75        $tmpl = CreateObject('phpgwapi.Template', $GLOBALS['phpgw_info']['server']['template_dir']);
76
77        // read the images from the login-template-set, not the (maybe not even set) users template-set
78        $GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] = $GLOBALS['phpgw_info']['login_template_set'];
79
80        // This is used for system downtime, to prevent new logins.
81        if($GLOBALS['phpgw_info']['server']['deny_all_logins'])
82        {
83                $deny_msg=lang('Oops! You caught us in the middle of system maintainance.<br/>
84                Please, check back with us shortly.');
85
86                $tmpl->set_file(array
87                (
88                        'login_form' => 'login_denylogin.tpl'
89                ));
90
91                $tmpl->set_var('template_set','default');
92                $tmpl->set_var('deny_msg',$deny_msg);
93                $tmpl->pfp('loginout','login_form');
94                exit;
95        }
96        $tmpl->set_file(array('login_form' => 'login.tpl'));
97
98        $tmpl->set_var('template',$GLOBALS['phpgw_info']['login_template_set']);
99        $tmpl->set_var('lang',$_GET['lang']?$_GET['lang']:preg_replace("/\,.*/","",$GLOBALS['_SERVER']['HTTP_ACCEPT_LANGUAGE']));
100
101        if (count($GLOBALS['phpgw_info']['server']['login_logo_file']) > 0)
102                $tmpl->set_var('logo_config',$GLOBALS['phpgw_info']['server']['login_logo_file']);
103        else
104                $tmpl->set_var('logo_config','<a title="Governo do Paran&aacute" href="http://www.pr.gov.br" target="_blank"><img src="phpgwapi/templates/'.$GLOBALS['phpgw_info']['login_template_set'].'/images/logo_governo.gif" border="0"></a></td>
105                <td><div align="center"><font color="#9a9a9a" face="Verdana, Arial, Helvetica, sans-serif" size="1">
106<a title="Celepar Inform&aacute;tica do Paran&aacute;" target="_blank" href="http://www.celepar.pr.gov.br/">
107<img src="phpgwapi/templates/'.$GLOBALS['phpgw_info']['login_template_set'].'/images/logo_celepar.gif" border="0"></a>');
108        // !! NOTE !!
109        // Do NOT and I repeat, do NOT touch ANYTHING to do with lang in this file.
110        // If there is a problem, tell me and I will fix it. (jengo)
111
112        // whoooo scaring
113
114        // ServerID => Identify the Apache Frontend.
115        if($GLOBALS['phpgw_info']['server']['usecookies'] == True && $GLOBALS['phpgw_info']['server']['use_frontend_id'])
116        {
117                $GLOBALS['phpgw']->session->phpgw_setcookie('serverID', $GLOBALS['phpgw_info']['server']['use_frontend_id']);
118        }
119        if($GLOBALS['phpgw_info']['server']['captcha']==1)
120  {
121     session_start();
122  }
123        include(personalize_include_path('phpgwapi','login'));
124?>
125
Note: See TracBrowser for help on using the repository browser.