summaryrefslogtreecommitdiff
path: root/web/uploader.php.cpp
blob: ed7f76a65cb6ccd5f4011aa4a110dc99a3c5310b (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
<?php
session_start();
?>
#include "logo.html"
#include "menulist.html"
#include "static-configuration"
<?php

// We just email notification for now.  Auto-analysis RSN.
if ($_FILES["uploadedfile"]["error"] > 0) {
  echo "Error: " . $_FILES["uploadedfile"]["error"] . "<br />";
  exit();
}

$dest = tempnam($tempfolder, "upload-");
move_uploaded_file($_FILES["uploadedfile"]["tmp_name"], $dest);

$subject = "CCAN: code upload by '" . $_POST['email'] . "' with name " . $_FILES["uploadedfile"]["name"];
$message = "File type: ".$_FILES["uploadedfile"]["type"]."\n".
	"Size: ".$_FILES["uploadedfile"]["size"]."\n".
	"Claimed email: ".$_POST['email']."\n".
	"File destination: ".$dest."\n";

mail($ccanadmin, $subject, $message, "From: $frommail");
echo "<div align=\"center\"> Thanks!<br>
	Mail will be send to admin to publish the code.<//div>";
?>