summaryrefslogtreecommitdiff
path: root/ng_selfservice/ip_login.php
blob: 1530657673807704a9b23f62626ef5cf9c5e6f2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?

require('freeside.class.php');
$freeside = new FreesideSelfService();

$ip = $_SERVER['REMOTE_ADDR'];

$mac = $freeside->get_mac_address( array('ip' => $ip, ) );

$response = $freeside->login( array( 
  'username' => $mac['mac_address'],
  'domain'   => 'ip_mac',
) );

$error = $response['error'];

if ( $error ) {

  $title ='Login'; include('elements/header.php');
  include('elements/error.php');	
  echo "Sorry "+$error;

 // header('Location:index.php?username='. urlencode($mac).
 //                          '&domain='.   urlencode($domain).
 //                          '&email='.    urlencode($email).
 //                          '&error='.    urlencode($error)
 //       );

}
else {
// sucessful login

$session_id = $response['session_id'];

error_log("[login] logged into freeside with session_id=$session_id, setting cookie");

// now what?  for now, always redirect to the main page (or the select a
// customer diversion).
// eventually, other options?

setcookie('session_id', $session_id);

if ( $response['custnum'] || $response['svcnum'] ) {

  header("Location:main.php");
  die();
  //1;

} elseif ( $response['customers'] ) {
  //var_dump($response['customers']);
?>

  <? $title ='Select customer'; include('elements/header.php'); ?>
  <? include('elements/error.php'); ?>

  <FORM NAME="SelectCustomerForm" ACTION="process_select_cust.php" METHOD=POST>
  <INPUT TYPE="hidden" NAME="action" VALUE="switch_cust">

  <TABLE BGCOLOR="#c0c0c0" BORDER=0 CELLSPACING=2 CELLPADDING=0>

    <TR>
      <TH ALIGN="right">Customer </TH>
      <TD>
        <SELECT NAME="custnum" ID="custnum" onChange="custnum_changed()">
          <OPTION VALUE="">Select a customer
          <? foreach ( $response['customers'] AS $custnum => $customer ) { ?>
            <OPTION VALUE="<? echo $custnum ?>"><? echo htmlspecialchars( $customer ) ?>
          <? } ?>
        </SELECT>
      </TD>
    </TR>

    <TR>
      <TD COLSPAN=2 ALIGN="center"><INPUT TYPE="submit" ID="submit" VALUE="Select customer" DISABLED></TD>
    </TR>

  </TABLE>
  </FORM>

  <SCRIPT TYPE="text/javascript">

  function custnum_changed () {
    var form = document.SelectCustomerForm;
    if ( form.custnum.selectedIndex > 0 ) {
      form.submit.disabled = false;
    } else {
      form.submit.disabled = true;
    }
  }

  </SCRIPT>

<?

// } else {
// 
//   die 'login successful, but unrecognized info (no custnum, svcnum or customers)';
  
} // multiple customers found

} //successfull login

?>

  <? include('elements/footer.php'); ?>