Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Caringor committed Aug 25, 2017
0 parents commit 8630dcd
Show file tree
Hide file tree
Showing 17 changed files with 490 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Options -Indexes
order deny,allow

<Files ~ "^.(htaccess|htpasswd)$">
deny from all
</Files>

<Files ~ "^database.db">
deny from all
</Files>

RewriteEngine On
RewriteCond $1 !^(api|asset)
RewriteRule ^(\d+|\w+)$ index.php?id=$1
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2017 Caringor

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# CRZ.im
---
> 一个支持域名缩短网站的源代码
## 概述
[CRZ.im](http://crz.im/) 是一个提供网址缩短服务的网站,这是它的源代码。

## 安装
[CRZ.im](http://crz.im/) 基于 PHP 进行开发,下载后您只需要修改 `config.php` 的相关配置并为 `inc/class` 文件夹提供可读写权限。对于 Nginx 用户,还需把 `nginx.txt` 里面的内容添加到 Nginx 的配置文件内。
1 change: 1 addition & 0 deletions api/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php exit; ?>
21 changes: 21 additions & 0 deletions api/set.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

// 引入类
require_once('../inc/require.php');
global $config;
$url_c = new url();

$opt = [];
$opt['success'] = 'false';

$request_arr = json_decode(file_get_contents('php://input'), true);
if(isset($request_arr['url'])) {
$opt['success'] = 'true';
$opt['content']['url'] = $url_c->set_url($request_arr['url'], $config['length']);
} else {
$opt['content'] = '缺少必要参数!';
}

echo json_encode($opt);

?>
101 changes: 101 additions & 0 deletions asset/css/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
/* Reset */
* {
margin: 0;
padding: 0;
}
html, body, input, text, textarea {
outline: none;
font-family: 'Arial', 'Microsoft YaHei', '黑体', '宋体', sans-serif;
font-size: 12px;
}
html, body {
background: #fff;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}

/* Main */
.wrap {
text-align: center;
overflow: hidden;
}
.wrap .meta {
margin: 160px 0 0 0;
opacity: 0;
transform: translateY(-150px);
transition: .5s all ease;
}
.on .wrap .meta {
opacity: 1;
transform: translateY(0);
}
.wrap .meta .title {
line-height: 1em;
color: #ff4665;
font-size: 42px;
text-transform: uppercase;
}
.wrap .meta .description {
margin: 10px 0 0 0;
line-height: 1em;
color: #7e7e7e;
font-size: 16px;
font-weight: normal;
}
.wrap .link-area {
margin: 50px 0 0 0;
opacity: 0;
transition: .5s opacity ease;
}
.on .wrap .link-area {
opacity: 1;
}
.wrap .link-area input {
display: inline-block;
vertical-align: middle;
}
.wrap .link-area #url {
width: 320px;
height: 32px;
line-height: 32px;
padding: 0 10px;
border: 3px solid #bdc3c7;
border-radius: 5px;
color: #333;
}
.wrap .link-area #url.focus,
.wrap .link-area #url:focus {
border-color: #ff4665;
transition: .2s border ease;
}
.wrap .link-area #submit {
width: 90px;
height: 38px;
margin: 0 0 0 5px;
background: #ff4665;
border-radius: 5px;
color: #fff;
border: none;
cursor: pointer;
transition: .2s opacity ease;
}
.wrap .link-area #submit:hover {
opacity: .75;
}
.wrap .link-area #submit:active {
opacity: .9;
}
.wrap .footer {
width: 100%;
bottom: 80px;
left: 0;
position: absolute;
color: #7e7e7e;
}
.wrap .footer a {
color:#ff4665;
}
62 changes: 62 additions & 0 deletions asset/js/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@

