Exemplo n.º 1
0
	def config(self):
		sm_logger.debug("****")
		try:
			configData = open(self.configFile,"r");
		except Exception, e:
			sm_logger.debug("没有找到" + self.configFile + ":"+e);
			sys.exit();
Exemplo n.º 2
0
	def handle(self, postStr):
		"""处理提交过来的消息内容
		@param postStr: 提交过来的消息内容。消息内容应该是微信规定XML格式。
		"""
		sm_logger.debug("****")
		sm_logger.debug("postStr:" + postStr)
		self.pushMsg = self._pushMsgParser(postStr)
		if self.pushMsg:
			self._pushMsgHandle()
Exemplo n.º 3
0
    def handle(self, postStr):
        """处理提交过来的消息内容
		@param postStr: 提交过来的消息内容。消息内容应该是微信规定XML格式。
		"""
        sm_logger.debug("****")
        sm_logger.debug("postStr:" + postStr)
        self.pushMsg = self._pushMsgParser(postStr)
        if self.pushMsg:
            self._pushMsgHandle()
Exemplo n.º 4
0
	def templates(self):
		sm_logger.debug("****")
		section = "templates"
		options = self.config.options(section)

		num = len(options)
		for x in range(num):
			option = options[x]
			TEMPLATES[option] = self.config.get(section,option)

		sm_logger.debug(TEMPLATES)
Exemplo n.º 5
0
	def _pushMsgHandle(self):
		"""处理提交过来的消息对象"""
		sm_logger.debug("****")
		if self.pushMsg.msgType == PUSH_MSG_TYPE['text']: #如果是文本类型
			command = self.pushMsg.content.strip()
			if command:
				configSection = self._getConfigSection(command)

			if configSection: #如果消息配置项存在
				self._redirect(configSection)
			else:
				error_msg = self.config.get('exception','error')
				self.replyMsg = self._makeExceptionReplyMsg(error_msg)
Exemplo n.º 6
0
    def _pushMsgHandle(self):
        """处理提交过来的消息对象"""
        sm_logger.debug("****")
        if self.pushMsg.msgType == PUSH_MSG_TYPE['text']:  #如果是文本类型
            command = self.pushMsg.content.strip()
            if command:
                configSection = self._getConfigSection(command)

            if configSection:  #如果消息配置项存在
                self._redirect(configSection)
            else:
                error_msg = self.config.get('exception', 'error')
                self.replyMsg = self._makeExceptionReplyMsg(error_msg)
Exemplo n.º 7
0
	def urlPatterns(self):
		sm_logger.debug("****")

		section = "url-patterns"
		options = self.config.options(section)

		num = len(options)
		urlPatterns = list()
		for x in range(num):
			option = options[x]
			pattern = (self.config.get(section,option),option)
			urlPatterns.append(pattern)

		sm_logger.debug(urlPatterns)
		return urlPatterns
Exemplo n.º 8
0
class TextMessage():
    """文本回复消息对象"""
    msgType = ""

    def msgHandle(self, pushMsg, configSection):
        """处理文本信息
		@param pushMsg: 回复消息对象
		@param configSection: 消息配置项
		"""
        sm_logger.debug("pushMsg:%s" % pushMsg.__dict__)
        sm_logger.debug("configSection:%s" % configSection)
        replyMsg = None

        if pushMsg and configSection:
            replyMsg = ReplyMsg()
            replyMsg.toUsername = pushMsg.fromUsername
            replyMsg.fromUsername = pushMsg.toUsername
            replyMsg.createTime = str(int(time.time()))
            replyMsg.msgType = REPLY_MSG_TYPE['text']

            try:
                content = configSection['welcome']
            except Exception, e:
                sm_logger.debug("Exception:%s" % e)
                replyMsg = None

            replyMsg.content = content

        sm_logger.debug("replyMsg:%s" % replyMsg.__dict__)
        return replyMsg
Exemplo n.º 9
0
	def _redirect(self, configSection):
		"""转发到回复消息配置的类处理
		@param configSection: 回复消息配置
		"""
		sm_logger.debug("****")

		if configSection['class']:
			handler = configSection['class']
			try:
				handler = import_object(handler)
				handler = handler()
				self.replyMsg = handler.msgHandle(self.pushMsg, configSection)
			except Exception, e:
				sm_logger.debug("Exception:%s" % e)
				error_msg = (self.config.get('exception','missing') % configSection['command'])
				self.replyMsg = self._makeExceptionReplyMsg(error_msg)
