-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathindex.php
executable file
·528 lines (492 loc) · 17.1 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
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
<?php
use FAAPI\Inventory;
use FAAPI\InventoryLocations;
use FAAPI\Category;
use FAAPI\TaxTypes;
use FAAPI\TaxGroups;
use FAAPI\Customers;
use FAAPI\Suppliers;
use FAAPI\BankAccounts;
use FAAPI\GLAccounts;
use FAAPI\Currencies;
use FAAPI\InventoryCosts;
use FAAPI\Sales;
use FAAPI\Dimensions;
use FAAPI\Journal;
use FAAPI\ExchangeRates;
use FAAPI\GLQueries;
/**********************************************
Author: Andres Amaya
Name: SASYS REST API
Free software under GNU GPL
***********************************************/
/**
* @SWG\Swagger(
* host="demo.saygoweb.com",
* basePath="/frontaccounting/modules/api",
* @SWG\Info(
* version="2.4-1.7",
* title="Front Accounting Simple API",
* description="This is a simple REST API as a Front Accounting module [https://github.com/andresamayadiaz/FrontAccountingSimpleAPI](https://github.com/andresamayadiaz/FrontAccountingSimpleAPI).",
* @SWG\License(
* name="GPL V2.0",
* url="https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html"
* )
* ),
* @SWG\ExternalDocumentation(
* description="Find out more about Front Accounting Simple API",
* url="https://github.com/andresamayadiaz/FrontAccountingSimpleAPI"
* )
* )
*/
ini_set('html_errors', false);
ini_set('xdebug.show_exception_trace', 0);
// ini_set('xdebug.auto_trace', 2);
include_once('config_api.php');
global $security_areas, $security_groups, $security_headings, $path_to_root, $db, $db_connections;
$page_security = 'SA_API';
include_once(API_ROOT . "/session-custom.inc");
include_once(API_ROOT . "/vendor/autoload.php");
include_once(API_ROOT . "/util.php");
include_once(FA_ROOT . "/includes/date_functions.inc");
include_once(FA_ROOT . "/includes/data_checks.inc");
$rest = new \Slim\Slim(array(
'log.enabled' => true,
'mode' => 'debug',
'debug' => true
));
$rest->setName('SASYS');
// API Login Hook
api_login();
$req = $rest->request();
define("RESULTS_PER_PAGE", 2);
class JsonToFormData extends \Slim\Middleware
{
public function call()
{
$env = $this->app->environment();
if (is_array($env['slim.input'])) {
$env['slim.request.form_hash'] = $env['slim.input'];
}
$this->next->call();
}
}
/*
The order of these 'add' calls is important, the JsonToFormData must be the
second Middleware called, which means it needs to be added first.
*/
$rest->add(new JsonToFormData());
$rest->add(new \Slim\Middleware\ContentTypes());
// API Routes
// ---------------------------------- Items -----------------------------------
$rest->container->singleton('inventory', function () {
return new Inventory();
});
$rest->group('/inventory', function () use ($rest) {
// Get Items
$rest->get('/', function () use ($rest) {
$rest->inventory->get($rest);
});
// Get Specific Item by Stock Id
$rest->get('/:id', function ($id) use ($rest) {
$rest->inventory->getById($rest, $id);
});
// Add Item
$rest->post('/', function () use ($rest) {
$rest->inventory->post($rest);
});
// Edit Specific Item
$rest->put('/:id', function ($id) use ($rest) {
$rest->inventory->put($rest, $id);
});
// Delete Specific Item
$rest->delete('/:id', function ($id) use ($rest) {
$rest->inventory->delete($rest, $id);
});
});
// ---------------------------------- Items -----------------------------------
// ---------------------------- Inventory Locations ---------------------------
$rest->container->singleton('inventoryLocations', function () {
return new InventoryLocations();
});
$rest->group('/locations', function () use ($rest) {
// Get Locations
$rest->get('/', function () use ($rest) {
$rest->inventoryLocations->get($rest);
});
// Add Location, added by Richard Vinke
$rest->post('/', function () use ($rest) {
$rest->inventoryLocations->post($rest);
});
});
// ---------------------------- Inventory Locations ---------------------------
// ----------------------------- Stock Adjustments ----------------------------
// Add Stock Adjustment
$rest->post('/stock/', function () use ($rest) {
include_once(API_ROOT . "/inventory.inc");
stock_adjustment_add();
});
// ----------------------------- Stock Adjustments ----------------------------
// ------------------------------ Item Categories -----------------------------
$rest->container->singleton('category', function () {
return new Category();
});
$rest->group('/category', function () use ($rest) {
// Get Items Categories
$rest->get('/', function () use ($rest) {
$rest->category->get($rest);
});
// Get Specific Item Category
$rest->get('/:id', function ($id) use ($rest) {
$rest->category->getById($rest, $id);
});
// Add Item Category
$rest->post('/', function () use ($rest) {
$rest->category->post($rest);
});
// Edit Item Category
$rest->put('/:id', function ($id) use ($rest) {
$rest->category->put($rest, $id);
});
// Delete Item Category
$rest->delete('/:id', function ($id) use ($rest) {
$rest->category->delete($rest, $id);
});
});
// ------------------------------ Item Categories -----------------------------
// --------------------------------- Tax Types --------------------------------
// Tax Types
$rest->container->singleton('taxTypes', function () {
return new TaxTypes();
});
$rest->group('/taxtypes', function () use ($rest) {
// Get All Item Tax Types
$rest->get('/', function () use ($rest) {
$rest->taxTypes->get($rest);
});
// Get Specific Tax Type
$rest->get('/:id', function ($id) use ($rest) {
$rest->taxTypes->getById($rest, $id);
});
});
// --------------------------------- Tax Types --------------------------------
// --------------------------------- Tax Groups -------------------------------
// Tax Groups
$rest->container->singleton('taxGroups', function () {
return new TaxGroups();
});
// Get All Tax Groups
$rest->get('/taxgroups/', function () use ($rest) {
$rest->taxGroups->get($rest);
});
// --------------------------------- Tax Groups -------------------------------
// --------------------------------- Customers --------------------------------
$rest->container->singleton('customers', function () {
return new Customers();
});
$rest->group('/customers', function () use ($rest) {
// Get Customer General Info
$rest->get('/:id', function ($id) use ($rest) {
$rest->customers->getById($rest, $id);
});
// All Customers
$rest->get('/', function () use ($rest) {
$rest->customers->get($rest);
});
// Add Customer
$rest->post('/', function () use ($rest) {
$rest->customers->post($rest);
});
// Edit Customer
$rest->put('/:id', function ($id) use ($rest) {
$rest->customers->put($rest, $id);
});
// Delete Customer
$rest->delete('/:id', function ($id) use ($rest) {
$rest->customers->delete($rest, $id);
});
// Get Customer Branches
$rest->get('/:id/branches/', function ($id) use ($rest) {
$rest->customers->getBranches($rest, $id);
});
});
// --------------------------------- Customers --------------------------------
// --------------------------------- Suppliers --------------------------------
$rest->container->singleton('suppliers', function () {
return new Suppliers();
});
$rest->group('/suppliers', function () use ($rest) {
// All Suppliers
$rest->get('/', function () use ($rest) {
$rest->suppliers->get($rest);
});
// Get Supplier General Info
$rest->get('/:id', function ($id) use ($rest) {
$rest->suppliers->getById($rest, $id);
});
// Add Supplier
$rest->post('/', function () use ($rest) {
$rest->suppliers->post($rest);
});
// Edit Supplier
$rest->put('/:id', function ($id) use ($rest) {
$rest->suppliers->put($rest, $id);
});
// Delete Supplier
$rest->delete('/:id', function ($id) use ($rest) {
$rest->suppliers->delete($rest, $id);
});
// Get Supplier Contacts
$rest->get('/:id/contacts/', function ($id) use ($rest) {
$rest->suppliers->getContacts($rest, $id);
});
});
// --------------------------------- Suppliers --------------------------------
// ------------------------------- Bank Accounts ------------------------------
$rest->container->singleton('bankAccounts', function () {
return new BankAccounts();
});
$rest->group('/bankaccounts', function () use ($rest) {
// Get All Bank Accounts
$rest->get('/', function () use ($rest) {
$rest->bankAccounts->get($rest);
});
// Get Specific Bank Account
$rest->get('/:id', function ($id) use ($rest) {
$rest->bankAccounts->getById($rest, $id);
});
// Insert Bank Account
$rest->post('/', function () use ($rest) {
$rest->bankAccounts->post($rest);
});
// Update Bank Account
$rest->put('/:id', function ($id) use ($rest) {
$rest->bankAccounts->put($rest, $id);
});
// Delete Bank Account
$rest->delete('/:id', function ($id) use ($rest) {
$rest->bankAccounts->delete($rest, $id);
});
});
// ------------------------------- Bank Accounts ------------------------------
// -------------------------------- GL Accounts -------------------------------
$rest->container->singleton('glAccounts', function () {
return new GLAccounts();
});
$rest->group('/glaccounts', function () use ($rest) {
// Get All GL Accounts
$rest->get('/', function () use ($rest) {
$rest->glAccounts->get($rest);
});
// Get Specific GL Account
$rest->get('/:id', function ($id) use ($rest) {
$rest->glAccounts->getById($rest, $id);
});
// Insert GL Account
$rest->post('/', function () use ($rest) {
$rest->glAccounts->post($rest);
});
// Update GL Account
$rest->put('/:id', function ($id) use ($rest) {
$rest->glAccounts->put($rest, $id);
});
// Delete GL Account
$rest->delete('/:id', function ($id) use ($rest) {
$rest->glAccounts->delete($rest, $id);
});
});
// Get GL Account Types
$rest->get('/glaccounttypes/', function () use ($rest) {
$rest->glAccounts->getTypes($rest);
});
$rest->container->singleton('glQueries', function () {
return new GLQueries();
});
$rest->group('/glquery', function () use ($rest) {
// Get Trial Balance
$rest->get('/trialbalance/:start/:end/', function ($start, $end) use ($rest) {
$rest->glQueries->trialBalance($rest, $start, $end);
});
});
// -------------------------------- GL Accounts -------------------------------
// -------------------------------- Currencies --------------------------------
$rest->container->singleton('currencies', function () {
return new Currencies();
});
$rest->group('/currencies', function () use ($rest) {
// Get All Currencies
$rest->get('/', function () use ($rest) {
$rest->currencies->get($rest);
});
// Get Specific Currency
$rest->get('/:id', function ($id) use ($rest) {
$rest->currencies->getById($rest, $id);
});
});
// -------------------------------- Currencies --------------------------------
// ------------------------------ Exchange Rates ------------------------------
$rest->container->singleton('exchangerates', function () {
return new ExchangeRates();
});
$rest->group('/exchangerates', function () use ($rest) {
// Get Current ExchangeRate
$rest->get('/:currency/current', function ($currency) use ($rest) {
$rest->exchangerates->getCurrent($rest, $currency);
});
// Get ExchangeRate
$rest->get('/:currency/:id', function ($currency, $id) use ($rest) {
$rest->exchangerates->getById($rest, $currency, $id);
});
// Insert ExchangeRate
$rest->post('/:currency/', function ($currency) use ($rest) {
$rest->exchangerates->post($rest, $currency);
});
// Edit ExchangeRate
$rest->put('/:currency/:id', function ($currency, $id) use ($rest) {
$rest->exchangerates->put($rest, $currency, $id);
});
// Delete ExchangeRate
$rest->delete('/:currency/:id', function ($currency, $id) use ($rest) {
$rest->exchangerates->delete($rest, $currency, $id);
});
// All exchangerates for the given currency
$rest->get('/:currency/', function ($currency) use ($rest) {
$rest->exchangerates->getAllByCurrency($rest, $currency);
});
});
// Get Last Exchange Rate (Legacy route)
$rest->get('/exrates/:curr_abrev', function ($curr_abrev) use ($rest) {
$rest->currencies->getLastExchangeRate($rest, $curr_abrev);
});
// ------------------------------ Exchange Rates ------------------------------
// ----- ------------------------ Inventory Costs -----------------------------
$rest->container->singleton('inventoryCosts', function () {
return new InventoryCosts();
});
$rest->group('/itemcosts', function () use ($rest) {
// Get Item Cost
$rest->get('/:id', function ($id) use ($rest) {
$rest->inventoryCosts->getById($rest, $id);
});
// Update Item Cost
$rest->put('/:id', function ($id) use ($rest) {
$rest->inventoryCosts->put($rest, $id);
});
});
// ----- ------------------------ Inventory Costs -----------------------------
// ------------------------------- Assets -------------------------------
// Fixed Assets
function assets_supported()
{
global $path_to_root;
return file_exists($path_to_root . '/modules/asset_register');
}
if (assets_supported()) {
// Get Fixed Asset
$rest->get('/assets/:id', function ($id) use ($rest) {
include_once(API_ROOT . "/assets.inc");
assets_get($id);
});
// Insert Fixed Asset
$rest->post('/assets/', function () use ($rest) {
include_once(API_ROOT . "/assets.inc");
assets_add();
});
// Get Asset Types
$rest->get('/assettypes/', function () use ($rest) {
global $req;
include_once(API_ROOT . "/assets.inc");
$page = $req->get("page");
if ($page == null) {
assettypes_all();
} else {
// If page = 1 the value will be 0, if page = 2 the value will be 1, ...
$from = -- $page * RESULTS_PER_PAGE;
assettypes_all($from);
}
});
}
// ------------------------------- Assets -------------------------------
// ------------------------------- Sales --------------------------------
$rest->container->singleton('sales', function () {
return new Sales();
});
$rest->group('/sales', function () use ($rest) {
// Get Sales Header and Details
$rest->get('/:trans_no/:trans_type', function ($trans_no, $trans_type) use ($rest) {
$rest->sales->getById($rest, $trans_no, $trans_type);
});
// Insert Sales
$rest->post('/', function () use ($rest) {
$rest->sales->post($rest);
});
// Edit Sales
$rest->put('/:trans_no/:trans_type', function ($trans_no, $trans_type) use ($rest) {
$rest->sales->put($rest, $trans_no, $trans_type);
});
// Cancel Sales
$rest->delete('/:branch_id/:uuid', function ($branch_id, $uuid) use ($rest) {
$rest->sales->delete($rest, $branch_id, $uuid);
});
// All Sales
$rest->get('/:trans_type/', function ($trans_type) use ($rest) {
$rest->sales->get($rest, $trans_type);
});
});
// ------------------------------- Sales --------------------------------
// ----------------------------- Dimensions -----------------------------
$rest->container->singleton('dimensions', function () {
return new Dimensions();
});
$rest->group('/dimensions', function () use ($rest) {
// Get Dimension
$rest->get('/:ref', function ($ref) use ($rest) {
$rest->dimensions->getById($rest, $ref);
});
// Insert Dimension
$rest->post('/', function () use ($rest) {
$rest->dimensions->post($rest);
});
// Edit Dimension
$rest->put('/:ref', function ($ref) use ($rest) {
$rest->dimensions->put($rest, $ref);
});
// Delete Dimension
$rest->delete('/:ref', function ($ref) use ($rest) {
$rest->dimensions->delete($rest, $ref);
});
// All Dimensions
$rest->get('/', function () use ($rest) {
$rest->dimensions->get($rest);
});
});
// ----------------------------- Dimensions -----------------------------
// ------------------------------ Journal -------------------------------
$rest->container->singleton('journal', function () {
return new Journal();
});
$rest->group('/journal', function () use ($rest) {
// Get All Journal Entries
$rest->get('/', function () use ($rest) {
$rest->journal->get($rest);
});
// Get Specific Journal Entry
$rest->get('/:type/:id', function ($type, $id) use ($rest) {
$rest->journal->getById($rest, $type, $id);
});
// Insert Journal Entry
$rest->post('/', function () use ($rest) {
$rest->journal->post($rest);
});
// Update Journal Entry
$rest->put('/:id', function ($id) use ($rest) {
$rest->journal->put($rest, $id);
});
// Delete Journal Entry
$rest->delete('/:type/:id', function ($type, $id) use ($rest) {
$rest->journal->delete($rest, $type, $id);
});
});
// ------------------------------ Journal -------------------------------
// Init API
$rest->run();