caniadd/src/cmd_add.c

186 lines
5.1 KiB
C

#include <sys/stat.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
#include <time.h>
#include "cmd.h"
#include "error.h"
#include "uio.h"
#include "api.h"
#include "config.h"
#include "ed2k_util.h"
#include "cache.h"
#include "util.h"
static enum error cmd_add_update(uint64_t lid)
{
enum error err;
struct api_result res;
struct api_mylistadd_opts mods;
err = api_cmd_mylist(lid, &res);
if (err != NOERR)
return err;
mods.state = res.mylist.state;
mods.state_set = true;
mods.watched = res.mylist.viewdate != 0;
mods.watched_set = true;
if (mods.watched) {
mods.wdate = res.mylist.viewdate;
mods.wdate_set = true;
}
err = cache_update(lid, &mods);
return err;
}
static enum error cmd_add_cachecheck(const char *path, const struct stat *st,
void *data)
{
struct cache_entry ce;
const char *bname = util_basename(path);
enum error err;
err = cache_get(bname, st->st_size,
CACHE_S_LID | CACHE_S_WATCHDATE | CACHE_S_MODDATE, &ce);
if (err == NOERR) {
/* We could get the entry, so it exists already */
uio_user("This file (%s) with size (%lu) already exists in cache."
" Skipping hashing", bname, st->st_size);
/* Update time is older than 5 days and it's not watched yet */
if (ce.wdate == 0 && ce.moddate - time(NULL) > 5 * 24 * 60 * 60) {
uio_debug("Updating entry with id: %lu", ce.lid);
if (cmd_add_update(ce.lid) != NOERR) {
uio_warning("Cannot update file that is in cache");
}
}
return ED2KUTIL_DONTHASH;
} else if (err != ERR_CACHE_NO_EXISTS) {
uio_error("Some error when trying to get from cache: %s",
error_to_string(err));
return ED2KUTIL_DONTHASH;
}
uio_user("Hashing %s", path);
return NOERR;
}
static enum error cmd_add_apisend(const char *path, const uint8_t *hash,
const struct stat *st, void *data)
{
struct api_result r;
struct api_mylistadd_opts *mopt = (struct api_mylistadd_opts *)data;
if (api_cmd_mylistadd(st->st_size, hash, mopt, &r)
!= NOERR)
return ERR_CMD_FAILED;
if (r.code == APICODE_FILE_ALREADY_IN_MYLIST) {
struct api_mylist_result *x = &r.mylist;
uio_warning("File already added! Adding it to cache");
uio_debug("File info: lid: %ld, fid: %ld, eid: %ld, aid: %ld,"
" gid: %ld, date: %ld, viewdate: %ld, state: %d,"
" filestate: %d\nstorage: %s\nsource: %s\nother: %s",
x->lid, x->fid, x->eid, x->aid, x->gid, x->date, x->viewdate,
x->state, x->filestate, x->storage, x->source, x->other);
cache_add(x->lid, util_basename(path), st->st_size, hash, x->viewdate,
x->state);
if (x->storage)
free(x->storage);
if (x->source)
free(x->source);
if (x->other)
free(x->other);
return NOERR;
}
if (r.code == APICODE_NO_SUCH_FILE) {
uio_error("This file does not exists in the AniDB databse: %s",
path);
return NOERR;
}
if (r.code != APICODE_MYLIST_ENTRY_ADDED) {
uio_error("Mylistadd failure: %hu", r.code);
return ERR_CMD_FAILED;
}
uio_user("Succesfully added!");
uio_debug("New mylist id is: %ld", r.mylistadd.new_id);
uint64_t wdate = 0;
if (mopt->watched_set && mopt->watched) {
if (mopt->wdate_set)
wdate = mopt->wdate;
else
wdate = time(NULL);
}
cache_add(r.mylistadd.new_id, util_basename(path), st->st_size, hash,
wdate, mopt->state_set ? mopt->state : MYLIST_STATE_INTERNAL);
return NOERR;
}
enum error cmd_add(void *data)
{
struct api_mylistadd_opts mopt = {0};
struct ed2k_util_opts ed2k_opts = {
.pre_hash_fn = cmd_add_cachecheck,
.post_hash_fn = cmd_add_apisend,
.data = &mopt,
};
bool *watched;
const char **wdate_str;
enum error err = NOERR;
int fcount;
fcount = config_get_nonopt_count();
if (fcount == 0) {
uio_error("No files specified");
return ERR_CMD_ARG;
}
if (config_get("watched", (void**)&watched) == NOERR && *watched) {
mopt.watched = *watched;
mopt.watched_set = true;
if (config_get("wdate", (void**)&wdate_str) == NOERR) {
uint64_t wdate = util_iso2unix(*wdate_str);
if (wdate == 0) {
uio_error("Invalid time value: '%s'", *wdate_str);
return ERR_CMD_ARG;
}
mopt.wdate = wdate;
mopt.wdate_set = true;
}
}
mopt.state = MYLIST_STATE_INTERNAL;
mopt.state_set = true;
for (int i = 0; i < fcount; i++) {
err = ed2k_util_iterpath(config_get_nonopt(i), &ed2k_opts);
if (err != NOERR)
break;
}
return err;
}
enum error cmd_add_argcheck()
{
if (config_get_nonopt_count() == 0) {
uio_error("No files specified");
return ERR_CMD_ARG;
}
return NOERR;
}