Compare commits
1 Commits
dev/tasks-
...
ac40c7d949
| Author | SHA1 | Date | |
|---|---|---|---|
| ac40c7d949 |
@@ -35,7 +35,7 @@ COMMENT ON TABLE municipalities IS 'Configuration Per Municipality (Tenant) usin
|
|||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
-- Block 3: Table "contributions"
|
-- Block 3: Table "contributions"
|
||||||
-- Citizen and Administration Contributions as Points, Lines, and
|
-- Aitizen and Administration Contributions as Points, Lines, and
|
||||||
-- Polygons stored together in one mixed-geometry Column.
|
-- Polygons stored together in one mixed-geometry Column.
|
||||||
-- ---------------------------------------------------------------------
|
-- ---------------------------------------------------------------------
|
||||||
CREATE TABLE contributions (
|
CREATE TABLE contributions (
|
||||||
|
|||||||
@@ -1,183 +0,0 @@
|
|||||||
-- =====================================================================
|
|
||||||
-- Migration 009: Tasks Module — Tasks with Reward System
|
|
||||||
-- =====================================================================
|
|
||||||
|
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
-- Block 1: Tasks Table
|
|
||||||
-- Stores Tasks with Geometry, Moderation and Completion.
|
|
||||||
-- Status Flow from pending to rejected or approved to completed to verified
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
CREATE TABLE IF NOT EXISTS tasks (
|
|
||||||
task_id SERIAL PRIMARY KEY,
|
|
||||||
municipality_id INTEGER NOT NULL REFERENCES municipalities(municipality_id),
|
|
||||||
geom GEOMETRY(Geometry, 4326) NOT NULL,
|
|
||||||
geom_type VARCHAR(10) NOT NULL CHECK (geom_type IN ('point', 'line', 'polygon')),
|
|
||||||
category VARCHAR(50) NOT NULL,
|
|
||||||
title VARCHAR(200) NOT NULL,
|
|
||||||
description TEXT DEFAULT '',
|
|
||||||
points_reward INTEGER NOT NULL DEFAULT 25,
|
|
||||||
author_name VARCHAR(100) NOT NULL,
|
|
||||||
browser_id VARCHAR(36),
|
|
||||||
photo_path VARCHAR(255),
|
|
||||||
status VARCHAR(20) NOT NULL DEFAULT 'pending'
|
|
||||||
CHECK (status IN ('pending', 'rejected', 'approved', 'completed', 'verified')),
|
|
||||||
address VARCHAR(255),
|
|
||||||
|
|
||||||
-- Completion Fields empty before completed
|
|
||||||
completed_by_name VARCHAR(100),
|
|
||||||
completed_by_browser VARCHAR(36),
|
|
||||||
completion_photo VARCHAR(255),
|
|
||||||
completion_comment TEXT,
|
|
||||||
completed_at TIMESTAMP,
|
|
||||||
|
|
||||||
-- Counters updated via Triggers
|
|
||||||
likes_count INTEGER NOT NULL DEFAULT 0,
|
|
||||||
dislikes_count INTEGER NOT NULL DEFAULT 0,
|
|
||||||
comment_count INTEGER NOT NULL DEFAULT 0,
|
|
||||||
|
|
||||||
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
|
|
||||||
updated_at TIMESTAMP NOT NULL DEFAULT NOW()
|
|
||||||
);
|
|
||||||
|
|
||||||
CREATE INDEX idx_tasks_municipality ON tasks(municipality_id);
|
|
||||||
CREATE INDEX idx_tasks_status ON tasks(status);
|
|
||||||
CREATE INDEX idx_tasks_category ON tasks(category);
|
|
||||||
|
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
-- Block 2: Citizen Points Table
|
|
||||||
-- One Row per Completion. Leaderboard via SUM and GROUP BY.
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
CREATE TABLE IF NOT EXISTS user_points (
|
|
||||||
points_id SERIAL PRIMARY KEY,
|
|
||||||
municipality_id INTEGER NOT NULL REFERENCES municipalities(municipality_id),
|
|
||||||
user_name VARCHAR(100) NOT NULL,
|
|
||||||
points INTEGER NOT NULL DEFAULT 25,
|
|
||||||
task_id INTEGER NOT NULL REFERENCES tasks(task_id) ON DELETE CASCADE,
|
|
||||||
created_at TIMESTAMP NOT NULL DEFAULT NOW()
|
|
||||||
);
|
|
||||||
|
|
||||||
CREATE INDEX idx_user_points_municipality ON user_points(municipality_id);
|
|
||||||
CREATE INDEX idx_user_points_user ON user_points(user_name);
|
|
||||||
|
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
-- Block 3: Adapts Votes Table for Tasks
|
|
||||||
-- Either contribution_id OR task_id
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
ALTER TABLE votes
|
|
||||||
ADD COLUMN task_id INTEGER REFERENCES tasks(task_id) ON DELETE CASCADE;
|
|
||||||
|
|
||||||
CREATE INDEX idx_votes_task ON votes(task_id);
|
|
||||||
|
|
||||||
-- Unique Vote per Browser per Task
|
|
||||||
ALTER TABLE votes
|
|
||||||
ADD CONSTRAINT votes_task_browser_unique
|
|
||||||
UNIQUE (task_id, browser_id);
|
|
||||||
|
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
-- Block 4: Adapts Comments Table for Tasks
|
|
||||||
-- Either contribution_id OR task_id
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
ALTER TABLE comments
|
|
||||||
ADD COLUMN task_id INTEGER REFERENCES tasks(task_id) ON DELETE CASCADE;
|
|
||||||
|
|
||||||
CREATE INDEX idx_comments_task ON comments(task_id);
|
|
||||||
|
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
-- Block 5: Trigger Updated Timestamp for Tasks
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
CREATE TRIGGER set_tasks_updated_at
|
|
||||||
BEFORE UPDATE ON tasks
|
|
||||||
FOR EACH ROW
|
|
||||||
EXECUTE FUNCTION set_updated_at();
|
|
||||||
|
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
-- Block 6: Trigger Vote Counts for Tasks
|
|
||||||
-- Mirrors Pattern from Contributions.
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
CREATE OR REPLACE FUNCTION update_task_vote_counts()
|
|
||||||
RETURNS TRIGGER AS $$
|
|
||||||
BEGIN
|
|
||||||
IF TG_OP = 'INSERT' OR TG_OP = 'UPDATE' THEN
|
|
||||||
IF NEW.task_id IS NOT NULL THEN
|
|
||||||
UPDATE tasks SET
|
|
||||||
likes_count = (SELECT COUNT(*) FROM votes WHERE task_id = NEW.task_id AND vote_type = 'like'),
|
|
||||||
dislikes_count = (SELECT COUNT(*) FROM votes WHERE task_id = NEW.task_id AND vote_type = 'dislike')
|
|
||||||
WHERE task_id = NEW.task_id;
|
|
||||||
END IF;
|
|
||||||
END IF;
|
|
||||||
|
|
||||||
IF TG_OP = 'DELETE' OR (TG_OP = 'UPDATE' AND OLD.task_id IS NOT NULL) THEN
|
|
||||||
UPDATE tasks SET
|
|
||||||
likes_count = (SELECT COUNT(*) FROM votes WHERE task_id = OLD.task_id AND vote_type = 'like'),
|
|
||||||
dislikes_count = (SELECT COUNT(*) FROM votes WHERE task_id = OLD.task_id AND vote_type = 'dislike')
|
|
||||||
WHERE task_id = OLD.task_id;
|
|
||||||
END IF;
|
|
||||||
|
|
||||||
RETURN NULL;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE plpgsql;
|
|
||||||
|
|
||||||
DROP TRIGGER IF EXISTS trigger_update_task_vote_counts ON votes;
|
|
||||||
|
|
||||||
CREATE TRIGGER trigger_update_task_vote_counts
|
|
||||||
AFTER INSERT OR DELETE OR UPDATE ON votes
|
|
||||||
FOR EACH ROW
|
|
||||||
EXECUTE FUNCTION update_task_vote_counts();
|
|
||||||
|
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
-- Block 7: Trigger Comment Count for Tasks
|
|
||||||
-- Mirrors Pattern from Contributions.
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
CREATE OR REPLACE FUNCTION update_task_comment_count()
|
|
||||||
RETURNS TRIGGER AS $$
|
|
||||||
BEGIN
|
|
||||||
IF TG_OP = 'INSERT' OR TG_OP = 'UPDATE' THEN
|
|
||||||
IF NEW.task_id IS NOT NULL THEN
|
|
||||||
UPDATE tasks
|
|
||||||
SET comment_count = (
|
|
||||||
SELECT COUNT(*) FROM comments
|
|
||||||
WHERE task_id = NEW.task_id AND status = 'approved'
|
|
||||||
)
|
|
||||||
WHERE task_id = NEW.task_id;
|
|
||||||
END IF;
|
|
||||||
END IF;
|
|
||||||
|
|
||||||
IF TG_OP = 'DELETE' OR (TG_OP = 'UPDATE' AND OLD.task_id IS NOT NULL) THEN
|
|
||||||
UPDATE tasks
|
|
||||||
SET comment_count = (
|
|
||||||
SELECT COUNT(*) FROM comments
|
|
||||||
WHERE task_id = OLD.task_id AND status = 'approved'
|
|
||||||
)
|
|
||||||
WHERE task_id = OLD.task_id;
|
|
||||||
END IF;
|
|
||||||
|
|
||||||
RETURN NULL;
|
|
||||||
END;
|
|
||||||
$$ LANGUAGE plpgsql;
|
|
||||||
|
|
||||||
DROP TRIGGER IF EXISTS trigger_update_task_comment_count ON comments;
|
|
||||||
|
|
||||||
CREATE TRIGGER trigger_update_task_comment_count
|
|
||||||
AFTER INSERT OR DELETE OR UPDATE OF status ON comments
|
|
||||||
FOR EACH ROW
|
|
||||||
EXECUTE FUNCTION update_task_comment_count();
|
|
||||||
|
|
||||||
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
-- Block 8: Views for QGIS
|
|
||||||
-- ---------------------------------------------------------------------
|
|
||||||
CREATE OR REPLACE VIEW tasks_points AS
|
|
||||||
SELECT * FROM tasks WHERE geom_type = 'point';
|
|
||||||
|
|
||||||
CREATE OR REPLACE VIEW tasks_lines AS
|
|
||||||
SELECT * FROM tasks WHERE geom_type = 'line';
|
|
||||||
|
|
||||||
CREATE OR REPLACE VIEW tasks_polygons AS
|
|
||||||
SELECT * FROM tasks WHERE geom_type = 'polygon';
|
|
||||||
@@ -17,7 +17,7 @@ require_once __DIR__ . '/db.php';
|
|||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
// ---------------------------------------------------------------------
|
||||||
// Reads Action Parameter and Routes to correct Handler
|
// Read Action Parameter and Route to correct Handler
|
||||||
// ---------------------------------------------------------------------
|
// ---------------------------------------------------------------------
|
||||||
$input = get_input();
|
$input = get_input();
|
||||||
$action = $input['action'] ?? '';
|
$action = $input['action'] ?? '';
|
||||||
@@ -59,27 +59,6 @@ switch ($action) {
|
|||||||
case 'update_comment':
|
case 'update_comment':
|
||||||
handle_update_comment($input);
|
handle_update_comment($input);
|
||||||
break;
|
break;
|
||||||
case 'read_tasks':
|
|
||||||
handle_read_tasks($input);
|
|
||||||
break;
|
|
||||||
case 'create_task':
|
|
||||||
handle_create_task($input);
|
|
||||||
break;
|
|
||||||
case 'update_task':
|
|
||||||
handle_update_task($input);
|
|
||||||
break;
|
|
||||||
case 'delete_task':
|
|
||||||
handle_delete_task($input);
|
|
||||||
break;
|
|
||||||
case 'complete_task':
|
|
||||||
handle_complete_task($input);
|
|
||||||
break;
|
|
||||||
case 'verify_task':
|
|
||||||
handle_verify_task($input);
|
|
||||||
break;
|
|
||||||
case 'read_leaderboard':
|
|
||||||
handle_read_leaderboard($input);
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
error_response('Unknown Action. Supported Actions are read, create, update, delete, vote.');
|
error_response('Unknown Action. Supported Actions are read, create, update, delete, vote.');
|
||||||
}
|
}
|
||||||
@@ -356,8 +335,8 @@ function handle_delete($input) {
|
|||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
// ---------------------------------------------------------------------
|
||||||
// VOTE: Likes or Dislikes Contributions or Tasks
|
// VOTE: Likes or Dislikes a Contribution
|
||||||
// Required: contribution_id or task_id, voter_name, vote_type
|
// Required: contribution_id, voter_name, vote_type
|
||||||
// Database Trigger automatically updates Likes and Dislikes Count
|
// Database Trigger automatically updates Likes and Dislikes Count
|
||||||
// UNIQUE Constraint prevents duplicate Votes per Voter.
|
// UNIQUE Constraint prevents duplicate Votes per Voter.
|
||||||
// ---------------------------------------------------------------------
|
// ---------------------------------------------------------------------
|
||||||
@@ -365,7 +344,7 @@ function handle_vote($input) {
|
|||||||
$pdo = get_db();
|
$pdo = get_db();
|
||||||
|
|
||||||
// Validates Input
|
// Validates Input
|
||||||
$missing = validate_required($input, ['voter_name', 'vote_type']);
|
$missing = validate_required($input, ['contribution_id', 'voter_name', 'vote_type']);
|
||||||
if (!empty($missing)) {
|
if (!empty($missing)) {
|
||||||
error_response('Missing Fields: ' . implode(', ', $missing));
|
error_response('Missing Fields: ' . implode(', ', $missing));
|
||||||
}
|
}
|
||||||
@@ -376,6 +355,13 @@ function handle_vote($input) {
|
|||||||
error_response('Invalid vote_type. Must be: ' . implode(', ', $valid_vote_types));
|
error_response('Invalid vote_type. Must be: ' . implode(', ', $valid_vote_types));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Checks if Contribution exists
|
||||||
|
$stmt = $pdo->prepare("SELECT contribution_id FROM contributions WHERE contribution_id = :id");
|
||||||
|
$stmt->execute([':id' => $input['contribution_id']]);
|
||||||
|
if (!$stmt->fetch()) {
|
||||||
|
error_response('Contribution not found.', 404);
|
||||||
|
}
|
||||||
|
|
||||||
// Prepared SQL Statement
|
// Prepared SQL Statement
|
||||||
try {
|
try {
|
||||||
// Checks if Voter already voted on this Contribution
|
// Checks if Voter already voted on this Contribution
|
||||||
@@ -384,39 +370,11 @@ function handle_vote($input) {
|
|||||||
error_response('Browser ID required for Voting.');
|
error_response('Browser ID required for Voting.');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Determines Vote Type
|
|
||||||
$is_task = isset($input['task_id']) && $input['task_id'] !== '';
|
|
||||||
|
|
||||||
if ($is_task) {
|
|
||||||
// Checks for Tasks
|
|
||||||
$stmt = $pdo->prepare("SELECT task_id FROM tasks WHERE task_id = :id");
|
|
||||||
$stmt->execute([':id' => $input['task_id']]);
|
|
||||||
if (!$stmt->fetch()) {
|
|
||||||
error_response('Task not found.', 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Checks if Browser already voted on Task
|
|
||||||
$stmt = $pdo->prepare("
|
$stmt = $pdo->prepare("
|
||||||
SELECT vote_id, vote_type FROM votes
|
SELECT vote_id, vote_type FROM votes
|
||||||
WHERE task_id = :id AND browser_id = :bid
|
WHERE contribution_id = :cid AND browser_id = :bid
|
||||||
");
|
");
|
||||||
$stmt->execute([':id' => $input['task_id'], ':bid' => $browser_id]);
|
$stmt->execute([':cid' => $input['contribution_id'], ':bid' => $browser_id]);
|
||||||
} else {
|
|
||||||
// Checks for Contributions
|
|
||||||
$stmt = $pdo->prepare("SELECT contribution_id FROM contributions WHERE contribution_id = :id");
|
|
||||||
$stmt->execute([':id' => $input['contribution_id']]);
|
|
||||||
if (!$stmt->fetch()) {
|
|
||||||
error_response('Contribution not found.', 404);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Checks if Browser already voted on Contribution
|
|
||||||
$stmt = $pdo->prepare("
|
|
||||||
SELECT vote_id, vote_type FROM votes
|
|
||||||
WHERE contribution_id = :id AND browser_id = :bid
|
|
||||||
");
|
|
||||||
$stmt->execute([':id' => $input['contribution_id'], ':bid' => $browser_id]);
|
|
||||||
}
|
|
||||||
|
|
||||||
$existing = $stmt->fetch();
|
$existing = $stmt->fetch();
|
||||||
|
|
||||||
if ($existing) {
|
if ($existing) {
|
||||||
@@ -426,48 +384,36 @@ function handle_vote($input) {
|
|||||||
$stmt->execute([':vid' => $existing['vote_id']]);
|
$stmt->execute([':vid' => $existing['vote_id']]);
|
||||||
json_response(['message' => 'Vote removed.', 'action' => 'removed']);
|
json_response(['message' => 'Vote removed.', 'action' => 'removed']);
|
||||||
} else {
|
} else {
|
||||||
// Different Vote Type — Removes old Vote before Inserting new one
|
// Different Vote Type — Switches Vote
|
||||||
$stmt = $pdo->prepare("DELETE FROM votes WHERE vote_id = :vid");
|
$stmt = $pdo->prepare("DELETE FROM votes WHERE vote_id = :vid");
|
||||||
$stmt->execute([':vid' => $existing['vote_id']]);
|
$stmt->execute([':vid' => $existing['vote_id']]);
|
||||||
$this_insert = true;
|
|
||||||
|
$stmt = $pdo->prepare("
|
||||||
|
INSERT INTO votes (contribution_id, voter_name, vote_type, browser_id)
|
||||||
|
VALUES (:cid, :voter, :vtype, :bid)
|
||||||
|
");
|
||||||
|
$stmt->execute([
|
||||||
|
':cid' => $input['contribution_id'],
|
||||||
|
':voter' => $input['voter_name'],
|
||||||
|
':vtype' => $input['vote_type'],
|
||||||
|
':bid' => $browser_id
|
||||||
|
]);
|
||||||
|
json_response(['message' => 'Vote changed.', 'action' => 'changed'], 200);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// No existing Vote — Inserts Vote
|
// No existing Vote — Inserts Vote
|
||||||
$this_insert = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!empty($this_insert)) {
|
|
||||||
if ($is_task) {
|
|
||||||
$stmt = $pdo->prepare("
|
|
||||||
INSERT INTO votes (task_id, voter_name, vote_type, browser_id)
|
|
||||||
VALUES (:id, :voter, :vtype, :bid)
|
|
||||||
");
|
|
||||||
$stmt->execute([
|
|
||||||
':id' => $input['task_id'],
|
|
||||||
':voter' => $input['voter_name'],
|
|
||||||
':vtype' => $input['vote_type'],
|
|
||||||
':bid' => $browser_id
|
|
||||||
]);
|
|
||||||
} else {
|
|
||||||
$stmt = $pdo->prepare("
|
$stmt = $pdo->prepare("
|
||||||
INSERT INTO votes (contribution_id, voter_name, vote_type, browser_id)
|
INSERT INTO votes (contribution_id, voter_name, vote_type, browser_id)
|
||||||
VALUES (:id, :voter, :vtype, :bid)
|
VALUES (:cid, :voter, :vtype, :bid)
|
||||||
");
|
");
|
||||||
$stmt->execute([
|
$stmt->execute([
|
||||||
':id' => $input['contribution_id'],
|
':cid' => $input['contribution_id'],
|
||||||
':voter' => $input['voter_name'],
|
':voter' => $input['voter_name'],
|
||||||
':vtype' => $input['vote_type'],
|
':vtype' => $input['vote_type'],
|
||||||
':bid' => $browser_id
|
':bid' => $browser_id
|
||||||
]);
|
]);
|
||||||
}
|
|
||||||
|
|
||||||
// Returns changed or created
|
|
||||||
if ($existing) {
|
|
||||||
json_response(['message' => 'Vote changed.', 'action' => 'changed'], 200);
|
|
||||||
} else {
|
|
||||||
json_response(['message' => 'Vote recorded.', 'action' => 'created'], 201);
|
json_response(['message' => 'Vote recorded.', 'action' => 'created'], 201);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
} catch (PDOException $e) {
|
} catch (PDOException $e) {
|
||||||
error_response('Database Error: ' . $e->getMessage(), 500);
|
error_response('Database Error: ' . $e->getMessage(), 500);
|
||||||
@@ -619,40 +565,26 @@ function handle_photo_upload($file) {
|
|||||||
// =====================================================================
|
// =====================================================================
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
// ---------------------------------------------------------------------
|
||||||
// READ COMMENTS: Loads Comments for Contributions or Tasks
|
// READ COMMENTS: Loads Comments for a Contribution
|
||||||
// Returns Comments sorted by Date (oldest first)
|
// Returns Comments sorted by Date (newest first)
|
||||||
// Required: contribution_id or task_id
|
// Required: contribution_id
|
||||||
// ---------------------------------------------------------------------
|
// ---------------------------------------------------------------------
|
||||||
function handle_read_comments($input) {
|
function handle_read_comments($input) {
|
||||||
$pdo = get_db();
|
$pdo = get_db();
|
||||||
|
|
||||||
// Checks for contribution_id or task_id
|
$missing = validate_required($input, ['contribution_id']);
|
||||||
if (empty($input['contribution_id']) && empty($input['task_id'])) {
|
if (!empty($missing)) {
|
||||||
error_response('Either contribution_id or task_id is required.');
|
error_response('Missing Fields: ' . implode(', ', $missing));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Determines Vote Type
|
|
||||||
$is_task = isset($input['task_id']) && $input['task_id'] !== '';
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if ($is_task) {
|
|
||||||
$stmt = $pdo->prepare("
|
|
||||||
SELECT comment_id, task_id, author_name, browser_id, content, status, created_at
|
|
||||||
FROM comments
|
|
||||||
WHERE task_id = :id AND status = 'approved'
|
|
||||||
ORDER BY created_at ASC
|
|
||||||
");
|
|
||||||
} else {
|
|
||||||
$stmt = $pdo->prepare("
|
$stmt = $pdo->prepare("
|
||||||
SELECT comment_id, contribution_id, author_name, browser_id, content, status, created_at
|
SELECT comment_id, contribution_id, author_name, browser_id, content, status, created_at
|
||||||
FROM comments
|
FROM comments
|
||||||
WHERE contribution_id = :id AND status = 'approved'
|
WHERE contribution_id = :cid AND status = 'approved'
|
||||||
ORDER BY created_at ASC
|
ORDER BY created_at ASC
|
||||||
");
|
");
|
||||||
}
|
$stmt->execute([':cid' => $input['contribution_id']]);
|
||||||
|
|
||||||
// Prepared Statement
|
|
||||||
$stmt->execute([':id' => $is_task ? $input['task_id'] : $input['contribution_id']]);
|
|
||||||
$comments = $stmt->fetchAll();
|
$comments = $stmt->fetchAll();
|
||||||
|
|
||||||
json_response(['comments' => $comments, 'count' => count($comments)]);
|
json_response(['comments' => $comments, 'count' => count($comments)]);
|
||||||
@@ -664,56 +596,37 @@ function handle_read_comments($input) {
|
|||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
// ---------------------------------------------------------------------
|
||||||
// CREATE COMMENT: Adds Comments Contributions or Tasks
|
// CREATE COMMENT: Adds Comments to Contributions
|
||||||
// Required: author_name, content, contribution_id or task_id
|
// Required: contribution_id, author_name, content
|
||||||
// Optional: browser_id
|
// Optional: browser_id
|
||||||
// ---------------------------------------------------------------------
|
// ---------------------------------------------------------------------
|
||||||
function handle_create_comment($input) {
|
function handle_create_comment($input) {
|
||||||
$pdo = get_db();
|
$pdo = get_db();
|
||||||
|
|
||||||
$missing = validate_required($input, ['author_name', 'content']);
|
$missing = validate_required($input, ['contribution_id', 'author_name', 'content']);
|
||||||
if (!empty($missing)) {
|
if (!empty($missing)) {
|
||||||
error_response('Missing Fields: ' . implode(', ', $missing));
|
error_response('Missing Fields: ' . implode(', ', $missing));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Checks for contribution_id or task_id
|
// Validates Content Length
|
||||||
if (empty($input['contribution_id']) && empty($input['task_id'])) {
|
|
||||||
error_response('Either contribution_id or task_id is required.');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Validates Length
|
|
||||||
if (strlen($input['content']) > 1000) {
|
if (strlen($input['content']) > 1000) {
|
||||||
error_response('Comment too long. Maximum 1000 Characters.');
|
error_response('Comment too long. Maximum 1000 Characters.');
|
||||||
}
|
}
|
||||||
|
|
||||||
// Determines Comment Type
|
// Checks if Contribution exists
|
||||||
$is_task = isset($input['task_id']) && $input['task_id'] !== '';
|
|
||||||
|
|
||||||
if ($is_task) {
|
|
||||||
// Checks for Tasks
|
|
||||||
$stmt = $pdo->prepare("SELECT task_id FROM tasks WHERE task_id = :id");
|
|
||||||
$stmt->execute([':id' => $input['task_id']]);
|
|
||||||
if (!$stmt->fetch()) {
|
|
||||||
error_response('Task not found.', 404);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// Checks for Contributions
|
|
||||||
$stmt = $pdo->prepare("SELECT contribution_id FROM contributions WHERE contribution_id = :id");
|
$stmt = $pdo->prepare("SELECT contribution_id FROM contributions WHERE contribution_id = :id");
|
||||||
$stmt->execute([':id' => $input['contribution_id']]);
|
$stmt->execute([':id' => $input['contribution_id']]);
|
||||||
if (!$stmt->fetch()) {
|
if (!$stmt->fetch()) {
|
||||||
error_response('Contribution not found.', 404);
|
error_response('Contribution not found.', 404);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Prepared Statement
|
|
||||||
try {
|
try {
|
||||||
$stmt = $pdo->prepare("
|
$stmt = $pdo->prepare("
|
||||||
INSERT INTO comments (contribution_id, task_id, author_name, browser_id, content)
|
INSERT INTO comments (contribution_id, author_name, browser_id, content)
|
||||||
VALUES (:cid, :tid, :author, :bid, :content)
|
VALUES (:cid, :author, :bid, :content)
|
||||||
");
|
");
|
||||||
$stmt->execute([
|
$stmt->execute([
|
||||||
':cid' => $is_task ? null : $input['contribution_id'],
|
':cid' => $input['contribution_id'],
|
||||||
':tid' => $is_task ? $input['task_id'] : null,
|
|
||||||
':author' => $input['author_name'],
|
':author' => $input['author_name'],
|
||||||
':bid' => $input['browser_id'] ?? null,
|
':bid' => $input['browser_id'] ?? null,
|
||||||
':content' => $input['content']
|
':content' => $input['content']
|
||||||
@@ -797,386 +710,3 @@ function handle_update_comment($input) {
|
|||||||
error_response('Database Error: ' . $e->getMessage(), 500);
|
error_response('Database Error: ' . $e->getMessage(), 500);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// =====================================================================
|
|
||||||
// Action Handlers for Tasks
|
|
||||||
// =====================================================================
|
|
||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
// READ TASKS: Loads Tasks as GeoJSON FeatureCollection
|
|
||||||
// Required: municipality_id
|
|
||||||
// Optional: status, browser_id
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
function handle_read_tasks($input) {
|
|
||||||
$pdo = get_db();
|
|
||||||
|
|
||||||
$missing = validate_required($input, ['municipality_id']);
|
|
||||||
if (!empty($missing)) {
|
|
||||||
error_response('Missing Fields: ' . implode(', ', $missing));
|
|
||||||
}
|
|
||||||
|
|
||||||
$sql = "SELECT *, ST_AsGeoJSON(geom) AS geojson
|
|
||||||
FROM tasks
|
|
||||||
WHERE municipality_id = :mid";
|
|
||||||
$params = [':mid' => $input['municipality_id']];
|
|
||||||
|
|
||||||
// Status Filter
|
|
||||||
$status = $input['status'] ?? 'visible';
|
|
||||||
if ($status === 'visible') {
|
|
||||||
$sql .= " AND status IN ('open', 'completed', 'verified')";
|
|
||||||
} elseif ($status !== 'all') {
|
|
||||||
$sql .= " AND status = :status";
|
|
||||||
$params[':status'] = $status;
|
|
||||||
}
|
|
||||||
|
|
||||||
$sql .= " ORDER BY created_at DESC";
|
|
||||||
|
|
||||||
try {
|
|
||||||
$stmt = $pdo->prepare($sql);
|
|
||||||
$stmt->execute($params);
|
|
||||||
$rows = $stmt->fetchAll();
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
error_response('Database Error: ' . $e->getMessage(), 500);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Builds GeoJSON FeatureCollection
|
|
||||||
$features = [];
|
|
||||||
foreach ($rows as $row) {
|
|
||||||
$geometry = json_decode($row['geojson']);
|
|
||||||
unset($row['geom'], $row['geojson']);
|
|
||||||
$features[] = [
|
|
||||||
'type' => 'Feature',
|
|
||||||
'geometry' => $geometry,
|
|
||||||
'properties' => $row
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
$result = [
|
|
||||||
'type' => 'FeatureCollection',
|
|
||||||
'features' => $features
|
|
||||||
];
|
|
||||||
|
|
||||||
// User Votes for Tasks
|
|
||||||
$browser_id = $input['browser_id'] ?? '';
|
|
||||||
if ($browser_id !== '') {
|
|
||||||
$stmt = $pdo->prepare("
|
|
||||||
SELECT task_id, vote_type FROM votes
|
|
||||||
WHERE browser_id = :bid AND task_id IS NOT NULL
|
|
||||||
");
|
|
||||||
$stmt->execute([':bid' => $browser_id]);
|
|
||||||
$user_votes = [];
|
|
||||||
foreach ($stmt->fetchAll() as $v) {
|
|
||||||
$user_votes[$v['task_id']] = $v['vote_type'];
|
|
||||||
}
|
|
||||||
$result['user_votes'] = $user_votes;
|
|
||||||
}
|
|
||||||
|
|
||||||
json_response($result);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
// CREATE TASK: Inserts new Task with optional Photo
|
|
||||||
// Required: municipality_id, geom, geom_type, category, title, author_name
|
|
||||||
// Optional: description, browser_id, photo
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
function handle_create_task($input) {
|
|
||||||
$pdo = get_db();
|
|
||||||
|
|
||||||
$missing = validate_required($input, [
|
|
||||||
'municipality_id', 'geom', 'geom_type', 'category', 'title', 'author_name'
|
|
||||||
]);
|
|
||||||
if (!empty($missing)) {
|
|
||||||
error_response('Missing Fields: ' . implode(', ', $missing));
|
|
||||||
}
|
|
||||||
|
|
||||||
$valid_geom_types = ['point', 'line', 'polygon'];
|
|
||||||
if (!in_array($input['geom_type'], $valid_geom_types)) {
|
|
||||||
error_response('Invalid Geometry Type.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$geojson = json_decode($input['geom']);
|
|
||||||
if (!$geojson || !isset($geojson->type)) {
|
|
||||||
error_response('Invalid GeoJSON.');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handles optional Photo Upload
|
|
||||||
$photo_path = null;
|
|
||||||
if (isset($_FILES['photo']) && $_FILES['photo']['error'] === UPLOAD_ERR_OK) {
|
|
||||||
$photo_path = handle_photo_upload($_FILES['photo']);
|
|
||||||
if (!$photo_path) {
|
|
||||||
error_response('Photo Upload failed. JPG, PNG, GIF and WebP up to 5 MB.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$stmt = $pdo->prepare("
|
|
||||||
INSERT INTO tasks
|
|
||||||
(municipality_id, geom, geom_type, category, title, description, author_name, browser_id, photo_path)
|
|
||||||
VALUES
|
|
||||||
(:mid, ST_SetSRID(ST_GeomFromGeoJSON(:geom), 4326), :geom_type,
|
|
||||||
:category, :title, :description, :author_name, :browser_id, :photo_path)
|
|
||||||
");
|
|
||||||
$stmt->execute([
|
|
||||||
':mid' => $input['municipality_id'],
|
|
||||||
':geom' => $input['geom'],
|
|
||||||
':geom_type' => $input['geom_type'],
|
|
||||||
':category' => $input['category'],
|
|
||||||
':title' => $input['title'],
|
|
||||||
':description' => $input['description'] ?? '',
|
|
||||||
':author_name' => $input['author_name'],
|
|
||||||
':browser_id' => $input['browser_id'] ?? null,
|
|
||||||
':photo_path' => $photo_path
|
|
||||||
]);
|
|
||||||
|
|
||||||
json_response([
|
|
||||||
'message' => 'Task created successfully.',
|
|
||||||
'task_id' => (int) $pdo->lastInsertId()
|
|
||||||
], 201);
|
|
||||||
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
error_response('Database Error: ' . $e->getMessage(), 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
// UPDATE TASK: Updates existing Tasks or Status
|
|
||||||
// Required: task_id
|
|
||||||
// Optional: category, title, description, status, address
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
function handle_update_task($input) {
|
|
||||||
$pdo = get_db();
|
|
||||||
|
|
||||||
$missing = validate_required($input, ['task_id']);
|
|
||||||
if (!empty($missing)) {
|
|
||||||
error_response('Missing Fields: ' . implode(', ', $missing));
|
|
||||||
}
|
|
||||||
|
|
||||||
$updatable = ['category', 'title', 'description', 'status', 'address'];
|
|
||||||
$set = [];
|
|
||||||
$params = [':id' => $input['task_id']];
|
|
||||||
|
|
||||||
foreach ($updatable as $field) {
|
|
||||||
if (isset($input[$field]) && $input[$field] !== '') {
|
|
||||||
$set[] = "$field = :$field";
|
|
||||||
$params[":$field"] = $input[$field];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (empty($set)) {
|
|
||||||
error_response('No Fields to update.');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($params[':status'])) {
|
|
||||||
$valid = ['pending', 'rejected', 'open', 'completed', 'verified'];
|
|
||||||
if (!in_array($params[':status'], $valid)) {
|
|
||||||
error_response('Invalid Status.');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$stmt = $pdo->prepare("UPDATE tasks SET " . implode(', ', $set) . " WHERE task_id = :id");
|
|
||||||
$stmt->execute($params);
|
|
||||||
json_response(['message' => 'Task updated successfully.']);
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
error_response('Database Error: ' . $e->getMessage(), 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
// DELETE TASK: Removes existing Tasks
|
|
||||||
// Required: task_id
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
function handle_delete_task($input) {
|
|
||||||
$pdo = get_db();
|
|
||||||
|
|
||||||
$missing = validate_required($input, ['task_id']);
|
|
||||||
if (!empty($missing)) {
|
|
||||||
error_response('Missing Fields: ' . implode(', ', $missing));
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$stmt = $pdo->prepare("DELETE FROM tasks WHERE task_id = :id");
|
|
||||||
$stmt->execute([':id' => $input['task_id']]);
|
|
||||||
json_response(['message' => 'Task deleted successfully.']);
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
error_response('Database Error: ' . $e->getMessage(), 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
// COMPLETE TASK: Completes existing Tasks with Photo Proof
|
|
||||||
// Required: task_id, author_name, browser_id
|
|
||||||
// Required File: completion_photo
|
|
||||||
// Optional: completion_comment
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
function handle_complete_task($input) {
|
|
||||||
$pdo = get_db();
|
|
||||||
|
|
||||||
$missing = validate_required($input, ['task_id', 'author_name', 'browser_id']);
|
|
||||||
if (!empty($missing)) {
|
|
||||||
error_response('Missing Fields: ' . implode(', ', $missing));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Checks if Task exists and is open
|
|
||||||
$stmt = $pdo->prepare("SELECT task_id, status FROM tasks WHERE task_id = :id");
|
|
||||||
$stmt->execute([':id' => $input['task_id']]);
|
|
||||||
$task = $stmt->fetch();
|
|
||||||
|
|
||||||
if (!$task) {
|
|
||||||
error_response('Task not found.', 404);
|
|
||||||
}
|
|
||||||
if ($task['status'] !== 'open') {
|
|
||||||
error_response('Task is not available for Completion.');
|
|
||||||
}
|
|
||||||
|
|
||||||
// Handles required Completion Photo
|
|
||||||
if (!isset($_FILES['completion_photo']) || $_FILES['completion_photo']['error'] !== UPLOAD_ERR_OK) {
|
|
||||||
error_response('Completion Photo is required.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$photo_path = handle_photo_upload($_FILES['completion_photo']);
|
|
||||||
if (!$photo_path) {
|
|
||||||
error_response('Photo Upload failed. JPG, PNG, GIF and WebP up to 5 MB.');
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$stmt = $pdo->prepare("
|
|
||||||
UPDATE tasks SET
|
|
||||||
status = 'completed',
|
|
||||||
completed_by_name = :name,
|
|
||||||
completed_by_browser = :browser,
|
|
||||||
completion_photo = :photo,
|
|
||||||
completion_comment = :comment,
|
|
||||||
completed_at = NOW()
|
|
||||||
WHERE task_id = :id
|
|
||||||
");
|
|
||||||
$stmt->execute([
|
|
||||||
':id' => $input['task_id'],
|
|
||||||
':name' => $input['author_name'],
|
|
||||||
':browser' => $input['browser_id'],
|
|
||||||
':photo' => $photo_path,
|
|
||||||
':comment' => $input['completion_comment'] ?? ''
|
|
||||||
]);
|
|
||||||
|
|
||||||
json_response(['message' => 'Task Completion submitted for Review.']);
|
|
||||||
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
error_response('Database Error: ' . $e->getMessage(), 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
// VERIFY TASK: Moderator confirms or rejects Completions
|
|
||||||
// Required: task_id, action
|
|
||||||
// Awards Points and sets Status if verified
|
|
||||||
// Clears Completion Fields, resets Status if rejected
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
function handle_verify_task($input) {
|
|
||||||
$pdo = get_db();
|
|
||||||
|
|
||||||
$missing = validate_required($input, ['task_id', 'verify_action']);
|
|
||||||
if (!empty($missing)) {
|
|
||||||
error_response('Missing Fields: ' . implode(', ', $missing));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Loads Task
|
|
||||||
$stmt = $pdo->prepare("SELECT * FROM tasks WHERE task_id = :id");
|
|
||||||
$stmt->execute([':id' => $input['task_id']]);
|
|
||||||
$task = $stmt->fetch();
|
|
||||||
|
|
||||||
if (!$task) {
|
|
||||||
error_response('Task not found.', 404);
|
|
||||||
}
|
|
||||||
if ($task['status'] !== 'completed') {
|
|
||||||
error_response('Task is not in completed State.');
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
if ($input['verify_action'] === 'verify') {
|
|
||||||
// Accepts Completion and Awards Points
|
|
||||||
$stmt = $pdo->prepare("UPDATE tasks SET status = 'verified' WHERE task_id = :id");
|
|
||||||
$stmt->execute([':id' => $input['task_id']]);
|
|
||||||
|
|
||||||
// Awards Points to User
|
|
||||||
$stmt = $pdo->prepare("
|
|
||||||
INSERT INTO user_points (municipality_id, user_name, points, task_id)
|
|
||||||
VALUES (:mid, :name, :points, :tid)
|
|
||||||
");
|
|
||||||
$stmt->execute([
|
|
||||||
':mid' => $task['municipality_id'],
|
|
||||||
':name' => $task['completed_by_name'],
|
|
||||||
':points' => $task['points_reward'],
|
|
||||||
':tid' => $input['task_id']
|
|
||||||
]);
|
|
||||||
|
|
||||||
json_response(['message' => 'Task verified. Points awarded.']);
|
|
||||||
|
|
||||||
} elseif ($input['verify_action'] === 'reject') {
|
|
||||||
// Rejects Completion and Clears Fields
|
|
||||||
$stmt = $pdo->prepare("
|
|
||||||
UPDATE tasks SET
|
|
||||||
status = 'open',
|
|
||||||
completed_by_name = NULL,
|
|
||||||
completed_by_browser = NULL,
|
|
||||||
completion_photo = NULL,
|
|
||||||
completion_comment = NULL,
|
|
||||||
completed_at = NULL
|
|
||||||
WHERE task_id = :id
|
|
||||||
");
|
|
||||||
$stmt->execute([':id' => $input['task_id']]);
|
|
||||||
|
|
||||||
json_response(['message' => 'Completion rejected. Task is open again.']);
|
|
||||||
|
|
||||||
} else {
|
|
||||||
error_response('Invalid Action. Must be: verify or reject.');
|
|
||||||
}
|
|
||||||
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
error_response('Database Error: ' . $e->getMessage(), 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
// READ LEADERBOARD: Returns Citizen Leaderboard
|
|
||||||
// Required: municipality_id
|
|
||||||
// Optional: limit
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
function handle_read_leaderboard($input) {
|
|
||||||
$pdo = get_db();
|
|
||||||
|
|
||||||
$missing = validate_required($input, ['municipality_id']);
|
|
||||||
if (!empty($missing)) {
|
|
||||||
error_response('Missing Fields: ' . implode(', ', $missing));
|
|
||||||
}
|
|
||||||
|
|
||||||
$limit = min((int)($input['limit'] ?? 10), 50);
|
|
||||||
|
|
||||||
try {
|
|
||||||
$stmt = $pdo->prepare("
|
|
||||||
SELECT user_name,
|
|
||||||
SUM(points) AS total_points,
|
|
||||||
COUNT(*) AS tasks_completed
|
|
||||||
FROM user_points
|
|
||||||
WHERE municipality_id = :mid
|
|
||||||
GROUP BY user_name
|
|
||||||
ORDER BY total_points DESC
|
|
||||||
LIMIT :lim
|
|
||||||
");
|
|
||||||
$stmt->bindValue(':mid', $input['municipality_id'], PDO::PARAM_INT);
|
|
||||||
$stmt->bindValue(':lim', $limit, PDO::PARAM_INT);
|
|
||||||
$stmt->execute();
|
|
||||||
|
|
||||||
json_response(['leaderboard' => $stmt->fetchAll()]);
|
|
||||||
|
|
||||||
} catch (PDOException $e) {
|
|
||||||
error_response('Database Error: ' . $e->getMessage(), 500);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -111,21 +111,3 @@ function get_categories() {
|
|||||||
'other' => ['label' => 'Sonstiges', 'faIcon' => 'fa-thumbtack', 'color' => '#7F7F7F'],
|
'other' => ['label' => 'Sonstiges', 'faIcon' => 'fa-thumbtack', 'color' => '#7F7F7F'],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
// Task Category Definitions
|
|
||||||
// Returns associative Array of Task Category Keys to Labels, Icons,
|
|
||||||
// and Colors. Shared between Citizen Participation Portal and
|
|
||||||
// Moderation Page.
|
|
||||||
// ToDo: Move to Database Table.
|
|
||||||
// ---------------------------------------------------------------------
|
|
||||||
function get_task_categories() {
|
|
||||||
return [
|
|
||||||
'repair' => ['label' => 'Reparatur', 'faIcon' => 'fa-wrench', 'color' => '#C00000'],
|
|
||||||
'social' => ['label' => 'Nachbarschaft', 'faIcon' => 'fa-people-group', 'color' => '#E65100'],
|
|
||||||
'safety' => ['label' => 'Sicherheit', 'faIcon' => 'fa-shield-halved', 'color' => '#FFC000'],
|
|
||||||
'greenery' => ['label' => 'Grünpflege', 'faIcon' => 'fa-leaf', 'color' => '#92D050'],
|
|
||||||
'cleanup' => ['label' => 'Sauberkeit', 'faIcon' => 'fa-broom', 'color' => '#0070C0'],
|
|
||||||
'other_task' => ['label' => 'Sonstiges', 'faIcon' => 'fa-clipboard-check','color' => '#7F7F7F'],
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@@ -130,71 +130,30 @@ $news_items = $stmt->fetchAll();
|
|||||||
<!-- Sidebar Tab Icons -->
|
<!-- Sidebar Tab Icons -->
|
||||||
<div class="leaflet-sidebar-tabs">
|
<div class="leaflet-sidebar-tabs">
|
||||||
<ul role="tablist">
|
<ul role="tablist">
|
||||||
<li><a href="#tab-contributions" role="tab" title="Hinweise"><i class="fa-solid fa-clipboard-list"></i></a></li>
|
<li><a href="#tab-home" role="tab"><i class="fa-solid fa-house"></i></a></li>
|
||||||
<li><a href="#tab-tasks" role="tab" title="Aufgaben"><i class="fa-solid fa-clipboard-check"></i></a></li>
|
<li><a href="#tab-list" role="tab"><i class="fa-solid fa-list"></i></a></li>
|
||||||
<li><a href="#tab-list" role="tab" title="Beiträge"><i class="fa-solid fa-list"></i></a></li>
|
<li><a href="#tab-news" role="tab"><i class="fa-solid fa-newspaper"></i></a></li>
|
||||||
<li><a href="#tab-news" role="tab" title="Neuigkeiten"><i class="fa-solid fa-newspaper"></i></a></li>
|
<li><a href="#tab-help" role="tab"><i class="fa-solid fa-circle-question"></i></a></li>
|
||||||
<li><a href="#tab-help" role="tab" title="Hilfe"><i class="fa-solid fa-circle-question"></i></a></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Sidebar Tab Content -->
|
<!-- Sidebar Tab Content -->
|
||||||
<div class="leaflet-sidebar-content">
|
<div class="leaflet-sidebar-content">
|
||||||
|
|
||||||
<!-- Contributions Tab -->
|
<!-- Home Tab -->
|
||||||
<div class="leaflet-sidebar-pane" id="tab-contributions">
|
<div class="leaflet-sidebar-pane" id="tab-home">
|
||||||
<h2 class="leaflet-sidebar-header">
|
<h2 class="leaflet-sidebar-header">
|
||||||
Hinweise
|
Start
|
||||||
<span class="leaflet-sidebar-close"><i class="fa-solid fa-xmark"></i></span>
|
<span class="leaflet-sidebar-close"><i class="fa-solid fa-xmark"></i></span>
|
||||||
</h2>
|
</h2>
|
||||||
<div class="sidebar-body">
|
<div class="sidebar-body">
|
||||||
<p>Verwenden Sie die Karte, um <strong>Hinweise</strong> für die Stadtverwaltung hinzuzufügen oder bestehende Hinweise zu betrachten, bewerten und kommentieren</p>
|
<p>Willkommen beim Bürgerbeteiligungsportal <strong><?= htmlspecialchars($municipality['name']) ?></strong>.</p>
|
||||||
|
<p>Verwenden Sie die Karte, um Hinweise für die Stadtverwaltung hinzuzufügen oder bestehende Beiträge zu betrachten, zu bewerten und zu kommentieren.</p>
|
||||||
|
|
||||||
<h3>Kategorien</h3>
|
<h3>Kategorien</h3>
|
||||||
<div id="category-filter">
|
<div id="category-filter">
|
||||||
<!-- populated by app.js -->
|
<!-- Category Filter Checkboxes — populated by app.js -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p id="stats-container"></p>
|
|
||||||
<!-- populated by app.js -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Tasks Tab -->
|
|
||||||
<div class="leaflet-sidebar-pane" id="tab-tasks">
|
|
||||||
<h2 class="leaflet-sidebar-header">
|
|
||||||
Aufgaben
|
|
||||||
<span class="leaflet-sidebar-close"><i class="fa-solid fa-xmark"></i></span>
|
|
||||||
</h2>
|
|
||||||
<div class="sidebar-body">
|
|
||||||
<p>Verwenden Sie die Karte, um <strong>Aufgaben</strong> für die Gemeinschaft hinzuzufügen oder bestehende Aufgaben zu betrachten, bewerten und kommentieren.</p>
|
|
||||||
|
|
||||||
<h3>Kategorien</h3>
|
|
||||||
<div id="task-category-filter">
|
|
||||||
<!-- populated by app.js -->
|
|
||||||
</div>
|
|
||||||
<p id="task-stats-container">
|
|
||||||
<!-- populated by app.js -->
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div class="task-filter-row">
|
|
||||||
<select id="task-status-filter" class="form-input" onchange="updateTasksList()" style="margin-bottom:8px;">
|
|
||||||
<option value="open">Offene Aufgaben</option>
|
|
||||||
<option value="all">Alle Aufgaben</option>
|
|
||||||
<option value="completed">Wartend auf Prüfung</option>
|
|
||||||
<option value="verified">Erledigte Aufgaben</option>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Leaderboard -->
|
|
||||||
<div id="leaderboard-container" class="leaderboard-box">
|
|
||||||
<h3>Rangliste</h3>
|
|
||||||
<div id="leaderboard-list"></div>
|
|
||||||
<button class="btn btn-secondary leaderboard-more-btn" onclick="showFullLeaderboard()">
|
|
||||||
Vollständige Rangliste
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -209,7 +168,7 @@ $news_items = $stmt->fetchAll();
|
|||||||
<input type="text" id="list-search-input" placeholder="Beiträge durchsuchen..." class="form-input">
|
<input type="text" id="list-search-input" placeholder="Beiträge durchsuchen..." class="form-input">
|
||||||
</div>
|
</div>
|
||||||
<div id="contributions-list">
|
<div id="contributions-list">
|
||||||
<!-- populated by app.js -->
|
<!-- Contribution Cards — populated by app.js -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -221,12 +180,15 @@ $news_items = $stmt->fetchAll();
|
|||||||
<span class="leaflet-sidebar-close"><i class="fa-solid fa-xmark"></i></span>
|
<span class="leaflet-sidebar-close"><i class="fa-solid fa-xmark"></i></span>
|
||||||
</h2>
|
</h2>
|
||||||
<div class="sidebar-body">
|
<div class="sidebar-body">
|
||||||
|
<!-- News Search -->
|
||||||
<div class="list-search">
|
<div class="list-search">
|
||||||
<input type="text" id="news-search-input" placeholder="Neuigkeiten durchsuchen..." class="form-input" oninput="filterNews()">
|
<input type="text" id="news-search-input" placeholder="Neuigkeiten durchsuchen..." class="form-input" oninput="filterNews()">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- News Items Container -->
|
||||||
<div id="news-list">
|
<div id="news-list">
|
||||||
<?php if (empty($news_items)): ?>
|
<?php if (empty($news_items)): ?>
|
||||||
<p style="text-align:center;color:#999;padding:20px;">Noch keine Neuigkeiten veröffentlicht.</p>
|
<p class="empty-state">Noch keine Neuigkeiten veröffentlicht.</p>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?php foreach ($news_items as $news): ?>
|
<?php foreach ($news_items as $news): ?>
|
||||||
<div class="news-item"
|
<div class="news-item"
|
||||||
@@ -273,16 +235,12 @@ $news_items = $stmt->fetchAll();
|
|||||||
<h3><i class="fa-solid fa-comments"></i> Kommentieren</h3>
|
<h3><i class="fa-solid fa-comments"></i> Kommentieren</h3>
|
||||||
<p>Gerne können Sie Ihre Meinung zu bestehenden Beiträgen auch durch die Kommentarfunktion äußern.</p>
|
<p>Gerne können Sie Ihre Meinung zu bestehenden Beiträgen auch durch die Kommentarfunktion äußern.</p>
|
||||||
|
|
||||||
<h3><i class="fa-solid fa-clipboard-check"></i> Aufgaben erledigen</h3>
|
|
||||||
<p>Klicken Sie auf eine offene Aufgabe und melden Sie die Erledigung mit einem Foto-Nachweis.</p>
|
|
||||||
|
|
||||||
<h3><i class="fa-solid fa-magnifying-glass"></i> Suchen</h3>
|
<h3><i class="fa-solid fa-magnifying-glass"></i> Suchen</h3>
|
||||||
<p>Verwenden Sie die Adresssuche rechts, um schnell den richtigen Ort auf der Mitmachkarte zu finden.</p>
|
<p>Verwenden Sie die Adresssuche rechts, um schnell den richtigen Ort auf der Mitmachkarte zu finden.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Leaflet Map -->
|
<!-- Leaflet Map -->
|
||||||
@@ -439,7 +397,6 @@ $news_items = $stmt->fetchAll();
|
|||||||
|
|
||||||
// Category Definitions from Database
|
// Category Definitions from Database
|
||||||
const CATEGORIES = <?= json_encode(get_categories(), JSON_UNESCAPED_UNICODE) ?>;
|
const CATEGORIES = <?= json_encode(get_categories(), JSON_UNESCAPED_UNICODE) ?>;
|
||||||
const TASK_CATEGORIES = <?= json_encode(get_task_categories(), JSON_UNESCAPED_UNICODE) ?>;
|
|
||||||
|
|
||||||
// Admin Status from PHP Session
|
// Admin Status from PHP Session
|
||||||
const IS_ADMIN = <?= (function_exists('is_admin') && is_admin()) ? 'true' : 'false' ?>;
|
const IS_ADMIN = <?= (function_exists('is_admin') && is_admin()) ? 'true' : 'false' ?>;
|
||||||
|
|||||||
@@ -346,7 +346,7 @@ function loadContributions() {
|
|||||||
layerControl.addOverlay(contributionsLayer, '<i class="fa-solid fa-map-pin" style="color:#C00000;"></i> Beiträge');
|
layerControl.addOverlay(contributionsLayer, '<i class="fa-solid fa-map-pin" style="color:#C00000;"></i> Beiträge');
|
||||||
// Update Sidebar List and Statistics
|
// Update Sidebar List and Statistics
|
||||||
updateContributionsList();
|
updateContributionsList();
|
||||||
updateStatistics();
|
buildCategoryFilter();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -766,7 +766,7 @@ function updateContributionsList() {
|
|||||||
|
|
||||||
// Builds HTML
|
// Builds HTML
|
||||||
if (filtered.length === 0) {
|
if (filtered.length === 0) {
|
||||||
container.innerHTML = '<p style="text-align:center;color:#999;padding:20px;">Keine Beiträge gefunden.</p>';
|
container.innerHTML = '<p class="empty-state">Keine Beiträge gefunden.</p>';
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -830,22 +830,33 @@ document.getElementById('list-search-input').addEventListener('input', function
|
|||||||
// Block 12: Sidebar Category Filter and Statistics
|
// Block 12: Sidebar Category Filter and Statistics
|
||||||
// =====================================================================
|
// =====================================================================
|
||||||
|
|
||||||
// Builds Category Filter Checkboxes
|
// Builds Category Filter Checkboxes with Counts
|
||||||
function buildCategoryFilter() {
|
function buildCategoryFilter() {
|
||||||
const container = document.getElementById('category-filter');
|
const container = document.getElementById('category-filter');
|
||||||
|
|
||||||
|
const counts = {};
|
||||||
|
contributionsData.forEach(function (f) {
|
||||||
|
const cat = f.properties.category;
|
||||||
|
counts[cat] = (counts[cat] || 0) + 1;
|
||||||
|
});
|
||||||
|
|
||||||
|
const total = contributionsData.length;
|
||||||
let html = '';
|
let html = '';
|
||||||
|
|
||||||
for (const key in CATEGORIES) {
|
for (const key in CATEGORIES) {
|
||||||
const cat = CATEGORIES[key];
|
const cat = CATEGORIES[key];
|
||||||
const checked = activeFilters.indexOf(key) !== -1 ? 'checked' : '';
|
const checked = activeFilters.indexOf(key) !== -1 ? 'checked' : '';
|
||||||
|
const count = counts[key] || 0;
|
||||||
|
|
||||||
html += '' +
|
html += '<label style="display:flex;align-items:center;gap:8px;margin-bottom:6px;cursor:pointer;font-size:0.85rem;color:var(--color-text-secondary)">' +
|
||||||
'<label style="display:flex;align-items:center;gap:8px;margin-bottom:6px;cursor:pointer;">' +
|
|
||||||
'<input type="checkbox" value="' + key + '" ' + checked + ' onchange="toggleCategoryFilter(this)">' +
|
'<input type="checkbox" value="' + key + '" ' + checked + ' onchange="toggleCategoryFilter(this)">' +
|
||||||
'<span>' + categoryIcon(cat) + ' ' + cat.label + '</span>' +
|
categoryIcon(cat) +
|
||||||
|
'<span>' + cat.label + ' (' + count + ')</span>' +
|
||||||
'</label>';
|
'</label>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html += '<p style="margin-top:10px;font-size:0.85rem;color:var(--color-text-secondary)"><strong>' + total + '</strong> Beiträge insgesamt</p>';
|
||||||
|
|
||||||
container.innerHTML = html;
|
container.innerHTML = html;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -892,34 +903,6 @@ function toggleCategoryFilter(checkbox) {
|
|||||||
updateContributionsList();
|
updateContributionsList();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Updates Statistics in Home Tab
|
|
||||||
function updateStatistics() {
|
|
||||||
const container = document.getElementById('stats-container');
|
|
||||||
const total = contributionsData.length;
|
|
||||||
|
|
||||||
// Counts per Category
|
|
||||||
// const counts = {};
|
|
||||||
// contributionsData.forEach(function (f) {
|
|
||||||
// const cat = f.properties.category;
|
|
||||||
// counts[cat] = (counts[cat] || 0) + 1;
|
|
||||||
// });
|
|
||||||
|
|
||||||
let html = '<p style="font-size:0.8rem;"><strong>' + total + '</strong> Hinweise insgesamt</p>';
|
|
||||||
|
|
||||||
// for (const key in CATEGORIES) {
|
|
||||||
// const cat = CATEGORIES[key];
|
|
||||||
// const count = counts[key] || 0;
|
|
||||||
// if (count > 0) {
|
|
||||||
// html += '<div style="display:flex;align-items:center;gap:8px;margin:4px 0;font-size:0.8rem;">' +
|
|
||||||
// categoryIcon(cat) + ' ' +
|
|
||||||
// cat.label + ': ' + count +
|
|
||||||
// '</div>';
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
container.innerHTML = html;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// =====================================================================
|
// =====================================================================
|
||||||
// Block 13: Modals — Welcome, Login, Info, Privacy, Imprint
|
// Block 13: Modals — Welcome, Login, Info, Privacy, Imprint
|
||||||
@@ -1034,7 +1017,7 @@ function escapeHtml(text) {
|
|||||||
|
|
||||||
// Returns a colored Font Awesome Icon HTML String for a Category
|
// Returns a colored Font Awesome Icon HTML String for a Category
|
||||||
function categoryIcon(cat) {
|
function categoryIcon(cat) {
|
||||||
return '<i class="fa-solid ' + cat.faIcon + '" style="color:' + cat.color + ';"></i>';
|
return '<i class="fa-solid ' + cat.faIcon + ' fa-fw" style="color:' + cat.color + ';"></i>';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Reverse Geocodes Coordinates and saves Address to Contribution via API
|
// Reverse Geocodes Coordinates and saves Address to Contribution via API
|
||||||
|
|||||||
@@ -464,6 +464,7 @@ select.form-input { cursor: pointer; }
|
|||||||
margin-bottom: var(--space-sm);
|
margin-bottom: var(--space-sm);
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
color: var(--color-text-secondary);
|
color: var(--color-text-secondary);
|
||||||
|
font-size: 0.85rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -881,72 +882,6 @@ select.form-input { cursor: pointer; }
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* -----------------------------------------------------------------
|
|
||||||
4.10 Create Type Toggle (Contribution or Task)
|
|
||||||
----------------------------------------------------------------- */
|
|
||||||
.create-type-toggle {
|
|
||||||
display: flex;
|
|
||||||
gap: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.create-type-btn {
|
|
||||||
flex: 1;
|
|
||||||
padding: 10px;
|
|
||||||
border: 2px solid var(--color-border);
|
|
||||||
border-radius: 8px;
|
|
||||||
background: var(--color-surface);
|
|
||||||
cursor: pointer;
|
|
||||||
font-family: var(--font-body);
|
|
||||||
font-size: 0.85rem;
|
|
||||||
font-weight: 600;
|
|
||||||
color: var(--color-text-secondary);
|
|
||||||
transition: all var(--transition-fast);
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.create-type-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
|
|
||||||
.create-type-btn.active { border-color: var(--color-primary); background: var(--color-primary-light); color: var(--color-primary); }
|
|
||||||
|
|
||||||
|
|
||||||
/* -----------------------------------------------------------------
|
|
||||||
4.11 Leaderboard (Sidebar Tasks Tab)
|
|
||||||
----------------------------------------------------------------- */
|
|
||||||
.leaderboard-box {
|
|
||||||
background: var(--color-surface);
|
|
||||||
border: 1px solid var(--color-border);
|
|
||||||
border-radius: 8px;
|
|
||||||
padding: var(--space-md);
|
|
||||||
margin-bottom: var(--space-md);
|
|
||||||
}
|
|
||||||
|
|
||||||
.leaderboard-box h3 { margin-top: 0 !important; }
|
|
||||||
|
|
||||||
.leaderboard-entry {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: var(--space-sm);
|
|
||||||
padding: 6px 0;
|
|
||||||
font-size: 0.85rem;
|
|
||||||
border-bottom: 1px solid #f0f0f0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.leaderboard-entry:last-child { border-bottom: none; }
|
|
||||||
.leaderboard-rank { font-size: 1rem; width: 28px; text-align: center; }
|
|
||||||
.leaderboard-name { flex: 1; font-weight: 600; }
|
|
||||||
.leaderboard-points { color: var(--color-primary); font-weight: 600; }
|
|
||||||
|
|
||||||
.leaderboard-more-btn {
|
|
||||||
width: 100%;
|
|
||||||
margin-top: var(--space-sm);
|
|
||||||
font-size: 0.8rem !important;
|
|
||||||
min-height: 32px !important;
|
|
||||||
padding: 4px 12px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* =================================================================
|
/* =================================================================
|
||||||
SECTION 5: Admin-specific Styles (admin.php)
|
SECTION 5: Admin-specific Styles (admin.php)
|
||||||
================================================================= */
|
================================================================= */
|
||||||
|
|||||||
Reference in New Issue
Block a user