-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathissues.php
217 lines (191 loc) · 8.25 KB
/
issues.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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<?php
require_once 'includes/auth.php';
require_once 'includes/database.php';
require_once 'includes/repository.php';
requireLogin();
$repo = $_GET['repo'] ?? null;
$username = $_GET['user'] ?? $_SESSION['username'];
$issueId = $_GET['issue'] ?? null;
$db = Database::getInstance();
if (!$repo) {
header('Location: dashboard.php');
exit;
}
// Get repository info
$repoInfo = getRepositoryInfo($username, $repo);
if (!$repoInfo || !canAccessRepository($repoInfo)) {
die("Access denied");
}
// Handle form submissions
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
switch ($_POST['action']) {
case 'add_comment':
$stmt = $db->prepare('
INSERT INTO issue_comments (issue_id, user_id, comment)
VALUES (:issue_id, :user_id, :comment)
');
$stmt->bindValue(':issue_id', $_POST['issue_id'], SQLITE3_INTEGER);
$stmt->bindValue(':user_id', $_SESSION['user_id'], SQLITE3_INTEGER);
$stmt->bindValue(':comment', $_POST['comment'], SQLITE3_TEXT);
$stmt->execute();
header('Location: issues.php?' . http_build_query([
'repo' => $repo,
'user' => $username,
'issue' => $_POST['issue_id']
]));
exit;
case 'update_status':
if ($_SESSION['user_id'] === $repoInfo['user_id']) {
$stmt = $db->prepare('
UPDATE issues
SET status = :status, updated_at = CURRENT_TIMESTAMP
WHERE id = :issue_id AND repository_id = :repo_id
');
$stmt->bindValue(':status', $_POST['status'], SQLITE3_TEXT);
$stmt->bindValue(':issue_id', $_POST['issue_id'], SQLITE3_INTEGER);
$stmt->bindValue(':repo_id', $repoInfo['id'], SQLITE3_INTEGER);
$stmt->execute();
header('Location: issues.php?' . http_build_query([
'repo' => $repo,
'user' => $username,
'issue' => $_POST['issue_id']
]));
exit;
}
break;
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title><?php echo htmlspecialchars($repo); ?> - Issues</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php include 'includes/header.php'; ?>
<?php include 'includes/repo-header.php'; ?>
<?php if ($issueId): // Single issue view
$db = Database::getInstance();
// Get issue details
$stmt = $db->prepare('
SELECT i.*,
c.username as creator_name,
a.username as assignee_name
FROM issues i
JOIN users c ON i.created_by = c.id
LEFT JOIN users a ON i.assigned_to = a.id
WHERE i.id = :id AND i.repository_id = :repo_id
');
$stmt->bindValue(':id', $issueId, SQLITE3_INTEGER);
$stmt->bindValue(':repo_id', $repoInfo['id'], SQLITE3_INTEGER);
$issue = $stmt->execute()->fetchArray(SQLITE3_ASSOC);
if (!$issue) {
die("Issue not found");
}
// Get comments
$stmt = $db->prepare('
SELECT c.*, u.username
FROM issue_comments c
JOIN users u ON c.user_id = u.id
WHERE c.issue_id = :issue_id
ORDER BY c.created_at ASC
');
$stmt->bindValue(':issue_id', $issueId, SQLITE3_INTEGER);
$result = $stmt->execute();
?>
<div class="issue-detail">
<h2><?php echo htmlspecialchars($issue['title']); ?></h2>
<div class="issue-meta">
<span class="status <?php echo $issue['status']; ?>">
<?php echo ucfirst($issue['status']); ?>
</span>
Created by <?php echo htmlspecialchars($issue['creator_name']); ?>
on <?php echo date('Y-m-d H:i', strtotime($issue['created_at'])); ?>
<?php if ($issue['assignee_name']): ?>
• Assigned to <?php echo htmlspecialchars($issue['assignee_name']); ?>
<?php endif; ?>
</div>
<div class="issue-description">
<?php echo nl2br(htmlspecialchars($issue['description'])); ?>
</div>
<?php if ($_SESSION['user_id'] === $repoInfo['user_id']): ?>
<form method="post" class="status-update">
<input type="hidden" name="action" value="update_status">
<input type="hidden" name="issue_id" value="<?php echo $issue['id']; ?>">
<select name="status">
<option value="open" <?php echo $issue['status'] === 'open' ? 'selected' : ''; ?>>Open</option>
<option value="closed" <?php echo $issue['status'] === 'closed' ? 'selected' : ''; ?>>Closed</option>
</select>
<button type="submit">Update Status</button>
</form>
<?php endif; ?>
<div class="comments">
<h3>Comments</h3>
<?php while ($comment = $result->fetchArray(SQLITE3_ASSOC)): ?>
<div class="comment">
<div class="comment-meta">
<?php echo htmlspecialchars($comment['username']); ?>
commented on
<?php echo date('Y-m-d H:i', strtotime($comment['created_at'])); ?>
</div>
<div class="comment-content">
<?php echo nl2br(htmlspecialchars($comment['comment'])); ?>
</div>
</div>
<?php endwhile; ?>
<form method="post" class="add-comment">
<input type="hidden" name="action" value="add_comment">
<input type="hidden" name="issue_id" value="<?php echo $issue['id']; ?>">
<textarea name="comment" required placeholder="Add a comment..."></textarea>
<button type="submit">Add Comment</button>
</form>
</div>
</div>
<?php else: // Issues list view ?>
<div class="issues-list">
<h3>Issues</h3>
<form action="create_issue.php" method="get">
<input type="hidden" name="repo" value="<?php echo htmlspecialchars($repo); ?>">
<input type="hidden" name="user" value="<?php echo htmlspecialchars($username); ?>">
<button type="submit" class="btn-primary">Create New Issue</button>
</form>
<?php
$stmt = $db->prepare('
SELECT i.*,
c.username as creator_name,
a.username as assignee_name
FROM issues i
JOIN users c ON i.created_by = c.id
LEFT JOIN users a ON i.assigned_to = a.id
WHERE i.repository_id = :repo_id
ORDER BY i.created_at DESC
');
$stmt->bindValue(':repo_id', $repoInfo['id'], SQLITE3_INTEGER);
$result = $stmt->execute();
while ($issue = $result->fetchArray(SQLITE3_ASSOC)):
?>
<div class="issue <?php echo $issue['status']; ?>">
<h4>
<a href="issues.php?<?php echo http_build_query([
'repo' => $repo,
'user' => $username,
'issue' => $issue['id']
]); ?>">
<?php echo htmlspecialchars($issue['title']); ?>
</a>
</h4>
<div class="issue-meta">
#<?php echo $issue['id']; ?>
opened by <?php echo htmlspecialchars($issue['creator_name']); ?>
on <?php echo date('Y-m-d', strtotime($issue['created_at'])); ?>
<?php if ($issue['assignee_name']): ?>
• Assigned to <?php echo htmlspecialchars($issue['assignee_name']); ?>
<?php endif; ?>
</div>
</div>
<?php endwhile; ?>
</div>
<?php endif; ?>
</body>
</html>