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
|
/*
cadaver, command-line DAV client
Copyright (C) 1999-2001, Joe Orton <joe@manyfish.co.uk>,
Portions are:
Copyright (C) 85, 88, 90, 91, 1995-1999 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "config.h"
#include <time.h>
#include <sys/types.h>
#include <ne_basic.h>
#include <ne_uri.h>
#include "i18n.h"
#include "cadaver.h"
#include "utils.h"
/* Returns non-zero if given resource is not a collection resource.
* This function MAY make a request to the server. */
enum resource_type getrestype(const char *uri)
{
struct resource *res = NULL;
int ret = 0;
/* TODO: just request resourcetype here. */
ret = fetch_resource_list(session.sess, uri, NE_DEPTH_ZERO, 1, &res);
if (ret == NE_OK) {
if (res != NULL && ne_path_compare(uri, res->uri) == 0) {
ret = res->type;
} else {
/* FIXME: this error occurs when you do open /foo and get
* the response for /foo/ back. */
ne_set_error(session.sess,
_("Did not find a collection resource."));
ret = resr_error;
}
} else {
ret = resr_error;
}
free_resource_list(res);
return ret;
}
char *format_time(time_t when)
{
const char *fmt;
static char ret[256];
struct tm *local;
time_t current_time;
if (when == (time_t)-1) {
/* Happens on lock-null resources */
return " (unknown) ";
}
/* from GNU fileutils... this section is
*
*/
current_time = time(NULL);
if (current_time > when + 6L * 30L * 24L * 60L * 60L /* Old. */
|| current_time < when - 60L * 60L) {
/* The file is fairly old or in the future. POSIX says the
cutoff is 6 months old; approximate this by 6*30 days.
Allow a 1 hour slop factor for what is considered "the
future", to allow for NFS server/client clock disagreement.
Show the year instead of the time of day. */
fmt = "%b %e %Y";
} else {
fmt = "%b %e %H:%M";
}
local = localtime(&when);
if (local != NULL) {
if (strftime(ret, 256, fmt, local)) {
return ret;
}
}
return "???";
}
|