implemented user list and editing other users for admin

This commit is contained in:
2025-07-02 22:08:36 +02:00
parent 10c24dd93d
commit ea6ca9e45d
8 changed files with 162 additions and 69 deletions

View File

@@ -2,13 +2,7 @@
package de.srsoftware.umbrella.core; package de.srsoftware.umbrella.core;
public class ResponseCode { public class ResponseCode {
public static final int OK = 200; public static final int HTTP_UNPROCESSABLE = 422;
public static final int REDIRECT = 302; public static final int HTTP_SERVER_ERROR = 500;
public static final int BAD_REQUEST = 400; public static final int HTTP_NOT_IMPLEMENTED = 501;
public static final int UNAUTHORIZED = 401;
public static final int FORBIDDEN = 403;
public static final int NOT_FOUND = 404;
public static final int UNPROCESSABLE = 422;
public static final int SERVER_ERROR = 500;
public static final int NOT_IMPLEMENTED = 501;
} }

View File

@@ -1,19 +1,102 @@
<script> <script>
import { t } from '../../translations.svelte.js'; import { t } from '../../translations.svelte.js';
import { useTinyRouter } from 'svelte-tiny-router';
import { onMount } from 'svelte'; import { onMount } from 'svelte';
import { checkUser } from '../../user.svelte.js';
const router = useTinyRouter();
let { user_id } = $props(); let { user_id } = $props();
let editUser = $state(null);
let options = $state([]);
let sent = $state(false);
let caption = $state(t('user.save_user'));
onMount(async () => { onMount(async () => {
const url = `${location.protocol}//${location.host.replace('5173','8080')}/api/user/${user.id}`; let url = `${location.protocol}//${location.host.replace('5173','8080')}/themes.json`;
const resp = await fetch(url,{credentials:include}); let resp = await fetch(url);
if (resp.ok){ if (resp.ok){
const json = await resp.json(); const arr = await resp.json();
for (let entry of arr){
const value = entry.value;
const caption = entry.caption ? entry.caption : value;
options.push({caption:caption,value:value})
}
} }
});
url = `${location.protocol}//${location.host.replace('5173','8080')}/api/user/${user_id}`;
resp = await fetch(url,{credentials:'include'});
if (resp.ok) editUser = await resp.json();
});
async function save(elem){
sent = true;
caption = t('user.data_sent');
let url = `${location.protocol}//${location.host.replace('5173','8080')}/api/user/${user_id}`;
let resp = await fetch(url,{
method: 'PATCH',
credentials: 'include',
body: JSON.stringify(editUser)
});
if (resp.ok){
caption = t('user.saved');
checkUser();
router.navigate('/user');
} else {
caption = t('user.failed');
}
}
</script> </script>
<fieldset> <fieldset>
<legend>{t('user.editing')} {user_id}</legend> <legend>{t('user.editing',user_id)}</legend>
…Edit form here… {#if editUser}
<table>
<tbody>
<tr>
<th>{t('user.id')}</th>
<td>{editUser.id}</td>
</tr>
<tr>
<th>{t('user.name')}</th>
<td>
<input type="text" bind:value={editUser.name} />
</td>
</tr>
<tr>
<th>{t('user.email')}</th>
<td>
<input type="text" bind:value={editUser.email} />
</td>
</tr>
<tr>
<th>{t('user.language')}</th>
<td>
<input type="text" bind:value={editUser.language} />
</td>
</tr>
<tr>
<th>{t('user.password')}</th>
<td>
<input type="password" bind:value={editUser.password} />
</td>
</tr>
<tr>
<th>{t('user.theme')}</th>
<td>
<select bind:value={editUser.theme}>
{#each options as entry,i}
<option value={entry.value}>{entry.caption}</option>
{/each}
</select>
</td>
</tr>
</tbody>
</table>
<button onclick={save} disabled={sent}>{caption}</button>
{:else}
{t('user.loading_data')}
{/if}
</fieldset> </fieldset>

View File

@@ -6,18 +6,21 @@
let oldPass = $state(""); let oldPass = $state("");
let newPass = $state(""); let newPass = $state("");
let repeat = $state(""); let repeat = $state("");
let caption = $state(t('user.update'));
let oldEmpty = $derived(!/\S/.test(oldPass)); let oldEmpty = $derived(!/\S/.test(oldPass));
let newEmpty = $derived(!/\S/.test(newPass)); let newEmpty = $derived(!/\S/.test(newPass));
let mismatch = $derived(newPass != repeat); let mismatch = $derived(newPass != repeat);
let error = $state(""); let error = $state("");
let sent = $state(false);
function abort(){ function abort(){
editPassword = false; editPassword = false;
} }
async function submit(){ async function submit(){
caption = t('user.data_sent');
const url = `${location.protocol}//${location.host.replace('5173','8080')}/api/user/password`; const url = `${location.protocol}//${location.host.replace('5173','8080')}/api/user/password`;
const data = { const data = {
old: oldPass, old: oldPass,
@@ -28,11 +31,11 @@
body: JSON.stringify(data), body: JSON.stringify(data),
credentials: 'include' credentials: 'include'
}); });
if (resp.ok){ if (resp.ok){
const json = await resp.json(); caption = t('user.saved');
console.log(json);
} else { } else {
error = await resp.text(); caption = t('user.failed');
} }
} }
</script> </script>
@@ -63,8 +66,8 @@
<span class="error">{t('user.mismatch')}</span> <span class="error">{t('user.mismatch')}</span>
{/if} {/if}
</label> </label>
<button onclick={submit} disabled={oldEmpty||newEmpty||mismatch}>{t('user.update')}</button> <button onclick={submit} disabled={sent||oldEmpty||newEmpty||mismatch}>{caption}</button>
<button onclick={abort}>{t('user.abort')}</button> <button onclick={abort} disabled={sent}>{t('user.abort')}</button>
{#if error} {#if error}
<span class="error">{error}</span> <span class="error">{error}</span>
{/if} {/if}

View File

@@ -1,10 +1,13 @@
<script> <script>
import { t } from '../../translations.svelte.js'; import { t } from '../../translations.svelte.js';
import { user } from '../../user.svelte.js'; import { user } from '../../user.svelte.js';
import ClickInput from '../../Components/ClickInput.svelte'; import { useTinyRouter } from 'svelte-tiny-router';
import ClickSelect from '../../Components/ClickSelect.svelte';
import EditPassword from './EditPassword.svelte'; import EditPassword from './EditPassword.svelte';
import UserList from './List.svelte'; import UserList from './List.svelte';
const router = useTinyRouter();
let editPassword = false; let editPassword = false;
async function patch(changeset){ async function patch(changeset){
@@ -31,7 +34,7 @@
<fieldset> <fieldset>
<legend> <legend>
{t('user.profile')} {t('user.your_profile')} <button onclick={() => router.navigate(`/user/${user.id}/edit`)}>{t('user.edit')}</button>
</legend> </legend>
<table> <table>
<tbody> <tbody>
@@ -41,9 +44,7 @@
</tr> </tr>
<tr> <tr>
<th>{t('user.name')}</th> <th>{t('user.name')}</th>
<td> <td>{user.name}</td>
<ClickInput key='name' value={user.name} onUpdate={patch} />
</td>
</tr> </tr>
<tr> <tr>
<th>{t('user.login')}</th> <th>{t('user.login')}</th>
@@ -51,21 +52,15 @@
</tr> </tr>
<tr> <tr>
<th>{t('user.email')}</th> <th>{t('user.email')}</th>
<td> <td>{user.email}</td>
<ClickInput key='email' value={user.email} onUpdate={patch} />
</td>
</tr> </tr>
<tr> <tr>
<th>{t('user.language')}</th> <th>{t('user.language')}</th>
<td> <td>{user.language}</td>
<ClickInput key='language' value={user.language} onUpdate={patch} />
</td>
</tr> </tr>
<tr> <tr>
<th>{t('user.theme')}</th> <th>{t('user.theme')}</th>
<td> <td>{user.theme}</td>
<ClickSelect key='theme' value={user.theme} fetchOptions={fetchThemes} onUpdate={patch} />
</td>
</tr> </tr>
<tr> <tr>
<th>{t('user.password')}</th> <th>{t('user.password')}</th>

View File

@@ -21,15 +21,19 @@
"actions": "Aktionen", "actions": "Aktionen",
"abort": "abbrechen", "abort": "abbrechen",
"CREATE_USERS": "NUTZER ANLEGEN", "CREATE_USERS": "NUTZER ANLEGEN",
"data_sent": "Daten übermittelt",
"DELETE_USERS": "NUTZER LÖSCHEN", "DELETE_USERS": "NUTZER LÖSCHEN",
"edit": "Bearbeiten", "edit": "Bearbeiten",
"editing": "Nutzer {0} bearbeiten",
"edit_password": "Passwort ändern", "edit_password": "Passwort ändern",
"email": "E-Mail", "email": "E-Mail",
"failed": "fehlgeschlagen",
"id": "Id", "id": "Id",
"IMPERSONATE": "NUTZER WECHSELN", "IMPERSONATE": "NUTZER WECHSELN",
"language": "Sprache", "language": "Sprache",
"list": "Benutzer-Liste", "list": "Benutzer-Liste",
"LIST_USERS": "NUTZER AUFLISTEN", "LIST_USERS": "NUTZER AUFLISTEN",
"loading_data": "Daten werden geladen…",
"login": "Login", "login": "Login",
"MANAGE_LOGIN_SERVICES": "LOGIN-SERVICES VERWALTEN", "MANAGE_LOGIN_SERVICES": "LOGIN-SERVICES VERWALTEN",
"mismatch": "ungleich", "mismatch": "ungleich",
@@ -39,9 +43,11 @@
"old_password": "altes Passwort", "old_password": "altes Passwort",
"password": "Passwort", "password": "Passwort",
"permissions": "Berechtigungen", "permissions": "Berechtigungen",
"profile": "Profil",
"repeat_new_password": "Wiederholung", "repeat_new_password": "Wiederholung",
"saved": "gespeichert",
"save_user": "Nutzer speichern",
"theme": "Design", "theme": "Design",
"your_profile": "dein Profil",
"update": "aktualisieren", "update": "aktualisieren",
"user_module" : "Umbrella User-Verwaltung" "user_module" : "Umbrella User-Verwaltung"
} }

View File

@@ -12,12 +12,14 @@ import static de.srsoftware.umbrella.user.Paths.WHOAMI;
import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.LIST_USERS; import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.LIST_USERS;
import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.UPDATE_USERS; import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.UPDATE_USERS;
import static java.lang.System.Logger.Level.WARNING; import static java.lang.System.Logger.Level.WARNING;
import static java.net.HttpURLConnection.*;
import static java.time.temporal.ChronoUnit.DAYS; import static java.time.temporal.ChronoUnit.DAYS;
import com.sun.net.httpserver.HttpExchange; import com.sun.net.httpserver.HttpExchange;
import de.srsoftware.tools.Path; import de.srsoftware.tools.Path;
import de.srsoftware.tools.PathHandler; import de.srsoftware.tools.PathHandler;
import de.srsoftware.tools.SessionToken; import de.srsoftware.tools.SessionToken;
import de.srsoftware.umbrella.core.ResponseCode;
import de.srsoftware.umbrella.core.UmbrellaException; import de.srsoftware.umbrella.core.UmbrellaException;
import de.srsoftware.umbrella.user.api.UserDb; import de.srsoftware.umbrella.user.api.UserDb;
import de.srsoftware.umbrella.user.model.*; import de.srsoftware.umbrella.user.model.*;
@@ -26,7 +28,6 @@ import java.security.NoSuchAlgorithmException;
import java.time.Instant; import java.time.Instant;
import java.util.List; import java.util.List;
import java.util.Optional; import java.util.Optional;
import org.json.JSONObject; import org.json.JSONObject;
@@ -72,12 +73,24 @@ public class UserModule extends PathHandler {
LOG.log(WARNING,e); LOG.log(WARNING,e);
} }
addCors(ex); addCors(ex);
return switch (path.toString()) { var head = path.pop();
case LIST -> getUserList(ex, user); switch (head) {
case LOGOUT -> logout(ex, sessionToken); case LIST: return getUserList(ex, user);
case WHOAMI -> getUser(ex, user); case LOGOUT: return logout(ex, sessionToken);
default -> super.doGet(path, ex); case WHOAMI: return getUser(ex, user);
}; };
try {
long userId = Long.parseLong(head);
if (userId == user.id() || (user instanceof DbUser dbUser && dbUser.permissions().contains(LIST_USERS))) {
var requestedUser = users.load(userId);
return sendContent(ex,requestedUser);
}
} catch (UmbrellaException e) {
return sendContent(ex,e.statusCode(),e.getMessage());
} catch (NumberFormatException ignored) {}
return super.doGet(path, ex);
} }
@Override @Override
@@ -89,7 +102,7 @@ public class UserModule extends PathHandler {
addCors(ex); addCors(ex);
var sessionToken = SessionToken.from(ex); var sessionToken = SessionToken.from(ex);
if (sessionToken.isEmpty()) return sendEmptyResponse(UNAUTHORIZED,ex); if (sessionToken.isEmpty()) return sendEmptyResponse(HTTP_UNAUTHORIZED,ex);
UmbrellaUser requestingUser; UmbrellaUser requestingUser;
try { try {
@@ -102,11 +115,11 @@ public class UserModule extends PathHandler {
var head = path.pop(); var head = path.pop();
long userId; long userId;
try { try {
if (head == null || head.isBlank()) return sendContent(ex,UNPROCESSABLE,"User id missing!"); if (head == null || head.isBlank()) return sendContent(ex, HTTP_UNPROCESSABLE,"User id missing!");
if (PASSWORD.equals(head)) return patchPassword(ex,requestingUser); if (PASSWORD.equals(head)) return patchPassword(ex,requestingUser);
userId = Long.parseLong(head); userId = Long.parseLong(head);
} catch (NumberFormatException e) { } catch (NumberFormatException e) {
return sendContent(ex,UNPROCESSABLE,"Invalid user id: "+head); return sendContent(ex, HTTP_UNPROCESSABLE,"Invalid user id: "+head);
} }
DbUser editedUser; DbUser editedUser;
@@ -117,7 +130,7 @@ public class UserModule extends PathHandler {
} }
if (requestingUser.id() != userId && (!(requestingUser instanceof DbUser dbUser) || !dbUser.permissions().contains(UPDATE_USERS))){ if (requestingUser.id() != userId && (!(requestingUser instanceof DbUser dbUser) || !dbUser.permissions().contains(UPDATE_USERS))){
return sendContent(ex,FORBIDDEN,"You are not allowed to update user "+editedUser.name()); return sendContent(ex,HTTP_FORBIDDEN,"You are not allowed to update user "+editedUser.name());
} }
JSONObject json; JSONObject json;
@@ -125,7 +138,7 @@ public class UserModule extends PathHandler {
json = json(ex); json = json(ex);
} catch (Exception e){ } catch (Exception e){
LOG.log(WARNING,"Request does not contain valid JSON",e); LOG.log(WARNING,"Request does not contain valid JSON",e);
return sendContent(ex,BAD_REQUEST,"Body contains no JSON data"); return sendContent(ex,HTTP_BAD_REQUEST,"Body contains no JSON data");
} }
@@ -137,7 +150,6 @@ public class UserModule extends PathHandler {
} }
private boolean getUserList(HttpExchange ex, UmbrellaUser user) throws IOException { private boolean getUserList(HttpExchange ex, UmbrellaUser user) throws IOException {
if (user instanceof DbUser dbUser && dbUser.permissions().contains(LIST_USERS)){ if (user instanceof DbUser dbUser && dbUser.permissions().contains(LIST_USERS)){
try { try {
var list = users.list(0, null).stream().map(UmbrellaUser::toMap).toList(); var list = users.list(0, null).stream().map(UmbrellaUser::toMap).toList();
@@ -146,23 +158,23 @@ public class UserModule extends PathHandler {
return sendContent(ex,e.statusCode(),e.getMessage()); return sendContent(ex,e.statusCode(),e.getMessage());
} }
} }
return sendContent(ex,FORBIDDEN,"You are not allowed to list users!"); return sendContent(ex,HTTP_FORBIDDEN,"You are not allowed to list users!");
} }
private boolean patchPassword(HttpExchange ex, UmbrellaUser requestingUser) throws IOException { private boolean patchPassword(HttpExchange ex, UmbrellaUser requestingUser) throws IOException {
if (!(requestingUser instanceof DbUser user)) return sendContent(ex,SERVER_ERROR,"DbUser expected"); if (!(requestingUser instanceof DbUser user)) return sendContent(ex, ResponseCode.HTTP_SERVER_ERROR,"DbUser expected");
JSONObject json; JSONObject json;
try { try {
json = json(ex); json = json(ex);
} catch (Exception e){ } catch (Exception e){
LOG.log(WARNING,"Request does not contain valid JSON",e); LOG.log(WARNING,"Request does not contain valid JSON",e);
return sendContent(ex,BAD_REQUEST,"Body contains no JSON data"); return sendContent(ex,HTTP_BAD_REQUEST,"Body contains no JSON data");
} }
if (!json.has("old") || !(json.get("old") instanceof String oldpass) || oldpass.isBlank()) return sendContent(ex,UNPROCESSABLE,"old password missing!"); if (!json.has("old") || !(json.get("old") instanceof String oldpass) || oldpass.isBlank()) return sendContent(ex, HTTP_UNPROCESSABLE,"old password missing!");
if (!json.has("new") || !(json.get("new") instanceof String newpass) || newpass.isBlank()) return sendContent(ex,UNPROCESSABLE,"new password missing!"); if (!json.has("new") || !(json.get("new") instanceof String newpass) || newpass.isBlank()) return sendContent(ex, HTTP_UNPROCESSABLE,"new password missing!");
var old = Password.of(BAD_HASHER.hash(oldpass,null)); var old = Password.of(BAD_HASHER.hash(oldpass,null));
if (!user.hashedPassword().equals(old)) return sendContent(ex,UNAUTHORIZED,"Wrong password (old)"); if (!user.hashedPassword().equals(old)) return sendContent(ex,HTTP_UNAUTHORIZED,"Wrong password (old)");
if (weak(newpass)) return sendContent(ex,BAD_REQUEST,"New password too weak!"); if (weak(newpass)) return sendContent(ex,HTTP_BAD_REQUEST,"New password too weak!");
var pass = Password.of(BAD_HASHER.hash(newpass,null)); var pass = Password.of(BAD_HASHER.hash(newpass,null));
try { try {
var updated = users.save(new DbUser(user.id(), user.name(), user.email(), pass, user.theme(), user.language(), user.permissions(), null)); var updated = users.save(new DbUser(user.id(), user.name(), user.email(), pass, user.theme(), user.language(), user.permissions(), null));
@@ -183,8 +195,8 @@ public class UserModule extends PathHandler {
} }
private boolean getUser(HttpExchange ex, UmbrellaUser user) throws IOException { private boolean getUser(HttpExchange ex, UmbrellaUser user) throws IOException {
if (user != null) return sendContent(ex,OK,user); if (user != null) return sendContent(ex,user);
return sendEmptyResponse(UNAUTHORIZED,ex); return sendEmptyResponse(HTTP_UNAUTHORIZED,ex);
} }
public boolean logout(HttpExchange ex, Optional<Token> optToken) throws IOException { public boolean logout(HttpExchange ex, Optional<Token> optToken) throws IOException {
@@ -196,23 +208,23 @@ public class UserModule extends PathHandler {
} }
new SessionToken(token.toString(),"/", Instant.now().minus(1, DAYS),true).addTo(ex); new SessionToken(token.toString(),"/", Instant.now().minus(1, DAYS),true).addTo(ex);
return sendEmptyResponse(OK,ex); return sendEmptyResponse(HTTP_OK,ex);
} }
return sendEmptyResponse(UNAUTHORIZED,ex); return sendEmptyResponse(HTTP_UNAUTHORIZED,ex);
} }
private boolean postLogin(HttpExchange ex) throws IOException { private boolean postLogin(HttpExchange ex) throws IOException {
var json = json(ex); var json = json(ex);
if (!(json.has(USERNAME) && json.get(USERNAME) instanceof String username)) return sendContent(ex,UNPROCESSABLE,"Username missing"); if (!(json.has(USERNAME) && json.get(USERNAME) instanceof String username)) return sendContent(ex, HTTP_UNPROCESSABLE,"Username missing");
if (!(json.has(PASSWORD) && json.get(PASSWORD) instanceof String password)) return sendContent(ex,UNPROCESSABLE,"Password missing"); if (!(json.has(PASSWORD) && json.get(PASSWORD) instanceof String password)) return sendContent(ex, HTTP_UNPROCESSABLE,"Password missing");
if (password.isBlank()) return sendContent(ex,UNAUTHORIZED,"Password must not be blank"); if (password.isBlank()) return sendContent(ex,HTTP_UNAUTHORIZED,"Password must not be blank");
var hashedPass = Password.of(BAD_HASHER.hash(password,null)); var hashedPass = Password.of(BAD_HASHER.hash(password,null));
try { try {
var user = users.load(username, hashedPass); var user = users.load(username, hashedPass);
users.getSession(user) users.getSession(user)
.cookie() .cookie()
.addTo(ex.getResponseHeaders()); .addTo(ex.getResponseHeaders());
return sendContent(ex,200,user); return sendContent(ex,user);
} catch (UmbrellaException ue){ } catch (UmbrellaException ue){
return sendContent(ex,ue.statusCode(),ue.getMessage()); return sendContent(ex,ue.statusCode(),ue.getMessage());
} }
@@ -226,7 +238,7 @@ public class UserModule extends PathHandler {
var theme = json.has(THEME) && json.get(THEME) instanceof String t && !t.isBlank() ? t : user.theme(); var theme = json.has(THEME) && json.get(THEME) instanceof String t && !t.isBlank() ? t : user.theme();
var lang = json.has(LANGUAGE) && json.get(LANGUAGE) instanceof String l && !l.isBlank() ? l : user.language(); var lang = json.has(LANGUAGE) && json.get(LANGUAGE) instanceof String l && !l.isBlank() ? l : user.language();
var saved = users.save(new DbUser(id,name,email,pass,theme,lang, user.permissions(),null)); var saved = users.save(new DbUser(id,name,email,pass,theme,lang, user.permissions(),null));
return sendContent(ex,OK,saved); return sendContent(ex,HTTP_OK,saved);
} }
static int score(String password){ static int score(String password){

View File

@@ -2,14 +2,14 @@
package de.srsoftware.umbrella.user.model; package de.srsoftware.umbrella.user.model;
import java.util.Map;
import java.util.Set;
import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.*; import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.*;
import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.IMPERSONATE; import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.IMPERSONATE;
import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.LIST_USERS; import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.LIST_USERS;
import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.MANAGE_LOGIN_SERVICES; import static de.srsoftware.umbrella.user.model.DbUser.PERMISSION.MANAGE_LOGIN_SERVICES;
import java.util.Map;
import java.util.Set;
public class DbUser extends UmbrellaUser { public class DbUser extends UmbrellaUser {
public enum PERMISSION { public enum PERMISSION {

View File

@@ -2,9 +2,9 @@
package de.srsoftware.umbrella.web; package de.srsoftware.umbrella.web;
import static de.srsoftware.tools.Optionals.nullable; import static de.srsoftware.tools.Optionals.nullable;
import static de.srsoftware.umbrella.core.ResponseCode.NOT_FOUND;
import static java.lang.System.Logger.Level.DEBUG; import static java.lang.System.Logger.Level.DEBUG;
import static java.lang.System.Logger.Level.WARNING; import static java.lang.System.Logger.Level.WARNING;
import static java.net.HttpURLConnection.HTTP_NOT_FOUND;
import com.sun.net.httpserver.HttpExchange; import com.sun.net.httpserver.HttpExchange;
import de.srsoftware.tools.Path; import de.srsoftware.tools.Path;
@@ -52,7 +52,7 @@ public class WebHandler extends PathHandler {
return sendContent(addCors(ex),bos.toByteArray()); return sendContent(addCors(ex),bos.toByteArray());
} catch (Exception e) { } catch (Exception e) {
LOG.log(WARNING,"Failed to load {0}",url); LOG.log(WARNING,"Failed to load {0}",url);
return sendContent(ex,NOT_FOUND,"Failed to load "+url); return sendContent(ex,HTTP_NOT_FOUND,"Failed to load "+url);
} }
} }
} }