Exemplo n.º 10
0
    def _redirect(self, configSection):
        """转发到回复消息配置的类处理
		@param configSection: 回复消息配置
		"""
        sm_logger.debug("****")

        if configSection['class']:
            handler = configSection['class']
            try:
                handler = import_object(handler)
                handler = handler()
                self.replyMsg = handler.msgHandle(self.pushMsg, configSection)
            except Exception, e:
                sm_logger.debug("Exception:%s" % e)
                error_msg = (self.config.get('exception', 'missing') %
                             configSection['command'])
                self.replyMsg = self._makeExceptionReplyMsg(error_msg)
Exemplo n.º 11
0
    def _makeNewsReplyMsg(self):
        sm_logger.debug("****")

        articleCount = len(self.replyMsg.articles)
        if articleCount > 0:

            itemTpl = "\
					<item>\n\
						<Title><![CDATA[%s]]></Title>\n\
						<Description><![CDATA[%s]]></Description>\n\
						<PicUrl><![CDATA[%s]]></PicUrl>\n\
						<Url><![CDATA[%s]]></Url>\n\
					</item>"

            articlesContent = ""
            for x in range(articleCount):
                itemStr = itemTpl % (self.replyMsg.articles[x].title,
                                     self.replyMsg.articles[x].description,
                                     self.replyMsg.articles[x].picUrl,
                                     self.replyMsg.articles[x].url)
                articlesContent = articlesContent + itemStr

            textTpl = "<xml>\n\
						<ToUserName><![CDATA[%s]]></ToUserName>\n\
						<FromUserName><![CDATA[%s]]></FromUserName>\n\
						<CreateTime>%s</CreateTime>\n\
						<MsgType><![CDATA[%s]]></MsgType>\n\
						<ArticleCount>%s</ArticleCount>\n\
						<Articles>\n%s\n</Articles>\n\
						</xml>"

            resultStr = textTpl % (
                self.replyMsg.toUsername, self.replyMsg.fromUsername,
                self.replyMsg.createTime, self.replyMsg.msgType, articleCount,
                articlesContent)
        else:
            error_msg = (self.config.get('exception', 'missing') %
                         self.pushMsg.content)
            self.replyMsg = self._makeExceptionReplyMsg(error_msg)
            resultStr = self._makeTextReplyMsg()

        sm_logger.debug("resultStr:%s" % resultStr)
        return resultStr
Exemplo n.º 12
0
    def _makeTextReplyMsg(self):
        sm_logger.debug("****")

        textTpl = "<xml>\n\
					<ToUserName><![CDATA[%s]]></ToUserName>\n\
					<FromUserName><![CDATA[%s]]></FromUserName>\n\
					<CreateTime>%s</CreateTime>\n\
					<MsgType><![CDATA[%s]]></MsgType>\n\
					<Content><![CDATA[%s]]></Content>\n\
					<FuncFlag>0</FuncFlag>\n\
					</xml>"

        resultStr = textTpl % (self.replyMsg.toUsername,
                               self.replyMsg.fromUsername,
                               self.replyMsg.createTime, self.replyMsg.msgType,
                               self.replyMsg.content)

        sm_logger.debug("resultStr:%s" % resultStr)
        return resultStr
Exemplo n.º 13
0
	def _makeTextReplyMsg(self):
		sm_logger.debug("****")
		
		textTpl = "<xml>\n\
					<ToUserName><![CDATA[%s]]></ToUserName>\n\
					<FromUserName><![CDATA[%s]]></FromUserName>\n\
					<CreateTime>%s</CreateTime>\n\
					<MsgType><![CDATA[%s]]></MsgType>\n\
					<Content><![CDATA[%s]]></Content>\n\
					<FuncFlag>0</FuncFlag>\n\
					</xml>"
		resultStr = textTpl % (self.replyMsg.toUsername, 
								self.replyMsg.fromUsername, 
								self.replyMsg.createTime, 
								self.replyMsg.msgType, 
								self.replyMsg.content)

		sm_logger.debug("resultStr:%s" % resultStr)
		return resultStr