var APP = (function(){

var fn = {

// 生成短地址
setUrl: function(self) {
var urlEl = document.getElementById('url');
if(urlEl.value) {
var request = {
"url": urlEl.value
};
fn.getJson('api/set.php', true, JSON.stringify(request), function(res) {
if(res.success == 'true') {
urlEl.className = 'focus';
urlEl.value = res.content.url;
}
});
} else {
urlEl.setAttribute('placeholder', '网址不能为空哦~');
setTimeout(function() {
urlEl.setAttribute('placeholder', 'https://');
}, 2000);
}
},

// 获取 JSON 数据
getJson: function(url, post, data, callback) {
var xhr = new XMLHttpRequest(),
type = (post) ? 'POST' : 'GET';
xhr.onreadystatechange = function() {
if(xhr.readyState == 4 && xhr.status == 200) {
var json = JSON.parse(xhr.responseText);
callback(json);
} else if(xhr.readyState == 4) {
callback(false);
}
}
xhr.open(type, url, true);
xhr.send(data);
}

},

init = function() {
setTimeout(function() {
var el = document.getElementsByTagName('html')[0];
el.setAttribute('class', 'on');
}, 10);
};

return {
fn: fn,
init: init
}

})();


document.addEventListener('DOMContentLoaded', function() {
APP.init();
})
15 changes: 15 additions & 0 deletions config.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

global $config;
$config = [];

// 程序安装路径
$config['path'] = '/';
// ID 长度
$config['length'] = 4;
// 网站标题
$config['title'] = 'CRZ.im';
// 网站简介
$config['description'] = '某千岁的域名缩短服务';

?>
Binary file added inc/class/database.db
Binary file not shown.
45 changes: 45 additions & 0 deletions inc/class/db.class.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?php

class db {

function __construct() {
$this->db = new PDO('sqlite:' . dirname(__FILE__) . '/database.db');
$this->init_tab();
}

// 初始化数据库结构
function init_tab() {
// 网址表
$this->db->exec("CREATE TABLE urls(
id char(8) PRIMARY KEY,
url longtext,
ip varchar(16),
ua varchar(255)
)");
}

// 查询表内容
function query($name, $rule = '') {
$query = $this->db->prepare("SELECT * FROM $name $rule");
$query->execute();
$result = $query->fetchAll();
return $result;
}

// 插入表内容
function insert($tab, $key, $val) {
$exec = $this->db->exec("INSERT INTO $tab ($key) VALUES($val)");
if(!$exec) return false;
$this->db->beginTransaction();
}

// 删除表内容
function delete($tab, $rule = '') {
$exec = $this->db->exec("DELETE FROM $tab $rule");
if(!$exec) return false;
$this->db->beginTransaction();
}

}

?>
70 changes: 70 additions & 0 deletions inc/class/url.class.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
<?php

class url {

function __construct() {
global $db_c;
$this->db = $db_c;
}

// 生成短地址
public function set_url($url, $size = 4) {
$id = $this->get_id($url);
if(!$id) {
$id = $this->create_id($url, $size);
$ip = get_ip();
$ua = get_ua();
$this->db->insert('urls', 'id, url, ip, ua', "'$id', '$url', '$ip', '$ua'");
}
$s_url = get_uri() . $id;
return $s_url;
}

// 生成地址 ID
public function create_id($url, $size = 4) {
$md5 = md5($url);
// 随机抽取 MD5 中的字符作为 ID
$id = '';
for($i = 0; $i < $size; $i++) {
$rand_id = rand(0, strlen($md5) - 1);
$id .= $md5[$rand_id];
}
// ID 检测
if($this->has_id($id)) {
return $this->create_id($url, $size);
} else {
return $id;
}
}

// 查询 ID 号
public function get_id($url) {
$result = $this->db->query('urls', "WHERE url = '$url'");
(count($result) > 0) ? $opt = $result[0]['id'] : $opt = false;
return $opt;
}

// 查询目标地址
public function get_url($id) {
$result = $this->db->query('urls', "WHERE id = '$id'");
(count($result) > 0) ? $opt = $result[0]['url'] : $opt = false;
return $opt;
}

// 检测 ID 是否已经存在
public function has_id($id) {
$result = $this->db->query('urls', "WHERE id = '$id'");
(count($result) > 0) ? $opt = true : $opt = false;
return $opt;
}

// 清空短地址
public function clean_urls() {
$del = $this->db->delete('urls');
if($del) return true;
return false;
}

}

?>
Loading

0 comments on commit 8630dcd

Please sign in to comment.