/* * Copyright (C) 2013 Bryan Christ * 2014 Johannes Schauer * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2, as published by * the Free Software Foundation. * * 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., 51 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ #include #include #include #include #include "mfshell.h" #include "private.h" #include "account.h" #include "connection.h" #include "strings.h" int _folder_create(mfshell_t *mfshell,char *parent,char *name) { char *api_call; int retval; if(mfshell == NULL) return -1; if(mfshell->user_signature == NULL) return -1; if(mfshell->session_token == NULL) return -1; if(name == NULL) return -1; if(strlen(name) < 1) return -1; // key must either be 11 chars or "myfiles" if(parent != NULL) { if(strlen(parent) != 13) { // if it is myfiles, set paret to NULL if(strcmp(parent,"myfiles") == 0) parent = NULL; } } if(parent != NULL) { api_call = mfshell->create_signed_get(mfshell,0,"folder/create.php", "?parent_key=%s" "&foldername=%s" "&session_token=%s" "&response_format=json", parent,name,mfshell->session_token); } else { api_call = mfshell->create_signed_get(mfshell,0,"folder/create.php", "?foldername=%s", "&session_token=%s" "&response_format=json", name,mfshell->session_token); } conn_t *conn = conn_create(); retval = conn_get_buf(conn, api_call, NULL, NULL); conn_destroy(conn); return retval; }