2009-12-29 12:54:46 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2010-11-14 06:39:36 +00:00
|
|
|
Copyright 2010 Pieter Iserbyt
|
2009-12-29 12:54:46 +00:00
|
|
|
|
|
|
|
This file is part of Pamela.
|
|
|
|
|
|
|
|
Pamela is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Pamela is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Pamela. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
header("Content-type: text/plain");
|
2009-12-29 21:53:31 +00:00
|
|
|
require_once("lib/util.php");
|
2010-11-14 06:39:36 +00:00
|
|
|
require_once("lib/data.php");
|
2009-12-29 12:54:46 +00:00
|
|
|
|
|
|
|
class Upload {
|
|
|
|
|
2010-11-14 06:39:36 +00:00
|
|
|
private $data;
|
2009-12-29 12:54:46 +00:00
|
|
|
|
|
|
|
function __construct() {
|
2010-11-14 06:39:36 +00:00
|
|
|
$this->data = getPost("data");
|
2009-12-29 12:54:46 +00:00
|
|
|
}
|
|
|
|
|
2010-11-14 06:39:36 +00:00
|
|
|
private function validate() {
|
|
|
|
if ($this->data == NULL) {
|
|
|
|
echoln("Missing data param");
|
2009-12-29 12:54:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
2009-12-29 15:46:33 +00:00
|
|
|
|
2009-12-29 12:54:46 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-11-14 06:39:36 +00:00
|
|
|
private function writeData() {
|
|
|
|
$datas = explode(',', $this->data);
|
|
|
|
foreach($datas as $data) {
|
|
|
|
data_add($data);
|
2010-02-22 00:38:28 +00:00
|
|
|
}
|
2009-12-29 12:54:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function run() {
|
2010-11-14 06:39:36 +00:00
|
|
|
if ($this->validate())
|
|
|
|
$this->writeData();
|
2009-12-29 12:54:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$upload = new Upload();
|
|
|
|
$upload->run();
|