summaryrefslogtreecommitdiff
path: root/www/advertising.php
blob: e9874619b9188bbd5cbdb78c80397bba96b6f8e4 (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
<? /*
    LibreSSL - CAcert web application
    Copyright (C) 2004-2008  CAcert Inc.

    This program 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; version 2 of the License.

    This program 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 this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/ ?>
<?
	if($_SESSION['profile']['adadmin'] <= 0)
	{
                showheader(_("My CAcert.org Account!"));
                echo _("You don't have access to this area.");
                showfooter();
                exit;
	}

	$id = array_key_exists('id',$_REQUEST)?intval($_REQUEST['id']):0;
	if($id == 2)
		$id = 0;
	$oldid = array_key_exists('oldid',$_POST)?intval($_POST['oldid']):0;
	$process = array_key_exists('process',$_POST)?$_POST['process']:"";

	loadem("account");
	$errmsg = "";

	if($oldid == 1 && $process != "")
	{
		$title = mysql_real_escape_string(strip_tags(trim(htmlentities($_POST['title']))));
		$link = mysql_real_escape_string(strip_tags(trim($_POST['link'])));
		$months = intval($_POST['months']);

		if(!strstr($link, "://"))
		{
			$link = "http://".$link;
		}

		if($months < 1 || $months > 12)
		{
			$id = 1;
			$errmsg .= _("You can only place an advertisement for up to 12 months.<br />");
			$process="";
			$oldid=0;
		}

		if(strlen($title) <= 5)
		{
			$id = 1;
			$errmsg .= _("Link title was too short.<br />");
			$process="";
			$oldid=0;
		}

		if(strlen($link) <= 10)
		{
			$id = 1;
			$errmsg .= _("Link URI was too short.<br />");
			$process="";
			$oldid=0;
		}
	}

	if($oldid == 1 && $process != "")
	{
		$query = "insert into `advertising` set `link`='$link', `title`='$title', `months`='$months', `who`='".$_SESSION['profile']['id']."',
				`when`=NOW()";
		mysql_query($query);
		unset($link);
		unset($title);
		unset($months);
		$id = 1;
		$errmsg = _("Your advertisement request has been lodge in the system and administrators notified. Once the information has been reviewed, you will be notified if the link was acceptable or declined and the reason for the decline. If the request is successful the system will generate an invoice.");
	}

	showheader(_("CAcert.org Advertising Section"));
	includeit($id, "advertising");
	showfooter();
?>