]> dev.renevier.net Git - syp.git/blob - inc/html/admin.php
ef43708a4b50f03314742deadafb2527c329420a
[syp.git] / inc / html / admin.php
1 <?php
2 /* Copyright (c) 2009 Arnaud Renevier, Inc, published under the modified BSD
3    license. */
4
5 $error = false;
6
7 if (!@include_once ("./inc/settings.php")) {
8     $error = true;
9 }
10 require_once ("./inc/db/" . (defined ("DBTYPE")? DBTYPE: "mysql") . ".php");
11 require_once ("./inc/utils.php");
12
13 try {
14     $connection->connect (DBHOST, DBUSER, DBPWD, DBNAME, DBPREFIX);
15     $usrtblexists = $connection->users_table_exists ();
16     $itemstblexists = $connection->items_table_exists ();
17 } catch (Exception $e) {
18     $error = true;
19 }
20 if (!$usrtblexists || !$itemstblexists) {
21     $error = true;
22 }
23     if ($error) {
24 ?>
25 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
26        "http://www.w3.org/TR/html4/loose.dtd">  
27 <html lang="<?php echo $lang?>">
28 <head>
29       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >
30       <title><?php ptrans('SYP admin')?></title>
31       <link rel="stylesheet" href="./media/admin.css" type="text/css">
32 </head>
33 <body>
34     <p class="error center"><?php ptrans('SYP is not correctly installed. Please follow README.txt instructions
35        and go to <a href="install.en.php">wizard</a>.')?></p>
36 </body>
37 </html>
38 <?php
39     exit ();
40     } // if ($error)
41
42     $user = $_COOKIE [sprintf ("%suser", DBPREFIX)];
43     $pwd = $_COOKIE [sprintf ("%sauth", DBPREFIX)];
44     $logged = ($connection->checkpwdmd5 ($user, $pwd));
45 ?>
46 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
47        "http://www.w3.org/TR/html4/loose.dtd">  
48 <html lang="<?php echo $lang?>">
49 <head>
50       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >
51       <title><?php ptrans('SYP admin');?></title>
52
53       <link rel="stylesheet" href="./media/admin.css" type="text/css">
54       <link rel="stylesheet" href="./openlayers/theme/default/style.css" type="text/css">
55
56 <?php
57     if (file_exists ("./media/admin_custom.css")) {
58         printf("    <link rel=\"stylesheet\" href=\"./media/admin_custom.css\" type=\"text/css\">\n");
59     }
60 ?>
61
62       <script type="text/javascript">
63         var SypStrings = {
64             AddItem: "<?php ptrans('add a place')?>",
65             Cancel: "<?php ptrans('cancel')?>",
66             DragDropHowto: "<?php ptrans('You can move an item by drag & droping it.')?>",
67             SelectHowto: "<?php ptrans('To modify an item data, select matching marker.')?>",
68             AddHowto: "<?php ptrans('Click on the map to add a marker.')?>",
69             ServerError: "<?php ptrans('There was a server error.')?>",
70             UnreferencedError: "<?php ptrans('Item was not registered on the server.')?>",
71             NochangeError: "<?php ptrans('No change was made.')?>",
72             RequestError: "<?php ptrans('Server did not understood request. That\'s probably caused by a bug in SYP.')?>",
73             ToobigError: "<?php ptrans('Image was too big and was not accepted by server.')?>",
74             UnauthorizedError: "<?php ptrans('Password is not correct.')?>",
75             NotimageError: "<?php ptrans('File does not look like an image.')?>",
76             UnconsistentError: "<?php ptrans('Server reply was inconsistent.')?>",
77             DelSucces: "<?php ptrans('Successfully removed.')?>",
78             UpdateSucces: "<?php ptrans('Save took place correctly.')?>",
79             emptyPasswordError: "<?php ptrans('Password cannot be empty')?>",
80             userPasswordmatchError: "<?php ptrans('Passwords do not match.')?>",
81             changeSamePass: "<?php ptrans('New password is the same as old password.')?>",
82             changePassBadPass: "<?php ptrans('Bad password.')?>",
83             changePassSuccess: "<?php ptrans('Password successfully changed.')?>",
84             newUserNonameError: "<?php ptrans('User name has not been set.')?>",
85             newUserExistsError: "<?php ptrans('User already exists in database.')?>",
86             newUserSuccess: "<?php ptrans('User successfully added.')?>"
87         };
88
89         var sypSettings =  {
90             loggedUser: <?php printf ($logged ? "\"$user\"": "null")?>
91         };
92
93       </script>
94       <script src="./js/jquery-1.3.2.js" type="text/javascript"></script>
95       <script src="./openlayers/OpenLayers.js" type="text/javascript"></script>
96       <script src="./js/admin.js" type="text/javascript"></script>
97
98     <noscript>
99     <style type="text/css">
100         #map, #editor, #admin, #login_area {
101             display: none;
102         }
103     </style>
104     </noscript>
105
106 </head>
107
108 <body>
109
110     <noscript>
111     <p><?php ptrans('SYP needs javascript. Please activate scripts in your browser.')?></p>
112     </noscript>
113
114     <div id="header">
115     <?php other_languages($lang) ?>
116     <div id="user_management">
117         <p id="logout" class="user_link"><a href="logout.php"><?php ptrans('Logout')?></a></p>
118         <p id="change_pass" class="user_link"><a href=""><?php ptrans('Change my password')?></a></p>
119         <p id="add_user" class="user_link"><a href=""><?php ptrans('Add a co-administrator')?></a></p>
120     </div>
121         <div id="user_area">
122             <input id="user_close" type="image" src="openlayers/theme/default/img/close.gif"
123                         title="<?php ptrans('close without saving')?>" alt="<?php ptrans('close')?>">
124             <form id="changepass" method="post">
125                 <label for="pass_current"><?php ptrans('current password:')?></label>
126                 <br>
127                 <input id="pass_current" name="pass_current" type="password">
128                 <br>
129                 <label for="pass_new"><?php ptrans('new password:')?></label>
130                 <br>
131                 <input id="pass_new" name="pass_new" type="password">
132                 <br>
133                 <label for="pass_new_confirm"><?php ptrans('confirm new password:')?></label>
134                 <br>
135                 <input id="pass_new_confirm" name="pass_new_confirm" type="password">
136                 <br>
137                 <input id="pass_submit" name="pass_submit" type="submit" value="<?php ptrans('Validate password')?>">
138                 <input type="hidden" name="request" value="changepass">
139             </form>
140             <form id="newuser" method="post">
141                 <label for="newuser_name"><?php ptrans('user name:')?></label>
142                 <br>
143                 <input id="newuser_name" name="newuser_name">
144                 <br>
145                 <label for="newuser_password"><?php ptrans('user password:')?></label>
146                 <br>
147                 <input id="newuser_password" name="newuser_password" type="password" value="">
148                 <br>
149                 <label for="newuser_password_confirm"><?php ptrans('confirm password:')?></label>
150                 <br>
151                 <input id="newuser_password_confirm" name="newuser_password_confirm" type="password">
152                 <br>
153                 <input id="newuser_submit" name="newuser_submit" type="submit" value="<?php ptrans('Validate user')?>">
154                 <input type="hidden" name="request" value="newuser">
155                 </form>
156                 <p id="user_comm" class="center"></p>
157                 <p id="user_throbber" class="throbber center">
158                     <?php ptrans('Connecting')?>
159                     <img src="media/newuser-throbber.gif" alt="<?php ptrans('throbber')?>">
160                 </p>
161         </div>
162     </div>
163
164
165     <div id="map"></div>
166
167     <div id="admin" class="center">
168         <input id="newfeature_button" type="button" value="<?php ptrans('add a place')?>">
169         <p id="server_comm"></p>
170         <p id="instructions"></p>
171     </div>
172
173     <div id="editor" class="center">
174         <input id="editor_close" type="image" src="openlayers/theme/default/img/close.gif"
175              title="<?php ptrans('close without saving')?>" alt="<?php ptrans('close')?>">
176         <form id="feature_update" method="post" enctype="multipart/form-data">
177             <label for="title"><?php ptrans('title:')?></label><br>
178             <input id="title" name="title"><br>
179             <label for="description"><?php ptrans('description:')?></label><br>
180             <textarea id="description" name="description" rows="4"></textarea><br>
181             <div><img id="img"></div>
182             <input id="image_delete" type="button" value="<?php ptrans('delete image')?>">
183             <div>
184                 <label for="image_file"><?php ptrans('add an image:')?></label>
185                 <input id="image_file" type="file" name="image_file">
186             </div>
187             <br>
188             <div class="center">
189             <input id="validate_editor" type="submit" value="<?php ptrans('Validate changes')?>">
190             </div>
191             <input type="hidden" name="request">
192             <input type="hidden" name="lon">
193             <input type="hidden" name="lat">
194             <input type="hidden" name="fid">
195             <input type="hidden" name="keep_img">
196         </form>
197         <form id="feature_delete" method="post">
198             <input id="delete" type="submit" value="<?php ptrans('Delete item')?>">
199             <input type="hidden" name="request" value="del">
200             <input type="hidden" name="fid">
201         </form>
202         <p id="editor_throbber" class="throbber center">
203             <?php ptrans('Connecting')?>
204             <img src="media/editor-throbber.gif" alt="<?php ptrans('throbber')?>">
205         </p>
206     </div>
207
208       <div id="login_area"
209         <?php 
210         if ($logged) {
211             echo ' class="hidden"';
212         }
213       ?>>
214      <div id="login_transparency"></div>
215      <div id="login_padding"></div>
216      <div id="login_content">
217         <form id="login_form" method="post">
218         <div id="cookie_warning" class="center warn"><?php ptrans('You need to have cookies enabled to administrate SYP')?></div>
219             <table>
220                 <tr>
221                     <td><label for="user"><?php ptrans('user')?></label></td>
222                     <td style="width: 100%"><input id="user" name="user"></td>
223                 </tr>
224                 <tr>
225                     <td><label for="password"><?php ptrans('password')?></label></td>
226                     <td style="width: 100%"><input id="password" name="password" type="password"></td>
227                 </tr>
228             </table>
229             <p class="center">
230                 <input id="login_submit" type="submit" value="<?php ptrans('Login')?>">
231                 <input type="hidden" name="request" value="auth">
232             </p>
233             <p id="pwd_throbber" class="throbber center">
234                 <?php ptrans('Connecting')?>
235                 <img src="media/pwd-throbber.gif" alt="<?php ptrans('throbber')?>">
236             </p>
237             <p class="error center" id="login_error"></p>
238         </form>
239      </div>
240      </div>
241
242      <iframe id="api_frame" name="api_frame" src="" frameborder="0" width="0" height="0"></iframe>
243
244 </body>
245 </html>