Code cleanup, fixed upload.php
This commit is contained in:
63
php/helper.php
Normal file
63
php/helper.php
Normal file
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
/**
|
||||
* helper.php, Kopano Webapp contact to vcf im/exporter
|
||||
*
|
||||
* Author: Christoph Haas <christoph.h@sprinternet.at>
|
||||
* Copyright (C) 2012-2016 Christoph Haas
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library 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
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
namespace contactimporter;
|
||||
|
||||
|
||||
class Helper
|
||||
{
|
||||
/**
|
||||
* Generates a random string with variable length.
|
||||
*
|
||||
* @param $length the lenght of the generated string, defaults to 6
|
||||
* @return string a random string
|
||||
*/
|
||||
public static function randomstring($length = 6)
|
||||
{
|
||||
// $chars - all allowed charakters
|
||||
$chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
|
||||
|
||||
srand((double)microtime() * 1000000);
|
||||
$i = 0;
|
||||
$pass = "";
|
||||
while ($i < $length) {
|
||||
$num = rand() % strlen($chars);
|
||||
$tmp = substr($chars, $num, 1);
|
||||
$pass = $pass . $tmp;
|
||||
$i++;
|
||||
}
|
||||
return $pass;
|
||||
}
|
||||
|
||||
/**
|
||||
* respond/echo JSON
|
||||
*
|
||||
* @param $arr
|
||||
* @return string JSON encoded string
|
||||
*/
|
||||
public static function respondJSON($arr)
|
||||
{
|
||||
echo json_encode($arr);
|
||||
}
|
||||
}
|
@@ -21,11 +21,14 @@
|
||||
*
|
||||
*/
|
||||
|
||||
include_once('vendor/autoload.php');
|
||||
include_once(__DIR__ . "/vendor/autoload.php");
|
||||
require_once(__DIR__ . "/helper.php");
|
||||
|
||||
use JeroenDesloovere\VCard\VCard;
|
||||
use JeroenDesloovere\VCard\VCardParser;
|
||||
|
||||
use contactimporter\Helper;
|
||||
|
||||
class ContactModule extends Module
|
||||
{
|
||||
|
||||
@@ -93,28 +96,6 @@ class ContactModule extends Module
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates a random string with variable length.
|
||||
* @param $length the lenght of the generated string
|
||||
* @return string a random string
|
||||
*/
|
||||
private function randomstring($length = 6)
|
||||
{
|
||||
// $chars - all allowed charakters
|
||||
$chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
|
||||
|
||||
srand((double)microtime() * 1000000);
|
||||
$i = 0;
|
||||
$pass = "";
|
||||
while ($i < $length) {
|
||||
$num = rand() % strlen($chars);
|
||||
$tmp = substr($chars, $num, 1);
|
||||
$pass = $pass . $tmp;
|
||||
$i++;
|
||||
}
|
||||
return $pass;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add an attachment to the give contact
|
||||
* @param $actionType
|
||||
@@ -295,7 +276,7 @@ class ContactModule extends Module
|
||||
$error_msg = "";
|
||||
|
||||
// write csv
|
||||
$token = $this->randomstring(16);
|
||||
$token = Helper::randomstring(16);
|
||||
$file = PLUGIN_CONTACTIMPORTER_TMP_UPLOAD . "vcf_" . $token . ".vcf";
|
||||
file_put_contents($file, "");
|
||||
|
||||
@@ -427,7 +408,7 @@ class ContactModule extends Module
|
||||
|
||||
if ($attachnum >= 0) {
|
||||
$attachment = $this->getAttachmentByAttachNum($message, $attachnum); // get first attachment only
|
||||
$phototoken = $this->randomstring(16);
|
||||
$phototoken = Helper::randomstring(16);
|
||||
$tmpphoto = PLUGIN_CONTACTIMPORTER_TMP_UPLOAD . "photo_" . $phototoken . ".jpg";
|
||||
$this->storeSavedAttachment($tmpphoto, $attachment);
|
||||
$vcard->addPhoto($tmpphoto, true);
|
||||
@@ -936,7 +917,7 @@ class ContactModule extends Module
|
||||
if (!is_writable(TMP_PATH . "/")) {
|
||||
error_log("Can not write to export tmp directory!");
|
||||
} else {
|
||||
$tmppath = TMP_PATH . "/" . $this->randomstring(15);
|
||||
$tmppath = TMP_PATH . "/" . Helper::randomstring(15);
|
||||
if (isset($vCard->rawPhoto)) {
|
||||
if (file_put_contents($tmppath, $vCard->rawPhoto)) {
|
||||
$properties["internal_fields"]["x_photo_path"] = $tmppath;
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* upload.php, Kopano Webapp contact to vcf im/exporter
|
||||
*
|
||||
@@ -21,53 +22,35 @@
|
||||
*
|
||||
*/
|
||||
|
||||
require_once("../config.php");
|
||||
require_once(__DIR__ . "/../config.php");
|
||||
require_once(__DIR__ . "/helper.php");
|
||||
|
||||
require_once(__DIR__ . '/../../../init.php');
|
||||
require_once(__DIR__ . "/../../../server/includes/core/class.webappauthentication.php"); // for checking the session
|
||||
|
||||
use contactimporter\Helper;
|
||||
|
||||
/* disable error printing - otherwise json communication might break... */
|
||||
ini_set('display_errors', '0');
|
||||
|
||||
/**
|
||||
* respond/echo JSON
|
||||
* @param $arr
|
||||
*/
|
||||
function respondJSON($arr)
|
||||
{
|
||||
echo json_encode($arr);
|
||||
// check session
|
||||
// otherwise a DOS attack might be possible
|
||||
if (!WebAppAuthentication::getUserName() || WebAppAuthentication::getUserName() == "") {
|
||||
Helper::respondJSON(array('success' => false, 'error' => dgettext("plugin_contactimporter", "Not authenticated!")));
|
||||
die();
|
||||
}
|
||||
|
||||
/**
|
||||
* Generates a random string with variable length.
|
||||
* @param $length the lenght of the generated string
|
||||
* @return string a random string
|
||||
*/
|
||||
function randomstring($length = 6)
|
||||
{
|
||||
// $chars - all allowed charakters
|
||||
$chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
|
||||
|
||||
srand((double)microtime() * 1000000);
|
||||
$i = 0;
|
||||
$pass = "";
|
||||
while ($i < $length) {
|
||||
$num = rand() % strlen($chars);
|
||||
$tmp = substr($chars, $num, 1);
|
||||
$pass = $pass . $tmp;
|
||||
$i++;
|
||||
}
|
||||
return $pass;
|
||||
}
|
||||
|
||||
$destpath = PLUGIN_CONTACTIMPORTER_TMP_UPLOAD;
|
||||
$destpath .= $_FILES['vcfdata']['name'] . randomstring();
|
||||
|
||||
if (is_readable($_FILES['vcfdata']['tmp_name'])) {
|
||||
$result = move_uploaded_file($_FILES['vcfdata']['tmp_name'], $destpath);
|
||||
$dstPath = PLUGIN_CONTACTIMPORTER_TMP_UPLOAD;
|
||||
$dstPath .= $_FILES['vcfdata']['name'] . Helper::randomstring();
|
||||
|
||||
$result = move_uploaded_file($_FILES['vcfdata']['tmp_name'], $dstPath);
|
||||
|
||||
if ($result) {
|
||||
respondJSON(array('success' => true, 'vcf_file' => $destpath));
|
||||
Helper::respondJSON(array('success' => true, 'vcf_file' => $dstPath));
|
||||
} else {
|
||||
respondJSON(array('success' => false, 'error' => dgettext("plugin_contactimporter", "File could not be moved to TMP path! Check plugin config and folder permissions!")));
|
||||
Helper::respondJSON(array('success' => false, 'error' => dgettext("plugin_contactimporter", "File could not be moved to TMP path! Check plugin config and folder permissions!")));
|
||||
}
|
||||
} else {
|
||||
respondJSON(array('success' => false, 'error' => dgettext("plugin_contactimporter", "File could not be read by server, upload error!")));
|
||||
Helper::respondJSON(array('success' => false, 'error' => dgettext("plugin_contactimporter", "File could not be read by server, upload error!")));
|
||||
}
|
Reference in New Issue
Block a user