Exemplo n.º 14
0
	def _makeNewsReplyMsg(self):
		sm_logger.debug("****")
		
		articleCount = len(self.replyMsg.articles)
		if articleCount > 0:

			itemTpl = "\
					<item>\n\
						<Title><![CDATA[%s]]></Title>\n\
						<Description><![CDATA[%s]]></Description>\n\
						<PicUrl><![CDATA[%s]]></PicUrl>\n\
						<Url><![CDATA[%s]]></Url>\n\
					</item>"

			articlesContent = ""
			for x in range(articleCount):
				itemStr = itemTpl % (self.replyMsg.articles[x].title,
										self.replyMsg.articles[x].description,
										self.replyMsg.articles[x].picUrl,
										self.replyMsg.articles[x].url)
				articlesContent = articlesContent + itemStr

			textTpl = "<xml>\n\
						<ToUserName><![CDATA[%s]]></ToUserName>\n\
						<FromUserName><![CDATA[%s]]></FromUserName>\n\
						<CreateTime>%s</CreateTime>\n\
						<MsgType><![CDATA[%s]]></MsgType>\n\
						<ArticleCount>%s</ArticleCount>\n\
						<Articles>\n%s\n</Articles>\n\
						</xml>"
			resultStr = textTpl % (self.replyMsg.toUsername, 
									self.replyMsg.fromUsername, 
									self.replyMsg.createTime, 
									self.replyMsg.msgType,
									articleCount, 
									articlesContent)
		else:
			error_msg = (self.config.get('exception','missing') % self.pushMsg.content)
			self.replyMsg = self._makeExceptionReplyMsg(error_msg)
			resultStr = self._makeTextReplyMsg()

		sm_logger.debug("resultStr:%s" % resultStr)
		return resultStr
Exemplo n.º 15
0
    def msgHandle(self, pushMsg, configSection):
        """处理文本信息
		@param pushMsg: 回复消息对象
		@param configSection: 消息配置项
		"""
        sm_logger.debug("pushMsg:%s" % pushMsg.__dict__)
        sm_logger.debug("configSection:%s" % configSection)
        replyMsg = None

        if pushMsg and configSection:
            replyMsg = ReplyMsg()
            replyMsg.toUsername = pushMsg.fromUsername
            replyMsg.fromUsername = pushMsg.toUsername
            replyMsg.createTime = str(int(time.time()))
            replyMsg.msgType = REPLY_MSG_TYPE['news']

            try:
                articlesHandler = configSection['articles']
                articlesHandler = import_object(articlesHandler)
                articlesHandler = articlesHandler()
                replyMsg.articles = articlesHandler.queryArticles(
                    pushMsg, configSection)
            except Exception, e:
                sm_logger.debug("Exception:%s" % e)
                replyMsg = None
Exemplo n.º 16
0
class NewsMessage():
    """图文回复消息对象
		1. 消息配置文件设置

			>>> articles = wxplatform.query.ProductInfo.ProductInfo 

		2. 实现类的接口

			>>> 
			from ..MessageManage import NewsArticle
			class ProductInfo(object):	
				def queryArticles(self, pushMsg, configSection): #返回NewsArticle的list
	"""
    msgType = ""

    def msgHandle(self, pushMsg, configSection):
        """处理文本信息
		@param pushMsg: 回复消息对象
		@param configSection: 消息配置项
		"""
        sm_logger.debug("pushMsg:%s" % pushMsg.__dict__)
        sm_logger.debug("configSection:%s" % configSection)
        replyMsg = None

        if pushMsg and configSection:
            replyMsg = ReplyMsg()
            replyMsg.toUsername = pushMsg.fromUsername
            replyMsg.fromUsername = pushMsg.toUsername
            replyMsg.createTime = str(int(time.time()))
            replyMsg.msgType = REPLY_MSG_TYPE['news']

            try:
                articlesHandler = configSection['articles']
                articlesHandler = import_object(articlesHandler)
                articlesHandler = articlesHandler()
                replyMsg.articles = articlesHandler.queryArticles(
                    pushMsg, configSection)
            except Exception, e:
                sm_logger.debug("Exception:%s" % e)
                replyMsg = None

        sm_logger.debug("replyMsg:%s" % replyMsg.__dict__)
        return replyMsg
