-
Notifications
You must be signed in to change notification settings - Fork 6
/
manage.php
137 lines (86 loc) · 3.23 KB
/
manage.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
<?php
include './inc/init.php';
fAuthorization::requireLoggedIn();
$action = fRequest::getValid(
'action',
array('list', 'add', 'edit', 'delete')
);
$date = fRequest::get('date');
$old_date = fRequest::get('old_date');
$manage_url = URL_ROOT . Meetup::makeURL('list');
// --------------------------------- //
if ('delete' == $action) {
try {
$meetup = new Meetup($date);
if (fRequest::isPost()) {
fRequest::validateCSRFToken(fRequest::get('token'));
$meetup->delete();
fMessaging::create('success', $manage_url, 'The meetup on ' . $meetup->getDate()->format('F j, Y') . ' was successfully deleted');
fURL::redirect($manage_url);
}
} catch (fNotFoundException $e) {
fMessaging::create('error', $manage_url, 'The meetup requested, ' . fHTML::encode($date) . ', could not be found');
fURL::redirect($manage_url);
} catch (fExpectedException $e) {
fMessaging::create('error', fURL::get(), $e->getMessage());
}
include './views/delete.php';
}
// --------------------------------- //
if ('edit' == $action) {
try {
$meetup = new Meetup($old_date ? $old_date : $date);
if (fRequest::isPost()) {
$meetup->populate();
fRequest::validateCSRFToken(fRequest::get('token'));
$meetup->store();
fMessaging::create('affected', $manage_url, $meetup->getDate()->__toString());
fMessaging::create('success', $manage_url, 'The meetup on ' . $meetup->getDate()->format('F j, Y') . ' was successfully updated');
fURL::redirect($manage_url);
}
} catch (fNotFoundException $e) {
fMessaging::create('error', $manage_url, 'The meetup requested, ' . fHTML::encode($date) . ', could not be found');
fURL::redirect($manage_url);
} catch (fExpectedException $e) {
fMessaging::create('error', fURL::get(), $e->getMessage());
}
include './views/add_edit.php';
}
// --------------------------------- //
if ('add' == $action) {
$meetup = new Meetup();
if (fRequest::isPost()) {
try {
$meetup->populate();
fRequest::validateCSRFToken(fRequest::get('token'));
$meetup->store();
fMessaging::create('affected', $manage_url, $meetup->getDate()->__toString());
fMessaging::create('success', $manage_url, 'The meetup on ' . $meetup->getDate()->format('F j, Y') . ' was successfully created');
fURL::redirect($manage_url);
} catch (fExpectedException $e) {
fMessaging::create('error', fURL::get(), $e->getMessage());
}
} else {
// Get the third thursday of this month, or next month if this month's has passed
$date = fDate()->modify('Y-m-01')->adjust('+3 thursdays');
if ($date->lt()) {
$date = fDate('next month')->modify('Y-m-01')->adjust('+3 thursdays');
}
$meetup->setDate($date);
$meetup->setVenue('The Grog');
$meetup->setVenueWebsite('http://thegrog.com');
$meetup->setCity('Newburyport');
$meetup->setState('MA');
$meetup->setStartTime('7:00 pm');
$meetup->setEndTime('10:30 pm');
}
include './views/add_edit.php';
}
// --------------------------------- //
if ('list' == $action) {
$col = fCRUD::getSortColumn('date', 'location');
$dir = fCRUD::getSortDirection('desc');
fCRUD::redirectWithLoadedValues();
$meetups = Meetup::findAll($col, $dir);
include './views/list.php';
}