/* Copyright (c) 2005-2009 by Jakob Schroeter This file is part of the gloox library. http://camaya.net/gloox This software is distributed under a license. The full license agreement can be found in the file LICENSE in this distribution. This software may not be copied, modified, sold or distributed other than expressed in the named license agreement. This software is distributed without any warranty. */ #include "jid.h" #include "prep.h" #include "gloox.h" #include "util.h" namespace gloox { bool JID::setJID( const std::string& jid ) { if ( jid.empty() ) { m_bare = m_full = m_server = m_username = m_serverRaw = m_resource = EmptyString; m_valid = false; return false; } const std::string::size_type at = jid.find( '@' ); const std::string::size_type slash = jid.find( '/', at == std::string::npos ? 0 : at ); if( at != std::string::npos && !( m_valid = prep::nodeprep( jid.substr( 0, at ), m_username ) ) ) return false; m_serverRaw = jid.substr( at == std::string::npos ? 0 : at + 1, slash - at - 1 ); if( !( m_valid = prep::nameprep( m_serverRaw, m_server ) ) ) return false; if( slash != std::string::npos && !( m_valid = prep::resourceprep( jid.substr( slash + 1 ), m_resource ) ) ) return false; setStrings(); return m_valid; } bool JID::setUsername( const std::string& uname ) { m_valid = prep::nodeprep( uname, m_username ); setStrings(); return m_valid; } bool JID::setServer( const std::string& serv ) { m_serverRaw = serv; m_valid = prep::nameprep( m_serverRaw, m_server ); setStrings(); return m_valid; } bool JID::setResource( const std::string& res ) { m_valid = prep::resourceprep( res, m_resource ); setFull(); return m_valid; } void JID::setFull() { m_full = bare(); if( !m_resource.empty() ) m_full += '/' + m_resource; } void JID::setBare() { if( !m_username.empty() ) m_bare = m_username + '@'; else m_bare = EmptyString; m_bare += m_server; } std::string JID::escapeNode( const std::string& node ) { std::string escaped = node; util::replaceAll( escaped, "\\", "\\5c" ); util::replaceAll( escaped, " ", "\\20" ); util::replaceAll( escaped, "\"", "\\22" ); util::replaceAll( escaped, "&", "\\26" ); util::replaceAll( escaped, "'", "\\27" ); util::replaceAll( escaped, "/", "\\2f" ); util::replaceAll( escaped, ":", "\\3a" ); util::replaceAll( escaped, "<", "\\3c" ); util::replaceAll( escaped, ">", "\\3e" ); util::replaceAll( escaped, "@", "\\40" ); return escaped; } std::string JID::unescapeNode( const std::string& node ) { std::string unescaped = node; util::replaceAll( unescaped, "\\20", " " ); util::replaceAll( unescaped, "\\22", "\"" ); util::replaceAll( unescaped, "\\26", "&" ); util::replaceAll( unescaped, "\\27", "'" ); util::replaceAll( unescaped, "\\2f", "/" ); util::replaceAll( unescaped, "\\3a", ":" ); util::replaceAll( unescaped, "\\3c", "<" ); util::replaceAll( unescaped, "\\3e", ">" ); util::replaceAll( unescaped, "\\40", "@" ); util::replaceAll( unescaped, "\\5c", "\\" ); return unescaped; } }