Exemplo n.º 17
0
class MessageConfigParser:
	def __init__(self):
		configFile = MESSAGE_CONFIG_FILE
		self.configFile = configFile

	def config(self):
		sm_logger.debug("****")
		try:
			configData = open(self.configFile,"r");
		except Exception, e:
			sm_logger.debug("没有找到" + self.configFile + ":"+e);
			sys.exit();

		try:
			config = ConfigParser.ConfigParser();
			config.readfp(configData);
			configData.close();
		except ConfigParser.Error, e:
			sm_logger.debug("配置文件格式错误:" + e);
Exemplo n.º 18
0
class WebConfigParser:
	"""web配置文件解析"""

	def __init__(self, configFile):
		self.config = self.__getConfig(configFile)

	def __getConfig(self,configFile):
		try:
			configData = open(configFile,"r");
		except Exception, e:
			sm_logger.debug("没有找到" + configFile + "!")
			sys.exit()

		try:
			config = ConfigParser.ConfigParser();
			config.optionxform = str # 区别大小写
			config.readfp(configData);
			configData.close();
		except ConfigParser.Error, e:
			sm_logger.debug("配置文件格式错误:" , e)
			sys.exit()
Exemplo n.º 19
0
	def _getConfigSection(self,command):
		"""根据命令从消息配置文件中查找配置项
		@param command: 用户从微信发送的命令 
		"""
		sm_logger.debug("****")
		section = None
		options = None
		configSection = None
		sections = self.config.sections()
		num = len(sections)
		for x in range(num):
			section = sections[x]
			config_command = ""
			try:
				config_command = self.config.get(section,'command')
			except Exception, e:
				sm_logger.debug("Exception:%s" % e)

			try:
				self.config.get(section,'class')
			except Exception, e:
				sm_logger.debug("Exception:%s" % e)
Exemplo n.º 20
0
    def _getConfigSection(self, command):
        """根据命令从消息配置文件中查找配置项
		@param command: 用户从微信发送的命令 
		"""
        sm_logger.debug("****")
        section = None
        options = None
        configSection = None
        sections = self.config.sections()
        num = len(sections)
        for x in range(num):
            section = sections[x]
            config_command = ""
            try:
                config_command = self.config.get(section, 'command')
            except Exception, e:
                sm_logger.debug("Exception:%s" % e)

            try:
                self.config.get(section, 'class')
            except Exception, e:
                sm_logger.debug("Exception:%s" % e)
Exemplo n.º 21
0
	def msgHandle(self, pushMsg, configSection):
		"""处理文本信息
		@param pushMsg: 回复消息对象
		@param configSection: 消息配置项
		"""
		sm_logger.debug("pushMsg:%s" % pushMsg.__dict__)
		sm_logger.debug("configSection:%s" % configSection)
		replyMsg = None

		if pushMsg and configSection:
			replyMsg = ReplyMsg()
			replyMsg.toUsername = pushMsg.fromUsername
			replyMsg.fromUsername = pushMsg.toUsername
			replyMsg.createTime = str(int(time.time()))
			replyMsg.msgType = REPLY_MSG_TYPE['text']

			try:
				content = configSection['welcome']
			except Exception, e:
				sm_logger.debug("Exception:%s" % e)
				replyMsg = None

			replyMsg.content = content
Exemplo n.º 22
0
	def getReplyMsg(self):
		"""返回回复微信的文本消息
		@return: 符合微信规范要求的xml文本格式。或是返回空 
		"""
		sm_logger.debug("****")
		replyMsgStr = ""

		if self.replyMsg:
			if self.replyMsg.msgType == REPLY_MSG_TYPE['text']:
				replyMsgStr = self._makeTextReplyMsg()
			# elif self.replyMsg.msgType == REPLY_MSG_TYPE['music']:
			# 	replyMsgStr = self._makeMusicReplyMsg()
			elif self.replyMsg.msgType == REPLY_MSG_TYPE['news']:
				replyMsgStr = self._makeNewsReplyMsg()
			else:
				sm_logger.debug("未知类型:%s" % self.replyMsg.msgType)
		else:
			error_msg = (self.config.get('exception','missing') % self.pushMsg.content)
			self.replyMsg = self._makeExceptionReplyMsg(error_msg)
			replyMsgStr = self._makeTextReplyMsg()

		sm_logger.debug("replyMsgStr:%s" % replyMsgStr)
		return replyMsgStr
