Compare commits
No commits in common. "3a49d17dfd7e98499c7aef55de89ecd197407451" and "8b7b85b8f189e5eb4c785f31b5763379412a6058" have entirely different histories.
3a49d17dfd
...
8b7b85b8f1
13
README.md
13
README.md
|
@ -1,8 +1,5 @@
|
||||||
# Ansible Modules for Syncthing
|
# Ansible Modules for Syncthing
|
||||||
|
|
||||||
Forked from [github.com/rafi/ansible-modules-syncthing]
|
|
||||||
(https://github.com/rafi/ansible-modules-syncthing).
|
|
||||||
|
|
||||||
Collection of modules for [Syncthing](https://syncthing.net) management.
|
Collection of modules for [Syncthing](https://syncthing.net) management.
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
@ -15,9 +12,9 @@ Copy the `./library` directory to your Ansible project and ensure your
|
||||||
library = ./library
|
library = ./library
|
||||||
```
|
```
|
||||||
|
|
||||||
Please note this module was tested on:
|
Please note this module was test on:
|
||||||
|
|
||||||
* Debian Buster with Syncthing v1.0.0
|
* Ubuntu 16.04 with Syncthing v0.14.52
|
||||||
|
|
||||||
Please report successful usage on other platforms/versions.
|
Please report successful usage on other platforms/versions.
|
||||||
|
|
||||||
|
@ -25,9 +22,12 @@ Please report successful usage on other platforms/versions.
|
||||||
|
|
||||||
See [example playbooks](./playbooks) for robust feature usage:
|
See [example playbooks](./playbooks) for robust feature usage:
|
||||||
|
|
||||||
* [install_syncthing.yml] - Install Syncthing on Debian/Ubuntu (with systemd)
|
* [install_syncthing.yml] - Install Syncthing on Ubuntu (with systemd)
|
||||||
* [manage.yml] - Ensure Syncthing devices and folders across devices
|
* [manage.yml] - Ensure Syncthing devices and folders across devices
|
||||||
|
|
||||||
|
[install_syncthing.yml]: http://
|
||||||
|
[manage.yml]: http://
|
||||||
|
|
||||||
## Modules
|
## Modules
|
||||||
|
|
||||||
### Module: `syncthing_device`
|
### Module: `syncthing_device`
|
||||||
|
@ -108,5 +108,4 @@ Examples:
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Copyright: (c) 2018, Rafael Bodill `<justrafi at g>`
|
Copyright: (c) 2018, Rafael Bodill `<justrafi at g>`
|
||||||
Copyright: (c) 2020--2021, Borjan Tchakaloff `<first name at last name dot fr>`
|
|
||||||
GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# Copyright: (c) 2018, Rafael Bodill <justrafi at google mail>
|
# Copyright: (c) 2018, Rafael Bodill <justrafi at google mail>
|
||||||
# Copyright: (c) 2020, Borjan Tchakaloff <first name at last name dot fr>
|
|
||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
ANSIBLE_METADATA = {
|
ANSIBLE_METADATA = {
|
||||||
|
@ -40,12 +39,6 @@ options:
|
||||||
- API key to use for authentication with host.
|
- API key to use for authentication with host.
|
||||||
If not provided, will try to auto-configure from filesystem.
|
If not provided, will try to auto-configure from filesystem.
|
||||||
required: false
|
required: false
|
||||||
config_file:
|
|
||||||
description:
|
|
||||||
- Path to the Syncthing configuration file for automatic
|
|
||||||
discovery (`api_key`). Note that the running user needs read
|
|
||||||
access to the file.
|
|
||||||
required: false
|
|
||||||
timeout:
|
timeout:
|
||||||
description:
|
description:
|
||||||
- The socket level timeout in seconds
|
- The socket level timeout in seconds
|
||||||
|
@ -98,10 +91,7 @@ def make_headers(host, api_key):
|
||||||
|
|
||||||
def get_key_from_filesystem(module):
|
def get_key_from_filesystem(module):
|
||||||
try:
|
try:
|
||||||
if module.params['config_file']:
|
stconfigfile = os.path.expandvars(DEFAULT_ST_CONFIG_LOCATION)
|
||||||
stconfigfile = module.params['config_file']
|
|
||||||
else:
|
|
||||||
stconfigfile = os.path.expandvars(DEFAULT_ST_CONFIG_LOCATION)
|
|
||||||
stconfig = parse(stconfigfile)
|
stconfig = parse(stconfigfile)
|
||||||
root = stconfig.getroot()
|
root = stconfig.getroot()
|
||||||
gui = root.find('gui')
|
gui = root.find('gui')
|
||||||
|
@ -176,7 +166,6 @@ def run_module():
|
||||||
name=dict(type='str', required=False),
|
name=dict(type='str', required=False),
|
||||||
host=dict(type='str', default='http://127.0.0.1:8384'),
|
host=dict(type='str', default='http://127.0.0.1:8384'),
|
||||||
api_key=dict(type='str', required=False, no_log=True),
|
api_key=dict(type='str', required=False, no_log=True),
|
||||||
config_file=dict(type='str', required=False),
|
|
||||||
timeout=dict(type='int', default=30),
|
timeout=dict(type='int', default=30),
|
||||||
state=dict(type='str', default='present',
|
state=dict(type='str', default='present',
|
||||||
choices=['absent', 'present', 'pause']),
|
choices=['absent', 'present', 'pause']),
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# Copyright: (c) 2018, Rafael Bodill <justrafi at gmail>
|
# Copyright: (c) 2018, Rafael Bodill <justrafi at gmail>
|
||||||
# Copyright: (c) 2020, Borjan Tchakaloff <first name at last name dot fr>
|
|
||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
ANSIBLE_METADATA = {
|
ANSIBLE_METADATA = {
|
||||||
|
@ -39,20 +38,6 @@ options:
|
||||||
description:
|
description:
|
||||||
- List of devices to share folder with
|
- List of devices to share folder with
|
||||||
required: false
|
required: false
|
||||||
fs_watcher:
|
|
||||||
description:
|
|
||||||
- Whether to activate the file-system watcher.
|
|
||||||
default: true
|
|
||||||
ignore_perms:
|
|
||||||
description:
|
|
||||||
- Whether to ignore permissions when looking for changes.
|
|
||||||
default: false
|
|
||||||
type:
|
|
||||||
description:
|
|
||||||
- The folder type: sending local chances, and/or receiving
|
|
||||||
remote changes.
|
|
||||||
default: sendreceive
|
|
||||||
choices: ['sendreceive', 'sendonly', 'receiveonly']
|
|
||||||
host:
|
host:
|
||||||
description:
|
description:
|
||||||
- Host to connect to, including port
|
- Host to connect to, including port
|
||||||
|
@ -62,12 +47,6 @@ options:
|
||||||
- API key to use for authentication with host.
|
- API key to use for authentication with host.
|
||||||
If not provided, will try to auto-configure from filesystem.
|
If not provided, will try to auto-configure from filesystem.
|
||||||
required: false
|
required: false
|
||||||
config_file:
|
|
||||||
description:
|
|
||||||
- Path to the Syncthing configuration file for automatic
|
|
||||||
discovery (`api_key`). Note that the running user needs read
|
|
||||||
access to the file.
|
|
||||||
required: false
|
|
||||||
timeout:
|
timeout:
|
||||||
description:
|
description:
|
||||||
- The socket level timeout in seconds
|
- The socket level timeout in seconds
|
||||||
|
@ -106,7 +85,7 @@ from xml.etree.ElementTree import parse
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible.module_utils.urls import fetch_url, url_argument_spec
|
from ansible.module_utils.urls import fetch_url, url_argument_spec
|
||||||
|
|
||||||
SYNCTHING_API_BASE_URI = "/rest"
|
SYNCTHING_API_URI = "/rest/system/config"
|
||||||
if platform.system() == 'Windows':
|
if platform.system() == 'Windows':
|
||||||
DEFAULT_ST_CONFIG_LOCATION = '%localappdata%/Syncthing/config.xml'
|
DEFAULT_ST_CONFIG_LOCATION = '%localappdata%/Syncthing/config.xml'
|
||||||
elif platform.system() == 'Darwin':
|
elif platform.system() == 'Darwin':
|
||||||
|
@ -115,17 +94,14 @@ else:
|
||||||
DEFAULT_ST_CONFIG_LOCATION = '$HOME/.config/syncthing/config.xml'
|
DEFAULT_ST_CONFIG_LOCATION = '$HOME/.config/syncthing/config.xml'
|
||||||
|
|
||||||
|
|
||||||
def make_headers(host, api_key, resource):
|
def make_headers(host, api_key):
|
||||||
url = '{}{}/{}'.format(host, SYNCTHING_API_BASE_URI, resource)
|
url = '{}{}'.format(host, SYNCTHING_API_URI)
|
||||||
headers = {'X-Api-Key': api_key }
|
headers = {'X-Api-Key': api_key }
|
||||||
return url, headers
|
return url, headers
|
||||||
|
|
||||||
def get_key_from_filesystem(module):
|
def get_key_from_filesystem(module):
|
||||||
try:
|
try:
|
||||||
if module.params['config_file']:
|
stconfigfile = os.path.expandvars(DEFAULT_ST_CONFIG_LOCATION)
|
||||||
stconfigfile = module.params['config_file']
|
|
||||||
else:
|
|
||||||
stconfigfile = os.path.expandvars(DEFAULT_ST_CONFIG_LOCATION)
|
|
||||||
stconfig = parse(stconfigfile)
|
stconfig = parse(stconfigfile)
|
||||||
root = stconfig.getroot()
|
root = stconfig.getroot()
|
||||||
gui = root.find('gui')
|
gui = root.find('gui')
|
||||||
|
@ -135,18 +111,12 @@ def get_key_from_filesystem(module):
|
||||||
module.fail_json(msg="Auto-configuration failed. Please specify"
|
module.fail_json(msg="Auto-configuration failed. Please specify"
|
||||||
"the API key manually.")
|
"the API key manually.")
|
||||||
|
|
||||||
def get_data_from_rest_api(module, resource):
|
# Fetch Syncthing configuration
|
||||||
url, headers = make_headers(
|
def get_config(module):
|
||||||
module.params['host'], module.params['api_key'], resource
|
url, headers = make_headers(module.params['host'], module.params['api_key'])
|
||||||
)
|
|
||||||
resp, info = fetch_url(
|
resp, info = fetch_url(
|
||||||
module,
|
module, url, data=None, headers=headers,
|
||||||
url,
|
method='GET', timeout=module.params['timeout'])
|
||||||
data=None,
|
|
||||||
headers=headers,
|
|
||||||
method='GET',
|
|
||||||
timeout=module.params['timeout']
|
|
||||||
)
|
|
||||||
|
|
||||||
if not info or info['status'] != 200:
|
if not info or info['status'] != 200:
|
||||||
result['response'] = info
|
result['response'] = info
|
||||||
|
@ -161,34 +131,9 @@ def get_data_from_rest_api(module, resource):
|
||||||
|
|
||||||
return json.loads(content)
|
return json.loads(content)
|
||||||
|
|
||||||
# Fetch Syncthing configuration
|
|
||||||
def get_config(module):
|
|
||||||
return get_data_from_rest_api(module, 'system/config')
|
|
||||||
|
|
||||||
# Fetch Syncthing status
|
|
||||||
def get_status(module):
|
|
||||||
return get_data_from_rest_api(module, 'system/status')
|
|
||||||
|
|
||||||
# Get the device name -> device ID mapping.
|
|
||||||
def get_devices_mapping(config):
|
|
||||||
return {
|
|
||||||
device['name']: device['deviceID'] for device in config['devices']
|
|
||||||
}
|
|
||||||
|
|
||||||
# Get the folder configuration from the global configuration, if it exists
|
|
||||||
def get_folder_config(folder_id, config):
|
|
||||||
for folder in config['folders']:
|
|
||||||
if folder['id'] == folder_id:
|
|
||||||
return folder
|
|
||||||
return None
|
|
||||||
|
|
||||||
# Post the new configuration to Syncthing API
|
# Post the new configuration to Syncthing API
|
||||||
def post_config(module, config, result):
|
def post_config(module, config, result):
|
||||||
url, headers = make_headers(
|
url, headers = make_headers(module.params['host'], module.params['api_key'])
|
||||||
module.params['host'],
|
|
||||||
module.params['api_key'],
|
|
||||||
'system/config',
|
|
||||||
)
|
|
||||||
headers['Content-Type'] = 'application/json'
|
headers['Content-Type'] = 'application/json'
|
||||||
|
|
||||||
result['msg'] = config
|
result['msg'] = config
|
||||||
|
@ -198,51 +143,23 @@ def post_config(module, config, result):
|
||||||
|
|
||||||
if not info or info['status'] != 200:
|
if not info or info['status'] != 200:
|
||||||
result['response'] = str(info)
|
result['response'] = str(info)
|
||||||
module.fail_json(**result)
|
module.fail_json(msg='Error occured while posting new config', **result)
|
||||||
|
|
||||||
# Returns an object of a new folder
|
# Returns an object of a new folder
|
||||||
def create_folder(params, self_id, current_device_ids, devices_mapping):
|
def create_folder(params):
|
||||||
# We need the current device ID as per the Syncthing API.
|
folder = {
|
||||||
# If missing, Syncthing will add it alright, but we don't want to give
|
|
||||||
# the false idea that this configuration is different just because of that.
|
|
||||||
wanted_device_ids = {self_id}
|
|
||||||
for device_name_or_id in params['devices']:
|
|
||||||
if device_name_or_id in devices_mapping:
|
|
||||||
wanted_device_ids.add(devices_mapping[device_name_or_id])
|
|
||||||
else:
|
|
||||||
# Purposefully do not validate we already know this device ID or
|
|
||||||
# name as per previous behavior. This will need to be fixed.
|
|
||||||
wanted_device_ids.add(device_name_or_id)
|
|
||||||
|
|
||||||
# Keep the original ordering if collections are equivalent.
|
|
||||||
# Again, for idempotency reasons.
|
|
||||||
device_ids = (
|
|
||||||
current_device_ids
|
|
||||||
if set(current_device_ids) == wanted_device_ids
|
|
||||||
else sorted(wanted_device_ids)
|
|
||||||
)
|
|
||||||
|
|
||||||
# Sort the device IDs to keep idem-potency
|
|
||||||
devices = [
|
|
||||||
{
|
|
||||||
'deviceID': device_id,
|
|
||||||
'introducedBy': '',
|
|
||||||
} for device_id in device_ids
|
|
||||||
]
|
|
||||||
|
|
||||||
return {
|
|
||||||
'autoNormalize': True,
|
'autoNormalize': True,
|
||||||
'copiers': 0,
|
'copiers': 0,
|
||||||
'devices': devices,
|
'devices': [],
|
||||||
'disableSparseFiles': False,
|
'disableSparseFiles': False,
|
||||||
'disableTempIndexes': False,
|
'disableTempIndexes': False,
|
||||||
'filesystemType': 'basic',
|
'filesystemType': 'basic',
|
||||||
'fsWatcherDelayS': 10,
|
'fsWatcherDelayS': 10,
|
||||||
'fsWatcherEnabled': params['fs_watcher'],
|
'fsWatcherEnabled': True,
|
||||||
'hashers': 0,
|
'hashers': 0,
|
||||||
'id': params['id'],
|
'id': params['id'],
|
||||||
'ignoreDelete': False,
|
'ignoreDelete': False,
|
||||||
'ignorePerms': params['ignore_perms'],
|
'ignorePerms': False,
|
||||||
'label': params['label'] if params['label'] else params['id'],
|
'label': params['label'] if params['label'] else params['id'],
|
||||||
'markerName': '.stfolder',
|
'markerName': '.stfolder',
|
||||||
'maxConflicts': -1,
|
'maxConflicts': -1,
|
||||||
|
@ -257,7 +174,7 @@ def create_folder(params, self_id, current_device_ids, devices_mapping):
|
||||||
'pullerPauseS': 0,
|
'pullerPauseS': 0,
|
||||||
'rescanIntervalS': 3600,
|
'rescanIntervalS': 3600,
|
||||||
'scanProgressIntervalS': 0,
|
'scanProgressIntervalS': 0,
|
||||||
'type': params['type'],
|
'type': 'sendreceive',
|
||||||
'useLargeBlocks': False,
|
'useLargeBlocks': False,
|
||||||
'versioning': {
|
'versioning': {
|
||||||
'params': {},
|
'params': {},
|
||||||
|
@ -266,6 +183,15 @@ def create_folder(params, self_id, current_device_ids, devices_mapping):
|
||||||
'weakHashThresholdPct': 25
|
'weakHashThresholdPct': 25
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Collect wanted devices to share folder with
|
||||||
|
for device_id in params['devices']:
|
||||||
|
folder['devices'].append({
|
||||||
|
'deviceID': device_id,
|
||||||
|
'introducedBy': '',
|
||||||
|
})
|
||||||
|
|
||||||
|
return folder
|
||||||
|
|
||||||
def run_module():
|
def run_module():
|
||||||
# module arguments
|
# module arguments
|
||||||
module_args = url_argument_spec()
|
module_args = url_argument_spec()
|
||||||
|
@ -274,13 +200,8 @@ def run_module():
|
||||||
label=dict(type='str', required=False),
|
label=dict(type='str', required=False),
|
||||||
path=dict(type='path', required=False),
|
path=dict(type='path', required=False),
|
||||||
devices=dict(type='list', required=False, default=False),
|
devices=dict(type='list', required=False, default=False),
|
||||||
fs_watcher=dict(type='bool', default=True),
|
|
||||||
ignore_perms=dict(type='bool', required=False, default=False),
|
|
||||||
type=dict(type='str', default='sendreceive',
|
|
||||||
choices=['sendreceive', 'sendonly', 'receiveonly']),
|
|
||||||
host=dict(type='str', default='http://127.0.0.1:8384'),
|
host=dict(type='str', default='http://127.0.0.1:8384'),
|
||||||
api_key=dict(type='str', required=False, no_log=True),
|
api_key=dict(type='str', required=False, no_log=True),
|
||||||
config_file=dict(type='path', required=False),
|
|
||||||
timeout=dict(type='int', default=30),
|
timeout=dict(type='int', default=30),
|
||||||
state=dict(type='str', default='present',
|
state=dict(type='str', default='present',
|
||||||
choices=['absent', 'present', 'pause']),
|
choices=['absent', 'present', 'pause']),
|
||||||
|
@ -309,8 +230,6 @@ def run_module():
|
||||||
module.params['api_key'] = get_key_from_filesystem(module)
|
module.params['api_key'] = get_key_from_filesystem(module)
|
||||||
|
|
||||||
config = get_config(module)
|
config = get_config(module)
|
||||||
self_id = get_status(module)['myID']
|
|
||||||
devices_mapping = get_devices_mapping(config)
|
|
||||||
if module.params['state'] == 'absent':
|
if module.params['state'] == 'absent':
|
||||||
# Remove folder from list, if found
|
# Remove folder from list, if found
|
||||||
for idx, folder in enumerate(config['folders']):
|
for idx, folder in enumerate(config['folders']):
|
||||||
|
@ -319,21 +238,22 @@ def run_module():
|
||||||
result['changed'] = True
|
result['changed'] = True
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
folder_config = get_folder_config(module.params['id'], config)
|
# Bail-out if folder is already added
|
||||||
folder_config_devices = (
|
for folder in config['folders']:
|
||||||
[d['deviceID'] for d in folder_config['devices']] if folder_config else []
|
if folder['id'] == module.params['id']:
|
||||||
)
|
want_pause = module.params['state'] == 'pause'
|
||||||
folder_config_wanted = create_folder(
|
if (want_pause and folder['paused']) or \
|
||||||
module.params, self_id, folder_config_devices, devices_mapping
|
(not want_pause and not folder['paused']):
|
||||||
)
|
module.exit_json(**result)
|
||||||
|
else:
|
||||||
|
folder['paused'] = want_pause
|
||||||
|
result['changed'] = True
|
||||||
|
break
|
||||||
|
|
||||||
if folder_config is None:
|
# Append the new folder into configuration
|
||||||
config['folders'].append(folder_config_wanted)
|
if not result['changed']:
|
||||||
result['changed'] = True
|
folder = create_folder(module.params)
|
||||||
elif folder_config != folder_config_wanted:
|
config['folders'].append(folder)
|
||||||
# Update the folder configuration in-place
|
|
||||||
folder_config.clear()
|
|
||||||
folder_config.update(folder_config_wanted)
|
|
||||||
result['changed'] = True
|
result['changed'] = True
|
||||||
|
|
||||||
if result['changed']:
|
if result['changed']:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user