AccessControl.hpp
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:3k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #ifndef _ACCESSCONTROL_H_
  23. #define _ACCESSCONTROL_H_
  24. #include "VXItypes.h"
  25. #include <list>
  26. #include <xercesc/dom/DOMDocument.hpp>
  27. /**
  28.  * Handles access-control ProcessingInstruction elements
  29.  * in an XML document fetched via the &lt;data&gt; tag.
  30.  */
  31. class AccessControl
  32. {
  33. public:
  34.   /**
  35.    * @param defAccess The default access used when there
  36.    *                  are no access-control elements, or
  37.    *                  there are no "allow" or "deny"
  38.    *                  attributes.
  39.    */
  40.   AccessControl(bool defAccess);
  41.   AccessControl(bool defAccess, xercesc::DOMDocument *doc);
  42.   /**
  43.    * Add hosts to the allow list.
  44.    * @param allow A space delimited list of host/IP names
  45.    */
  46.   void addAllow(const vxistring &allow);
  47.   /**
  48.    * Add hosts to the denylist.
  49.    * @param deny A space delimited list of host/IP names
  50.    */
  51.   void addDeny(const vxistring &deny);
  52.   /**
  53.    * Determines whether the host in the URL can
  54.    * access the data.
  55.    */
  56.   bool canAccess(const vxistring &url) const;
  57. private:
  58.   class Entry
  59.   {
  60.   public:
  61.     Entry(const vxistring &data);
  62. bool match(const vxistring &host) const;
  63. int bestmatch(const vxistring &host) const;
  64. bool isWild() const { return _isWild; }
  65.   private:
  66.     vxistring _data;
  67. bool      _isWild;
  68.   };
  69.   typedef std::list<Entry> EntryList;
  70. private:
  71.   vxistring getValue(const vxistring &attr, const vxistring &data) const;
  72.   void addEntries(const vxistring &data, EntryList &list);
  73.   bool parseURL(const vxistring &url, vxistring &proto, vxistring &host) const;
  74.   EntryList _allowList;
  75.   EntryList _denyList;
  76.   bool      _default;
  77. };
  78. #endif