vpn_pppoe.php 5.77 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
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
	Copyright (C) 2010 Ermal Luci
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions are met:

	1. Redistributions of source code must retain the above copyright notice,
	   this list of conditions and the following disclaimer.

	2. Redistributions in binary form must reproduce the above copyright
	   notice, this list of conditions and the following disclaimer in the
	   documentation and/or other materials provided with the distribution.

	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
	POSSIBILITY OF SUCH DAMAGE.
*/

require_once("guiconfig.inc");
require_once("filter.inc");
require_once("vpn.inc");
33
require_once("interfaces.inc");
Ad Schellevis's avatar
Ad Schellevis committed
34

35
if (!is_array($config['pppoes'])) {
36
    $config['pppoes'] = array();
37 38 39
}

if (!is_array($config['pppoes']['pppoe'])) {
40
    $config['pppoes']['pppoe'] = array();
41
}
Ad Schellevis's avatar
Ad Schellevis committed
42 43 44 45

$a_pppoes = &$config['pppoes']['pppoe'];

if ($_POST) {
46
    $pconfig = $_POST;
Ad Schellevis's avatar
Ad Schellevis committed
47

48 49 50 51 52 53 54 55 56 57 58 59
    if ($_POST['apply']) {
        if (file_exists('/tmp/.vpn_pppoe.apply')) {
                $toapplylist = unserialize(file_get_contents('/tmp/.vpn_pppoe.apply'));
            foreach ($toapplylist as $pppoeid) {
                if (!is_numeric($pppoeid)) {
                    continue;
                }
                if (is_array($config['pppoes']['pppoe'])) {
                    foreach ($config['pppoes']['pppoe'] as $pppoe) {
                        if ($pppoe['pppoeid'] == $pppoeid) {
                            vpn_pppoe_configure($pppoe);
                            break;
Ad Schellevis's avatar
Ad Schellevis committed
60
                        }
61
                    }
Ad Schellevis's avatar
Ad Schellevis committed
62
                }
63
            }
64
            @unlink('/tmp/.vpn_pppoe.apply');
Ad Schellevis's avatar
Ad Schellevis committed
65
        }
66 67 68 69

        filter_configure();
        $savemsg = get_std_save_message();
        clear_subsystem_dirty('vpnpppoe');
70
    }
Ad Schellevis's avatar
Ad Schellevis committed
71 72 73
}

if ($_GET['act'] == "del") {
74 75 76 77 78 79 80 81
    if ($a_pppoes[$_GET['id']]) {
        killbypid("/var/run/pppoe{$a_pppoes[$_GET['id']]['pppoeid']}-vpn.pid");
        mwexecf('/bin/rm -r %s', "/var/etc/pppoe{$a_pppoes[$_GET['id']]['pppoeid']}");
        unset($a_pppoes[$_GET['id']]);
        write_config();
        header("Location: vpn_pppoe.php");
        exit;
    }
Ad Schellevis's avatar
Ad Schellevis committed
82 83
}

Franco Fichtner's avatar
Franco Fichtner committed
84
$pgtitle = array(gettext('Services'), gettext('PPPoE Server'));
Ad Schellevis's avatar
Ad Schellevis committed
85 86 87
$shortcut_section = "pppoes";
include("head.inc");

Ad Schellevis's avatar
Ad Schellevis committed
88
$main_buttons = array(
89
    array('label'=>gettext("add a new pppoe instance"), 'href'=>'vpn_pppoe_edit.php'),
Ad Schellevis's avatar
Ad Schellevis committed
90 91
);

Ad Schellevis's avatar
Ad Schellevis committed
92 93
?>

Ad Schellevis's avatar
Ad Schellevis committed
94 95 96
<body>
	<?php include("fbegin.inc"); ?>
	<section class="page-content-main">
97
		<div class="container-fluid">
Ad Schellevis's avatar
Ad Schellevis committed
98
			<div class="row">
99

100
				<?php if (isset($savemsg)) {
101 102 103 104
                    print_info_box($savemsg);
} ?>
				<?php if (is_subsystem_dirty('vpnpppoe')) :
?><br/>
Ad Schellevis's avatar
Ad Schellevis committed
105
				<?php print_info_box_np(gettext("The PPPoE entry list has been changed") . ".<br />" . gettext("You must apply the changes in order for them to take effect."));?>
106 107
				<?php
endif; ?>
Ad Schellevis's avatar
Ad Schellevis committed
108

109 110


Ad Schellevis's avatar
Ad Schellevis committed
111
			    <section class="col-xs-12">
112

113 114 115


					<div class="content-box col-xs-12">
116

Ad Schellevis's avatar
Ad Schellevis committed
117 118 119
							<form action="vpn_pppoe.php" method="post" name="iform" id="iform">

								<div class="table-responsive">
120
									<table class="table table-striped table-sort">
Ad Schellevis's avatar
Ad Schellevis committed
121 122 123 124 125 126 127 128
										<tr>
										  <td width="15%" class="listhdrr"><?=gettext("Interface");?></td>
										  <td width="10%" class="listhdrr"><?=gettext("Local IP");?></td>
										  <td width="20%" class="listhdrr"><?=gettext("Number of users");?></td>
										  <td width="25%" class="listhdr"><?=gettext("Description");?></td>
										  <td width="10%" class="list">
										  </td>
										</tr>
129 130
                                                <?php $i = 0; foreach ($a_pppoes as $pppoe) :
?>
Ad Schellevis's avatar
Ad Schellevis committed
131 132 133 134 135 136 137 138
										<tr>
										  <td class="listlr" ondblclick="document.location='vpn_pppoe_edit.php?id=<?=$i;?>';">
										    <?=htmlspecialchars(strtoupper($pppoe['interface']));?>
										  </td>
										  <td class="listlr" ondblclick="document.location='vpn_pppoe_edit.php?id=<?=$i;?>';">
										    <?=htmlspecialchars($pppoe['localip']);?>
										  </td>
										  <td class="listr" ondblclick="document.location='vpn_pppoe_edit.php?id=<?=$i;?>';">
139
                                                <?=htmlspecialchars($pppoe['n_pppoe_units']);?>
Ad Schellevis's avatar
Ad Schellevis committed
140 141 142 143 144
										  </td>
										  <td class="listbg" ondblclick="document.location='vpn_pppoe_edit.php?id=<?=$i;?>';">
										    <?=htmlspecialchars($pppoe['descr']);?>&nbsp;
										  </td>
										  <td valign="middle" class="list nowrap">
145 146
											<a href="vpn_pppoe_edit.php?id=<?=$i;
?>" title="<?=gettext("edit pppoe instance"); ?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-pencil"></span></a>
147

148 149 150
											<a href="vpn_pppoe.php?act=del&amp;id=<?=$i;
?>" onclick="return confirm('<?=gettext("Do you really want to delete this entry? All elements that still use it will become invalid (e.g. filter rules)!");
?>')" title="<?=gettext("delete pppoe instance");?>" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-remove"></span></a>
Ad Schellevis's avatar
Ad Schellevis committed
151 152
										  </td>
										</tr>
153 154 155
                                                <?php $i++;

endforeach; ?>
156 157

									</table>
Ad Schellevis's avatar
Ad Schellevis committed
158 159
								</div>
							</form>
160

Ad Schellevis's avatar
Ad Schellevis committed
161 162 163 164 165 166
					</div>
			    </section>
			</div>
		</div>
	</section>

167
<?php include("foot.inc");