-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.php
188 lines (168 loc) · 8.92 KB
/
index.php
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
$error = null;
$uri = strtok($_SERVER['REQUEST_URI'], '?');
$parts = explode('/', $uri);
$code = array_pop($parts);
date_default_timezone_set("America/Sao_Paulo");
require "vendor/autoload.php";
$dotenv = new Dotenv\Dotenv(__DIR__);
$dotenv->load();
$site = getenv('SITE_NAME');
$title = getenv('TITLE');
$publickey = getenv('PUBLIC_KEY');
$secretkey = getenv('SECRET_KEY');
$gaId = getenv('GA_ID');
if ($code) {
include_once("lib/Thrash.class.php");
if ($thrash = Thrash::get_by_code($code)) {
$title = "<strong>$site</strong> | {$thrash->title}";
} else {
die('codigo invalido');
}
} else {
$test = strpos($_SERVER['HTTP_HOST'], 'localhost') === 0;
if (isset($_POST['url']) && ($test || isset($_POST['g-recaptcha-response']))) {
if (!$test) {
$recaptcha = new \ReCaptcha\ReCaptcha($secretkey);
$resp = $recaptcha->verify($_POST['g-recaptcha-response'], $_SERVER["REMOTE_ADDR"]);
}
if ($test || $resp->isSuccess()) {
include_once("lib/Thrash.class.php");
$thrash = Thrash::create($_POST['url'], $_POST['title']);
$redirect_url = $thrash->get_url();
if ($thrash->blocked_domain) $redirect_url .= "?created=1";
header("Location: ".$redirect_url);
die();
} else {
$error = $resp->getErrorCodes();
}
}
}
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><?php echo strip_tags($title); ?></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="images/favicon.ico">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css?2">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script>window.html5 || document.write('<script src="js/vendor/html5shiv.js"><\/script>')</script>
<![endif]-->
<script src='https://www.google.com/recaptcha/api.js'></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="header-container">
<header class="wrapper clearfix">
<h1 class="title"><?php echo $title; ?></h1>
<nav>
<ul>
<li><a href="./">encurtar url</a></li>
<li><a href="#reclameaqui" onclick="alert('¯\\_(ツ)_/¯');">reclamações</a></li>
</ul>
</nav>
</header>
</div>
<?php
if (isset($thrash) && $thrash && $thrash->blocked_domain == 1) {
$url = "http://webcache.googleusercontent.com/search?q=cache:".$thrash->original_url;
if (isset($_REQUEST['created'])) {
include("inc/share.php");
?>
<p>A URL que você encurtou está num domínio que bloqueia o <?php echo $site; ?>. Esta url funcionará como um redirecionamento para o cache do google.</p>
<p><a href="<?php echo $url; ?>">Exemplo do redirecionamento</a>.</p>
<?php
} else {
header("Location: $url");
die();
}
} else if (isset($thrash) && $thrash) {
$imgs = $thrash->get_image_path();
?>
<p>URL original: <?php echo "<script>document.write(decode_base64('" . base64_encode("<a href=\"{$thrash->original_url}\">{$thrash->original_url}</a>") . "'));</script>"; ?> - Capturada em: <?php echo date("d/m/Y H\hi", strtotime($thrash->date_created)); ?></p>
<meta property="og:image" content="<?php echo $imgs[0]; ?>"/>
<meta property="og:title" content="<?php echo $title; ?>"/>
<?php
include("inc/share.php");
foreach ($imgs as $img) {
echo "<img src=\"${img}\" /><br/>";
}
} else {
?>
<div id="mask"></div>
<div class="main-container">
<div class="main wrapper clearfix">
<article>
<h1>Encurtar url</h1>
<p>
<form accept-charset=\"UTF-8\" method="post" class="<?php if (isset($_POST['url']) && isset($_POST['title'])): ?>scriptlet ready<?php endif; ?>">
<input type="submit" value="<?php if (isset($_POST['url']) && isset($_POST['title'])): ?>gerar<?php else: ?>prosseguir<?php endif; ?>" />
<fieldset>
Endereço:
<input type="text" name="url" value="<?php echo @$_REQUEST['url']; ?>" />
</fieldset>
<?php if (@$_GET['error'] == 'load') : ?>
<span class="error">Não foi possível carregar a página. Por favor, confira o endereço e tente novamente.</span>
<?php endif; ?>
<fieldset class="title <?php if (isset($_POST['title'])): ?>filled<?php endif; ?>">
<label>Título:</label>
<textarea name="title"><?php echo @$_POST['title']; ?></textarea>
</fieldset>
<?php if(!$test): ?>
<fieldset class="captcha">
<div style="margin-top:10px;" class="g-recaptcha" data-sitekey="<?php echo $publickey; ?>"></div>
</fieldset>
<?php endif; ?>
</form>
</p>
</article>
<aside>
<h3>O que é?</h3>
<p>O <?php echo $site; ?> é um serviço de compartilhamento/encurtamento de URLs com propósito de denúncia/comentário crítico. Em vez da página original, a URL encurtada direciona para uma cópia (em imagem) do conteúdo, de modo que não se aumentará o tráfego ou o <em>pagerank</em> da página em questão. Além disso, a cópia ficará disponível mesmo que a página original seja tirada do ar.</p>
<p>
<strong>IMPORTANTE</strong><br/>
NÃO compartilhe conteúdo ilegal e criminoso, tais como pedofilia ou exposição vexatória de pessoas, por este serviço. O conteúdo será retirado do ar e seu acesso ao serviço barrado. Eventualmente forneceremos seu IP a autoridades competentes.
Há outras formas de denunciar e é criminosa (além de contraproducente) a reprodução desses conteúdos. Use, por exemplo: <a href="http://www.dpf.gov.br/servicos/fale-conosco/denuncias">http://www.dpf.gov.br/servicos/fale-conosco/denuncias</a>
<p>
Tampouco use o <?php echo $site; ?> como um encurtador comum: fazer cópia do conteúdo implica em custos de servidor, e um crescimento da demanda tornaria inviável o serviço, que jamais terá fins lucrativos. Por favor, use apenas para denúncia e compartilhamento de conteúdo desprezível.
</p>
</p>
</aside>
</div> <!-- #main -->
</div> <!-- #main-container -->
<?php
}
?>
<div class="footer-container">
<footer class="wrapper">
<a href="https://github.com/naofode/naofo.de">código fonte</a>
-
<a title="botao <?php echo $site; ?>" href='javascript:var d=document,b=d.body,div=d.createElement("div");div.innerHTML="<form accept-charset=\"UTF-8\" action=\"http://<?php echo $site; ?>\" method=\"post\" target=\"_blank\"><input name=\"url\"><input name=\"title\"></form>";div.style.display="none";b.appendChild(div);var f=div.children[0];f["url"].value=window.location.href;f["title"].value=d.title;f.submit();' onclick="return false;">botão <?php echo $site; ?></a> (arraste para sua barra de favoritos e clique quando estiver na página que deseja encurtar)
</footer>
</div>
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create', '<?php echo $gaId; ?>', '<?php echo $site; ?>');ga('send','pageview');
</script>
</body>
</html>