mirror of https://github.com/caronc/apprise
don't parse files that are simply not there via CLI
parent
838370f441
commit
5c2ceef410
|
@ -114,7 +114,7 @@ class AppriseConfig(object):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
elif not isinstance(_config, six.string_types):
|
elif not isinstance(_config, six.string_types):
|
||||||
logging.error(
|
logging.warning(
|
||||||
"An invalid configuration (type={}) was specified.".format(
|
"An invalid configuration (type={}) was specified.".format(
|
||||||
type(_config)))
|
type(_config)))
|
||||||
return_status = False
|
return_status = False
|
||||||
|
@ -125,9 +125,6 @@ class AppriseConfig(object):
|
||||||
instance = AppriseConfig.instantiate(_config, asset=asset, tag=tag)
|
instance = AppriseConfig.instantiate(_config, asset=asset, tag=tag)
|
||||||
if not isinstance(instance, ConfigBase):
|
if not isinstance(instance, ConfigBase):
|
||||||
return_status = False
|
return_status = False
|
||||||
logging.error(
|
|
||||||
"Failed to load configuration url: {}".format(_config),
|
|
||||||
)
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Add our initialized plugin to our server listings
|
# Add our initialized plugin to our server listings
|
||||||
|
@ -195,7 +192,7 @@ class AppriseConfig(object):
|
||||||
|
|
||||||
# Some basic validation
|
# Some basic validation
|
||||||
if schema not in config.SCHEMA_MAP:
|
if schema not in config.SCHEMA_MAP:
|
||||||
logger.error('Unsupported schema {}.'.format(schema))
|
logger.debug('Unsupported schema {}.'.format(schema))
|
||||||
return None
|
return None
|
||||||
|
|
||||||
# Parse our url details of the server object as dictionary containing
|
# Parse our url details of the server object as dictionary containing
|
||||||
|
@ -204,7 +201,7 @@ class AppriseConfig(object):
|
||||||
|
|
||||||
if not results:
|
if not results:
|
||||||
# Failed to parse the server URL
|
# Failed to parse the server URL
|
||||||
logger.error('Unparseable URL {}.'.format(url))
|
logger.debug('Unparseable URL {}.'.format(url))
|
||||||
return None
|
return None
|
||||||
|
|
||||||
# Build a list of tags to associate with the newly added notifications
|
# Build a list of tags to associate with the newly added notifications
|
||||||
|
@ -222,7 +219,7 @@ class AppriseConfig(object):
|
||||||
|
|
||||||
except Exception:
|
except Exception:
|
||||||
# the arguments are invalid or can not be used.
|
# the arguments are invalid or can not be used.
|
||||||
logger.error('Could not load URL: %s' % url)
|
logger.debug('Could not load URL: %s' % url)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
else:
|
else:
|
||||||
|
|
|
@ -27,6 +27,8 @@
|
||||||
import click
|
import click
|
||||||
import logging
|
import logging
|
||||||
import sys
|
import sys
|
||||||
|
from os.path import isfile
|
||||||
|
from os.path import expanduser
|
||||||
|
|
||||||
from . import NotifyType
|
from . import NotifyType
|
||||||
from . import Apprise
|
from . import Apprise
|
||||||
|
@ -116,14 +118,14 @@ def main(title, body, config, urls, notification_type, theme, tag, verbose,
|
||||||
else:
|
else:
|
||||||
logger.setLevel(logging.ERROR)
|
logger.setLevel(logging.ERROR)
|
||||||
|
|
||||||
if version:
|
|
||||||
print_version_msg()
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
|
formatter = logging.Formatter('%(asctime)s - %(levelname)s - %(message)s')
|
||||||
ch.setFormatter(formatter)
|
ch.setFormatter(formatter)
|
||||||
logger.addHandler(ch)
|
logger.addHandler(ch)
|
||||||
|
|
||||||
|
if version:
|
||||||
|
print_version_msg()
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
# Prepare our asset
|
# Prepare our asset
|
||||||
asset = AppriseAsset(theme=theme)
|
asset = AppriseAsset(theme=theme)
|
||||||
|
|
||||||
|
@ -133,7 +135,7 @@ def main(title, body, config, urls, notification_type, theme, tag, verbose,
|
||||||
# Load our configuration if no URLs or specified configuration was
|
# Load our configuration if no URLs or specified configuration was
|
||||||
# identified on the command line
|
# identified on the command line
|
||||||
a.add(AppriseConfig(
|
a.add(AppriseConfig(
|
||||||
paths=DEFAULT_SEARCH_PATHS
|
paths=[f for f in DEFAULT_SEARCH_PATHS if isfile(expanduser(f))]
|
||||||
if not (config or urls) else config), asset=asset)
|
if not (config or urls) else config), asset=asset)
|
||||||
|
|
||||||
# Load our inventory up
|
# Load our inventory up
|
||||||
|
|
|
@ -96,7 +96,7 @@ class ConfigFile(ConfigBase):
|
||||||
except OSError:
|
except OSError:
|
||||||
# getsize() can throw this acception if the file is missing
|
# getsize() can throw this acception if the file is missing
|
||||||
# and or simply isn't accessible
|
# and or simply isn't accessible
|
||||||
self.logger.debug(
|
self.logger.error(
|
||||||
'File is not accessible: {}'.format(path))
|
'File is not accessible: {}'.format(path))
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
@ -126,7 +126,7 @@ class ConfigFile(ConfigBase):
|
||||||
|
|
||||||
# Could not open and/or read the file; this is not a problem since
|
# Could not open and/or read the file; this is not a problem since
|
||||||
# we scan a lot of default paths.
|
# we scan a lot of default paths.
|
||||||
self.logger.debug(
|
self.logger.error(
|
||||||
'File can not be opened for read: {}'.format(path))
|
'File can not be opened for read: {}'.format(path))
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
@ -138,7 +138,7 @@ class ConfigFile(ConfigBase):
|
||||||
# YAML Filename Detected
|
# YAML Filename Detected
|
||||||
self.default_config_format = ConfigFormat.YAML
|
self.default_config_format = ConfigFormat.YAML
|
||||||
|
|
||||||
self.logger.debug('Read Config File: %s' % (path))
|
self.logger.debug('Succesfully read config file: %s' % (path))
|
||||||
|
|
||||||
# Return our response object
|
# Return our response object
|
||||||
return response
|
return response
|
||||||
|
|
|
@ -246,7 +246,7 @@ class ConfigHTTP(ConfigBase):
|
||||||
# already set.
|
# already set.
|
||||||
|
|
||||||
except requests.RequestException as e:
|
except requests.RequestException as e:
|
||||||
self.logger.warning(
|
self.logger.error(
|
||||||
'A Connection error occured retrieving HTTP '
|
'A Connection error occured retrieving HTTP '
|
||||||
'configuration from %s.' % self.host)
|
'configuration from %s.' % self.host)
|
||||||
self.logger.debug('Socket Exception: %s' % str(e))
|
self.logger.debug('Socket Exception: %s' % str(e))
|
||||||
|
|
Loading…
Reference in New Issue