forked from 540co/yourTwapperKeeper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
executable file
·165 lines (138 loc) · 6.68 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
<?php
/*
yourTwapperKeeper - Twitter Archiving Application - http://your.twapperkeeper.com
Copyright (c) 2010 John O'Brien III - http://www.linkedin.com/in/jobrieniii
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; either version 2
of the License, or (at your option) any later version.
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.
*/
// Set Important / Load important
session_start();
require_once('config.php');
require_once('function.php');
require_once('twitteroauth.php');
// OAuth login check
if (empty($_SESSION['access_token']) || empty($_SESSION['access_token']['oauth_token']) || empty($_SESSION['access_token']['oauth_token_secret'])) {
$login_status = "<a href='./oauthlogin.php' ><img src='./resources/lighter.png'/></a>";
$logged_in = FALSE;
} else {
$access_token = $_SESSION['access_token'];
$connection = new TwitterOAuth($tk_oauth_consumer_key, $tk_oauth_consumer_secret, $access_token['oauth_token'], $access_token['oauth_token_secret']);
$login_info = $connection->get('account/verify_credentials');
$login_status = "Hi ".$_SESSION['access_token']['screen_name'].", are you ready to archive?<br><a href='./clearsessions.php'>logout</a>";
$logged_in = TRUE;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Your Twapper Keeper - Archive your own tweets</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link href="resources/css/custom-theme/jquery-ui-1.8.4.custom.css" rel="stylesheet" type="text/css">
<link href="resources/css/yourtwapperkeeper.css?v=2" rel="stylesheet" type="text/css">
<script src="resources/js/jquery-1.4.2.min.js"></script>
<script src="resources/js/jquery-ui-1.8.4.custom.min.js"></script>
</head>
<body>
<div id='login'>
<?php echo $login_status; ?>
<p><a href='index.php'><img src='resources/yourTwapperKeeperLogo.png'/></a></p>
</div> <!-- end login div -->
<div id='header'>
<?php if ($logged_in) { ?>
<p><center>
<form action='create.php' method='post'>
<table class='none'>
<td>Keyword or Hashtag: <input name='keyword'/></td>
<td>Description: <input name='description'/></td>
<td>Tags: <input name='tags'/></td>
<td><input type='submit' value ='Create Archive'/></td>
</table>
</form>
</center>
<br>
<?php
// allow start stop (only if in admin group)
if (in_array($_SESSION['access_token']['screen_name'],$admin_screen_name)) {
$archiving_status = $tk->statusArchiving($archive_process_array);
if ($archiving_status[0] == FALSE) {
echo "<a href='startarchiving.php'><img src='./resources/play_24.png' alt='Start Archving' title='Start Archiving'/></a>";
} else {
echo "<a href='stoparchiving.php'><img src='./resources/stop_24.png' alt='Stop Archving' title='Stop Archiving'/></a>";
}
echo "<b>".$archiving_status[1]."<b>";
}
?>
</p>
<?php } ?>
</div> <!-- end header div -->
<div id='main'>
<?php if (isset($_SESSION['notice'])) { ?>
<div class='ui-widget'><div class='ui-state-highlight ui-corner-all' style='padding:5px; margin: 5px; width:750px; margin-left:auto; margin-right:auto; text-align:center'><span class='ui-icon ui-icon-info' style='float: left'></span><b><?php echo $_SESSION['notice']; ?></b></div></div>
<?php
unset($_SESSION['notice']);
}?>
<?php
// list table of archives
$archives = $tk->listArchive();
echo "<table>";
echo "<tr><th>Archive ID</th><th>Keyword / Hashtag</th><th>Description</th><th>Tags</th><th>Screen Name</th><th>Count</th><th>Create Time</th><th></th></tr>";
foreach ($archives['results'] as $value) {
echo "<tr><td>".$value['id']."</td><td>".$value['keyword']."</td><td>".$value['description']."</td><td>".$value['tags']."</td><td>".$value['screen_name']."</td><td>".$value['count']."</td><td>".date(DATE_RFC2822,$value['create_time'])."</td>";
echo "<td>";
echo "<a href='archive.php?id=".$value['id']."' target='_blank' alt='View'><img src='./resources/binoculars_24.png' alt='View Archive' title='View Archive'/></a>";
if ($_SESSION['access_token']['screen_name'] == $value['screen_name']) {
?>
<script type="text/javascript">
$(function() {
$("#deletedialog<?php echo $value['id']; ?>").dialog({
autoOpen: false,
height: 150,
width: 800,
modal: true
});
$('#deletelink<?php echo $value['id']; ?>').click(function(){
$('#deletedialog<?php echo $value['id']; ?>').dialog('open');
return false;
});
$("#updatedialog<?php echo $value['id']; ?>").dialog({
autoOpen: false,
height: 300,
width: 300,
modal: true
});
$('#updatelink<?php echo $value['id']; ?>').click(function(){
$('#updatedialog<?php echo $value['id']; ?>').dialog('open');
return false;
});
});
</script>
<div id = 'deletedialog<?php echo $value['id']; ?>' title='Are you sure you want to delete <?php echo $value['keyword']; ?> archive?'>
<br><br><center><form method='post' action='delete.php'><input type='hidden' name='id' value='<?php echo $value['id']; ?>'/><input type='submit' value='Yes'/></form></center>
</div>
<div id = 'updatedialog<?php echo $value['id']; ?>' title='Update <?php echo $value['keyword']; ?> archive'>
<br><br><center><form method='post' action='update.php'>Description<br><input name='description' value='<?php echo $value['description']; ?>'/><br><br>Tags<br><input name='tags' value='<?php echo $value['tags']; ?>'/><input type='hidden' name='id' value='<?php echo $value['id']; ?>'/><br><br><p><input type='submit' value='Update'/></p></form></center>
</div>
<?php
echo "<a href='#' id='updatelink".$value['id']."'><img src='./resources/pencil_24.png' alt='Edit Archive' title='Edit Archive'/></a>";
echo " <a href='#' id='deletelink".$value['id']."'><img src='./resources/close_2_24.png' alt='Delete Archive' title='Delete Archive'/></a>";
}
echo "</td>";
echo "</tr>";
}
echo "</table>";
?>
</div>
<div id='footer'>
<p>Your TwapperKeeper - <?php echo $yourtwapperkeeper_version; ?></p>
</div>
</body>
</html>