Documenting and some clean-up
[situare] / src / situareservice / situarecommon.h
1 /*
2    Situare - A location system for Facebook
3    Copyright (C) 2010  Ixonos Plc. Authors:
4
5       Henri Lampela - henri.lampela@ixonos.com
6
7    Situare is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License
9    version 2 as published by the Free Software Foundation.
10
11    Situare is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with Situare; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
19    USA.
20 */
21
22 #ifndef SITUARECOMMON_H
23 #define SITUARECOMMON_H
24
25 #include <QString>
26
27 // Situare server constants
28 #ifndef USE_TEST_SERVER
29     // Production server
30     const QString SITUARE_URL = "http://client.situare.net/";
31     const QString API_KEY = "4197c64da2fb6b927236feaea32d7d81";
32 #else
33     // Test server
34     const QString SITUARE_URL = "http://emmerichgn.facebook.joyent.us/";
35     const QString API_KEY = "cf77865a5070f2c2ba3b52cbf3371579";
36 #endif
37
38 // Situare JSON callback data
39 const QString NORMAL_SIZE_PROFILE_IMAGE = "pic";
40
41 // Situare PHP scripts
42 const QString UPDATE_LOCATION = "updateLocation.php";
43 const QString REVERSE_GEO = "reversegeo.php";
44 const QString GET_LOCATIONS = "getLocations.php";
45
46 // Cookies
47 const QString COOKIE = "Cookie";
48 const QString USER = "user";
49 const QString EXPIRES = "expires";
50 const QString SESSION_KEY = "session_key";
51 const QString SESSION_SECRET = "ss";
52
53 // Locales
54 const QString LOCALE = "locale";
55 const QString EN_LOCALE = "en_EN";
56
57 // Common marks
58 const QString QUESTION_MARK = "?";
59 const QString AMBERSAND_MARK = "&";
60 const QString EQUAL_MARK = "=";
61 const QString UNDERLINE_MARK = "_";
62 const QString BREAK_MARK = ";";
63 const QString OPENING_BRACE_MARK = "{";
64
65 // Coordinates
66 const QString LATITUDE = "lat";
67 const QString LONGTITUDE = "lon";
68
69 // Url parameters
70 const QString PUBLISH = "publish";
71 const QString PUBLISH_TRUE = "true";
72 const QString PUBLISH_FALSE = "false";
73 const QString DATA = "data";
74 const QString JSON_FORMAT = "&format=json";
75
76 // Situare server error messages
77 const QString ERROR_LAT = "Wrong lat value: . Latitude must be between -90 and 90!";
78 const QString ERROR_LON = "Wrong lon value: . Longitude must be between -180 and 180!";
79 const QString ERROR_SESSION = "<br />\n<b>Fatal error</b>:"; // starts with
80
81 const QString SILHOUETTE_URL = "http://static.ak.fbcdn.net/pics/q_silhouette.gif";
82
83 #endif // SITUARECOMMON_H