bookmark.c
上传用户:tjfeida
上传日期:2013-03-10
资源大小:1917k
文件大小:4k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. /*****************************************************************************/
  2. /*  bookmark.c - functions for connecting to a site via a bookmark           */
  3. /*  Copyright (C) 1998-2002 Brian Masney <masneyb@gftp.org>                  */
  4. /*                                                                           */
  5. /*  This program is free software; you can redistribute it and/or modify     */
  6. /*  it under the terms of the GNU General Public License as published by     */
  7. /*  the Free Software Foundation; either version 2 of the License, or        */
  8. /*  (at your option) any later version.                                      */
  9. /*                                                                           */
  10. /*  This program is distributed in the hope that it will be useful,          */
  11. /*  but WITHOUT ANY WARRANTY; without even the implied warranty of           */
  12. /*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            */
  13. /*  GNU General Public License for more details.                             */
  14. /*                                                                           */
  15. /*  You should have received a copy of the GNU General Public License        */
  16. /*  along with this program; if not, write to the Free Software              */
  17. /*  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111 USA      */
  18. /*****************************************************************************/
  19. #include "gftp.h"
  20. static const char cvsid[] = "$Id: bookmark.c,v 1.3 2002/11/06 02:20:23 masneyb Exp $";
  21. static int
  22. bookmark_parse_url (gftp_request * request, const char * url)
  23. {
  24.   gftp_bookmarks * tempentry;
  25.   const char * pos;
  26.   int i;
  27.   g_return_val_if_fail (request != NULL, -2);
  28.   g_return_val_if_fail (url != NULL, -2);
  29.   
  30.   if ((pos = strstr (url, "://")) != NULL)
  31.     pos += 3;
  32.   else
  33.     pos = url;
  34.   if ((tempentry = g_hash_table_lookup (bookmarks_htable, pos)) == NULL)
  35.     {
  36.       request->logging_function (gftp_logging_error, request->user_data,
  37.                                  _("Error: Could not find bookmark %sn"), pos);
  38.       return (-2);
  39.     }
  40.   else if (tempentry->hostname == NULL || *tempentry->hostname == '' ||
  41.            tempentry->user == NULL || *tempentry->user == '')
  42.     {
  43.       request->logging_function (gftp_logging_error, request->user_data,
  44.                                  _("Bookmarks Error: There are some missing entries in this bookmark. Make sure you have a hostname and usernamen"));
  45.       return (-2);
  46.     }
  47.   gftp_set_username (request, tempentry->user);
  48.   if (strncmp (tempentry->pass, "@EMAIL@", 7) == 0)
  49.     gftp_set_password (request, emailaddr);
  50.   else
  51.     gftp_set_password (request, tempentry->pass);
  52.   if (tempentry->acct != NULL)
  53.     gftp_set_account (request, tempentry->acct);
  54.   gftp_set_hostname (request, tempentry->hostname);
  55.   gftp_set_directory (request, tempentry->remote_dir);
  56.   gftp_set_port (request, tempentry->port);
  57.   gftp_set_sftpserv_path (request, tempentry->sftpserv_path);
  58.   for (i = 0; gftp_protocols[i].name; i++)
  59.     {
  60.       if (strcmp (gftp_protocols[i].name, tempentry->protocol) == 0)
  61.         {
  62.           gftp_protocols[i].init (request);
  63.           break;
  64.         }
  65.     }
  66.   if (!gftp_protocols[i].name)
  67.     gftp_protocols[0].init (request);
  68.   return (0);
  69. }
  70. void
  71. bookmark_init (gftp_request * request)
  72. {
  73.   g_return_if_fail (request != NULL);
  74.   request->protonum = GFTP_BOOKMARK_NUM;
  75.   request->init = bookmark_init;
  76.   request->destroy = NULL;
  77.   request->connect = NULL;
  78.   request->disconnect = NULL;
  79.   request->get_file = NULL;
  80.   request->put_file = NULL;
  81.   request->transfer_file = NULL;
  82.   request->get_next_file_chunk = NULL;
  83.   request->put_next_file_chunk = NULL;
  84.   request->end_transfer = NULL;
  85.   request->list_files = NULL;
  86.   request->get_next_file = NULL;
  87.   request->set_data_type = NULL;
  88.   request->get_file_size = NULL;
  89.   request->chdir = NULL;
  90.   request->rmdir = NULL;
  91.   request->rmfile = NULL;
  92.   request->mkdir = NULL;
  93.   request->rename = NULL;
  94.   request->chmod = NULL;
  95.   request->set_file_time = NULL;
  96.   request->site = NULL;
  97.   request->parse_url = bookmark_parse_url;
  98.   request->url_prefix = "bookmark";
  99.   request->protocol_name = "Bookmark";
  100.   request->need_hostport = 0;
  101.   request->need_userpass = 0;
  102.   request->use_threads = 0;
  103.   request->use_cache = 0;
  104.   request->always_connected = 0;
  105.   gftp_set_config_options (request);
  106. }