Exemplo n.º 23
0
	def msgHandle(self, pushMsg, configSection):
		"""处理文本信息
		@param pushMsg: 回复消息对象
		@param configSection: 消息配置项
		"""
		sm_logger.debug("pushMsg:%s" % pushMsg.__dict__)
		sm_logger.debug("configSection:%s" % configSection)
		replyMsg = None

		if pushMsg and configSection:
			replyMsg = ReplyMsg()
			replyMsg.toUsername = pushMsg.fromUsername
			replyMsg.fromUsername = pushMsg.toUsername
			replyMsg.createTime = str(int(time.time()))
			replyMsg.msgType = REPLY_MSG_TYPE['news']

			try:
				articlesHandler = configSection['articles']
				articlesHandler = import_object(articlesHandler)
				articlesHandler = articlesHandler()
				replyMsg.articles = articlesHandler.queryArticles(pushMsg, configSection)
			except Exception, e:
				sm_logger.debug("Exception:%s" % e)
				replyMsg = None
Exemplo n.º 24
0
    def getReplyMsg(self):
        """返回回复微信的文本消息
		@return: 符合微信规范要求的xml文本格式。或是返回空 
		"""
        sm_logger.debug("****")
        replyMsgStr = ""

        if self.replyMsg:
            if self.replyMsg.msgType == REPLY_MSG_TYPE['text']:
                replyMsgStr = self._makeTextReplyMsg()
            # elif self.replyMsg.msgType == REPLY_MSG_TYPE['music']:
            # 	replyMsgStr = self._makeMusicReplyMsg()
            elif self.replyMsg.msgType == REPLY_MSG_TYPE['news']:
                replyMsgStr = self._makeNewsReplyMsg()
            else:
                sm_logger.debug("未知类型:%s" % self.replyMsg.msgType)
        else:
            error_msg = (self.config.get('exception', 'missing') %
                         self.pushMsg.content)
            self.replyMsg = self._makeExceptionReplyMsg(error_msg)
            replyMsgStr = self._makeTextReplyMsg()

        sm_logger.debug("replyMsgStr:%s" % replyMsgStr)
        return replyMsgStr
Exemplo n.º 25
0
                self.config.get(section, 'class')
            except Exception, e:
                sm_logger.debug("Exception:%s" % e)

            if command == config_command:
                options = self.config.options(sections[x])
                break

        if options:
            configSection = dict()
            num = len(options)
            for x in range(num):
                configSection[options[x]] = self.config.get(
                    section, options[x])

        sm_logger.debug("return:%s" % configSection)
        return configSection

    def _redirect(self, configSection):
        """转发到回复消息配置的类处理
		@param configSection: 回复消息配置
		"""
        sm_logger.debug("****")

        if configSection['class']:
            handler = configSection['class']
            try:
                handler = import_object(handler)
                handler = handler()
                self.replyMsg = handler.msgHandle(self.pushMsg, configSection)
            except Exception, e:
Exemplo n.º 26
0
 def __init__(self):
     sm_logger.debug("****")
     messageConfig = MessageConfigParser()
     self.config = messageConfig.config()
     self.replyMsg = ReplyMsg()
Exemplo n.º 27
0
	def _pushMsgParser(self,postStr):
		"""将微信推送的消息解析成对象
		@param postStr: 微信发来的POST请求文本内容
		@return: 解析后的微信消息对象
		"""
		sm_logger.debug("postStr:%s" % postStr)

		postObj = ET.fromstring(postStr)
		pushMsg = None
		try:
			pushMsg = PushMsg()
			fromUsername = postObj.find("FromUserName").text
			pushMsg.fromUsername = fromUsername

			toUsername = postObj.find("ToUserName").text
			pushMsg.toUsername = toUsername

			createTime = postObj.find("CreateTime").text
			pushMsg.createTime = createTime

			msgType = postObj.find("MsgType").text
			pushMsg.msgType = msgType

			msgId = postObj.find("MsgId").text
			pushMsg.msgId = msgId

			if msgType == PUSH_MSG_TYPE['text']: #文本消息
				content = postObj.find("Content").text
				content = content.encode('utf-8')
				pushMsg.content = content

			elif msgType == PUSH_MSG_TYPE['image']: #图片消息
				picUrl = postObj.find("PicUrl").text
				pushMsg.content = content

			elif msgType == PUSH_MSG_TYPE['location']: #地理位置消息
				location_X = postObj.find("Location_X").text
				location_Y = postObj.find("Location_Y").text
				scale = postObj.find("Scale").text
				label = postObj.find("Label").text
				pushMsg.location_X = location_X
				pushMsg.location_Y = location_Y
				pushMsg.scale = scale
				pushMsg.label = label

			elif msgType == PUSH_MSG_TYPE['link']: #链接消息
				title = postObj.find("Title").text
				description = postObj.find("Description").text
				url = postObj.find("Url").text
				pushMsg.title = title
				pushMsg.description = description
				pushMsg.url = url

			elif msgType == PUSH_MSG_TYPE['event']: #事件推送
				event = postObj.find("Event").text
				eventKey = postObj.find("EventKey").text
				pushMsg.event = event
				pushMsg.eventKey = eventKey

			else:
				sm_logger.debug("未知类型:%s"%msgType)
		except Exception, e:
			sm_logger.debug("Exception:%s" % e)
