feed2toot-docker/feed2toot/confparse.py

131 lines
5.7 KiB
Python
Raw Normal View History

2017-04-09 08:30:48 +00:00
# -*- coding: utf-8 -*-
2021-03-26 17:18:46 +00:00
# Copyright © 2015-2021 Carl Chenet <carl.chenet@ohmytux.com>
2017-04-09 08:30:48 +00:00
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# 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, see <http://www.gnu.org/licenses/
# Get values of the configuration file
'''Get values of the configuration file'''
# standard library imports
2017-07-31 13:58:30 +00:00
from configparser import SafeConfigParser
2017-04-09 08:30:48 +00:00
import logging
import os
import os.path
import sys
import re
2017-04-09 08:30:48 +00:00
# 3rd party library imports
import feedparser
2017-08-01 16:30:24 +00:00
# feed2toot library imports
from feed2toot.confparsers.cache import parsecache
2017-08-01 16:30:24 +00:00
from feed2toot.confparsers.hashtaglist import parsehashtaglist
from feed2toot.confparsers.hashtags.nohashtags import parsenotagsintoot
from feed2toot.confparsers.feedparser import parsefeedparser
from feed2toot.confparsers.lock import parselock
2018-05-30 21:24:47 +00:00
from feed2toot.confparsers.media import parsemedia
2017-08-01 16:30:24 +00:00
from feed2toot.confparsers.plugins import parseplugins
from feed2toot.confparsers.rss.ignoressl import parseignoressl
from feed2toot.confparsers.rss.pattern import parsepattern
from feed2toot.confparsers.rss.toot import parsetoot
from feed2toot.confparsers.rss.uri import parseuri
from feed2toot.confparsers.rss.urilist import parseurilist
from feed2toot.confparsers.rss.addtags import parseaddtags
from feed2toot.confparsers.rss.tootmaxlen import parsetootmaxlen
2017-08-01 16:30:24 +00:00
2017-07-31 13:58:30 +00:00
class ConfParse:
2017-04-09 08:30:48 +00:00
'''ConfParse class'''
def __init__(self, clioptions):
'''Constructor of the ConfParse class'''
self.clioptions = clioptions
self.tweetformat = ''
self.stringsep = ','
self.confs = []
self.main()
def main(self):
'''Main of the ConfParse class'''
for pathtoconfig in self.clioptions.configs:
options = {}
# read the configuration file
config = SafeConfigParser()
if not config.read(os.path.expanduser(pathtoconfig)):
sys.exit('Could not read config file')
####################
# feedparser section
####################
accept_bozo_exceptions = parsefeedparser(config)
2017-04-09 08:30:48 +00:00
###########################
# the rss section
###########################
self.tweetformat = parsetoot(config)
options['tootmaxlen'] = parsetootmaxlen(config)
#################################################
# pattern and patter_case_sensitive format option
#################################################
options['patterns'], options['patternscasesensitive'] = parsepattern(config)
#################################################
# lock file options
#################################################
options['lockfile'], options['locktimeout'] = parselock(self.clioptions.lockfile, self.clioptions.locktimeout, config)
###############################
# addtags option, default: True
###############################
options['addtags'] = parseaddtags(config)
###################
# ignore_ssl option
###################
ignore_ssl = parseignoressl(config, self.clioptions.ignore_ssl)
#################
# uri_list option
#################
feeds = []
feeds = parseurilist(config, accept_bozo_exceptions, ignore_ssl)
############
# uri option
############
if config.has_option('rss', 'uri') or self.clioptions.rss_uri:
options['rss_uri'], feed, feedname, options['nopatternurinoglobalpattern'] = parseuri(config, self.clioptions.rss_uri, feeds, ignore_ssl)
else:
if config.has_option('rss', 'no_uri_pattern_no_global_pattern'):
options['nopatternurinoglobalpattern'] = config.getboolean('rss', 'no_uri_pattern_no_global_pattern')
2017-04-09 08:30:48 +00:00
###########################
# the cache section
###########################
options['cachefile'], options['cache_limit'] = parsecache(self.clioptions.cachefile, config)
2017-04-09 08:30:48 +00:00
###########################
# the hashtaglist section
2017-04-09 08:30:48 +00:00
###########################
2017-08-01 16:30:24 +00:00
options['hashtaglist'] = parsehashtaglist(self.clioptions.hashtaglist, config)
options['notagsintoot'] = parsenotagsintoot(config)
2017-04-09 08:30:48 +00:00
###########################
2018-05-30 21:24:47 +00:00
# the media section
###########################
options['media'] = parsemedia(config)
###########################
2017-04-09 08:30:48 +00:00
# the plugins section
###########################
2017-08-01 16:30:24 +00:00
plugins = parseplugins(config)
########################################
# return the final configurations values
########################################
2017-04-09 08:30:48 +00:00
if feeds:
self.confs.append((options, config, self.tweetformat, feeds, plugins))
else:
self.confs.append((options, config, self.tweetformat, [{'feed': feed, 'patterns': [], 'rssobject': '', 'feedname': feedname}], plugins))
2017-04-09 08:30:48 +00:00
@property
def confvalues(self):
'''Return the values of the different configuration files'''
return self.confs