forked from agorise/c-ipfs
89 lines
2.5 KiB
C
89 lines
2.5 KiB
C
/**
|
|
* Handles the command line options for "ipfs name"
|
|
*/
|
|
#include <stdlib.h>
|
|
#include "libp2p/utils/logger.h"
|
|
#include "libp2p/utils/vector.h"
|
|
#include "ipfs/core/ipfs_node.h"
|
|
#include "ipfs/cmd/cli.h"
|
|
#include "ipfs/core/http_request.h"
|
|
|
|
/***
|
|
* Publish IPNS name
|
|
*/
|
|
int ipfs_name_publish(struct IpfsNode* local_node, char* name) {
|
|
// call api.
|
|
char* response = NULL;
|
|
struct HttpRequest* request = ipfs_core_http_request_new();
|
|
if (request == NULL)
|
|
return 0;
|
|
request->command = "name";
|
|
request->sub_command = "publish";
|
|
libp2p_utils_vector_add(request->arguments, name);
|
|
int retVal = ipfs_core_http_request_get(local_node, request, &response);
|
|
if (response != NULL)
|
|
free(response);
|
|
ipfs_core_http_request_free(request);
|
|
return retVal;
|
|
}
|
|
|
|
int ipfs_name_resolve(struct IpfsNode* local_node, char* name) {
|
|
// ask api
|
|
char* response = NULL;
|
|
struct HttpRequest* request = ipfs_core_http_request_new();
|
|
if (request == NULL)
|
|
return 0;
|
|
request->command = "name";
|
|
request->sub_command = "resolve";
|
|
libp2p_utils_vector_add(request->arguments, name);
|
|
int retVal = ipfs_core_http_request_get(local_node, request, &response);
|
|
if (response != NULL)
|
|
free(response);
|
|
ipfs_core_http_request_free(request);
|
|
return retVal;
|
|
}
|
|
|
|
/**
|
|
* We received a cli command "ipfs name". Do the right thing.
|
|
* @param argc number of arguments on the command line
|
|
* @param argv actual command line arguments
|
|
* @returns true(1) on success, false(0) otherwise
|
|
*/
|
|
int ipfs_name(struct CliArguments* args) {
|
|
int retVal = 0;
|
|
struct IpfsNode* client_node = NULL;
|
|
|
|
if (args->argc < (args->verb_index + 2)) {
|
|
libp2p_logger_error("name", "Not enough command line arguments. Should be \"name resolve\" or \"name publish\".\n");
|
|
goto exit;
|
|
}
|
|
|
|
char* which = args->argv[args->verb_index+1];
|
|
char* path = args->argv[args->verb_index+2];
|
|
|
|
// make sure API is running
|
|
if (!ipfs_node_offline_new(args->config_dir, &client_node)) {
|
|
libp2p_logger_error("name", "Unable to create offline node.\n");
|
|
goto exit;
|
|
}
|
|
if (client_node->mode != MODE_API_AVAILABLE) {
|
|
libp2p_logger_error("name", "API must be running.\n");
|
|
goto exit;
|
|
}
|
|
|
|
// determine what we're doing
|
|
if (strcmp(which, "publish") == 0) {
|
|
retVal = ipfs_name_publish(client_node, path);
|
|
} else if (strcmp(which, "resolve") == 0) {
|
|
retVal = ipfs_name_resolve(client_node, path);
|
|
} else {
|
|
libp2p_logger_error("name", "Nothing found on command line. Should be \"name resolve\" or \"name publish\".\n");
|
|
goto exit;
|
|
}
|
|
|
|
exit:
|
|
// shut everything down
|
|
ipfs_node_free(NULL, client_node);
|
|
|
|
return retVal;
|
|
}
|