Exemplo n.º 28
0
    def _pushMsgParser(self, postStr):
        """将微信推送的消息解析成对象
		@param postStr: 微信发来的POST请求文本内容
		@return: 解析后的微信消息对象
		"""
        sm_logger.debug("postStr:%s" % postStr)

        postObj = ET.fromstring(postStr)
        pushMsg = None
        try:
            pushMsg = PushMsg()
            fromUsername = postObj.find("FromUserName").text
            pushMsg.fromUsername = fromUsername

            toUsername = postObj.find("ToUserName").text
            pushMsg.toUsername = toUsername

            createTime = postObj.find("CreateTime").text
            pushMsg.createTime = createTime

            msgType = postObj.find("MsgType").text
            pushMsg.msgType = msgType

            msgId = postObj.find("MsgId").text
            pushMsg.msgId = msgId

            if msgType == PUSH_MSG_TYPE['text']:  #文本消息
                content = postObj.find("Content").text
                content = content.encode('utf-8')
                pushMsg.content = content

            elif msgType == PUSH_MSG_TYPE['image']:  #图片消息
                picUrl = postObj.find("PicUrl").text
                pushMsg.content = content

            elif msgType == PUSH_MSG_TYPE['location']:  #地理位置消息
                location_X = postObj.find("Location_X").text
                location_Y = postObj.find("Location_Y").text
                scale = postObj.find("Scale").text
                label = postObj.find("Label").text
                pushMsg.location_X = location_X
                pushMsg.location_Y = location_Y
                pushMsg.scale = scale
                pushMsg.label = label

            elif msgType == PUSH_MSG_TYPE['link']:  #链接消息
                title = postObj.find("Title").text
                description = postObj.find("Description").text
                url = postObj.find("Url").text
                pushMsg.title = title
                pushMsg.description = description
                pushMsg.url = url

            elif msgType == PUSH_MSG_TYPE['event']:  #事件推送
                event = postObj.find("Event").text
                eventKey = postObj.find("EventKey").text
                pushMsg.event = event
                pushMsg.eventKey = eventKey

            else:
                sm_logger.debug("未知类型:%s" % msgType)
        except Exception, e:
            sm_logger.debug("Exception:%s" % e)
Exemplo n.º 29
0
	def __init__(self):
		sm_logger.debug("****")
		messageConfig = MessageConfigParser()
		self.config = messageConfig.config()
		self.replyMsg = ReplyMsg()
Exemplo n.º 30
0
			try:
				self.config.get(section,'class')
			except Exception, e:
				sm_logger.debug("Exception:%s" % e)

			if command == config_command:
				options = self.config.options(sections[x])
				break

		if options:
			configSection  = dict()
			num = len(options)
			for x in range(num):
				configSection[options[x]] = self.config.get(section, options[x])

		sm_logger.debug("return:%s" % configSection)
		return configSection

	def _redirect(self, configSection):
		"""转发到回复消息配置的类处理
		@param configSection: 回复消息配置
		"""
		sm_logger.debug("****")

		if configSection['class']:
			handler = configSection['class']
			try:
				handler = import_object(handler)
				handler = handler()
				self.replyMsg = handler.msgHandle(self.pushMsg, configSection)
			except Exception, e:
Exemplo n.º 31
0
	def __getConfig(self,configFile):
		try:
			configData = open(configFile,"r");
		except Exception, e:
			sm_logger.debug("没有找到" + configFile + "!")
			sys.exit()