-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
163 lines (123 loc) · 4.29 KB
/
index.php
File metadata and controls
163 lines (123 loc) · 4.29 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
$listing_status = "Please wait. Your listing is generating.";
$title = $_POST['title'];
$price = $_POST['price'];
$description = $_POST['description'];
$paypal_email = $_POST['paypal'];
function makePaypalButton() {
$paypal_button = '
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="'.$paypal_email.'">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="'.$title.'">
<input type="hidden" name="amount" value="'.$price.'">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="0">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHostedGuest">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>';
return $paypal_button;
}
function makeFileName() {
$file_name = "listings/".str_replace(' ', '', $title).".html";
while (file_exists($file_name)) {
$rand_num = rand(100000,999999);
$file_name = "listings/".str_replace(' ', '', $title).$rand_num.".html";
}
return $file_name;
}
$payment_button = makePaypalButton();
$file_path = "listings/".str_replace(' ', '', $title);
$file_name = $file_path.".html";
while (file_exists($file_name)) {
$rand_num = rand(100000,999999);
$file_path = "listings/".str_replace(' ', '', $title).$rand_num;
$file_name = $file_path.".html";
}
$structure = './listingimages/'.$file_path;
if (!mkdir($structure, 0777, true)) {
die('An unsual error has occured');
}
$structure = $structure."/";
$target_dir = $structure;
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
if($check !== false) {
//echo "File is an image - " . $check["mime"] . ".";
$uploadOk = 1;
} else {
echo "File is not an image.";
$uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
echo "Sorry, file already exists.";
$uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 500000) {
echo "Sorry, your file is too large.";
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
&& $imageFileType != "gif" ) {
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
$uploadOk = 0;
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
#echo "The file ". htmlspecialchars( basename( $_FILES["fileToUpload"]["name"])). " has been uploaded.";
} else {
echo "Sorry, there was an error uploading your file.";
}
}
$target_file = ".".$target_file;
$html_contents =
<<<HTML
<html>
<head>
<title>$title</title>
</head>
<body>
<h1>$title</h1>
<img src="$target_file" width="600" height="400">
<p>$price</p>
<p>$description</p>
$payment_button
</body>
</html>
HTML;
$htmlfile = fopen($file_name, "w") or die("An error has occured");
fwrite($htmlfile, $html_contents);
$title_file_name = $structure."/title.txt";
$price_file_name = $structure."/price.txt";
$title_file= fopen($title_file_name, "w") or die("An error has occured");
$price_file= fopen($price_file_name, "w") or die("An error has occured");
fwrite($title_file, $title);
fwrite($price_file, $price);
$listing_status = "Congrats your listing is now live <a href='".$file_name."' target='_blank'>here</a>";
?>
<!DOCTYPE html>
<html>
<head>
<title>
Finalizing Your Listing...
</title>
</head>
<p><?php echo $listing_status;?></p>
<a href="store.php">Go to Store</a>
</form>
</html>