2018-11-28 20:22:58 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# Copyright: (c) 2018, Rafael Bodill <justrafi at gmail>
|
2021-01-01 15:25:33 +01:00
|
|
|
# Copyright: (c) 2020, Borjan Tchakaloff <first name at last name dot fr>
|
2018-11-28 20:22:58 +01:00
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
|
|
ANSIBLE_METADATA = {
|
|
|
|
'metadata_version': '1.1',
|
|
|
|
'status': ['preview'],
|
|
|
|
'supported_by': 'community'
|
|
|
|
}
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: syncthing_folder
|
|
|
|
|
|
|
|
short_description: Manage Syncthing folders
|
|
|
|
|
|
|
|
version_added: "2.7"
|
|
|
|
|
|
|
|
description:
|
|
|
|
- "This is my longer description explaining my sample module"
|
|
|
|
|
|
|
|
options:
|
|
|
|
id:
|
|
|
|
description:
|
|
|
|
- This is the unique id of this new folder
|
|
|
|
required: true
|
|
|
|
label:
|
|
|
|
description:
|
|
|
|
- The label for this new folder
|
|
|
|
required: false
|
|
|
|
path:
|
|
|
|
description:
|
|
|
|
- This is the path of the folder
|
|
|
|
required: false
|
|
|
|
devices:
|
|
|
|
description:
|
2024-05-10 22:24:34 +02:00
|
|
|
- List of device ids to share folder with. Always share with self.
|
2018-11-28 20:22:58 +01:00
|
|
|
required: false
|
2021-01-01 15:13:06 +01:00
|
|
|
fs_watcher:
|
|
|
|
description:
|
|
|
|
- Whether to activate the file-system watcher.
|
|
|
|
default: true
|
2021-01-01 15:06:24 +01:00
|
|
|
ignore_perms:
|
|
|
|
description:
|
|
|
|
- Whether to ignore permissions when looking for changes.
|
|
|
|
default: false
|
2021-01-01 15:09:44 +01:00
|
|
|
type:
|
|
|
|
description:
|
|
|
|
- The folder type: sending local chances, and/or receiving
|
|
|
|
remote changes.
|
|
|
|
default: sendreceive
|
|
|
|
choices: ['sendreceive', 'sendonly', 'receiveonly']
|
2018-11-28 20:22:58 +01:00
|
|
|
host:
|
|
|
|
description:
|
|
|
|
- Host to connect to, including port
|
|
|
|
default: http://127.0.0.1:8384
|
|
|
|
api_key:
|
|
|
|
description:
|
|
|
|
- API key to use for authentication with host.
|
|
|
|
If not provided, will try to auto-configure from filesystem.
|
|
|
|
required: false
|
2021-01-01 15:14:49 +01:00
|
|
|
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
|
2018-11-28 20:22:58 +01:00
|
|
|
timeout:
|
|
|
|
description:
|
|
|
|
- The socket level timeout in seconds
|
|
|
|
default: 30
|
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- Use present/absent to ensure folder is shared, or not.
|
|
|
|
default: present
|
|
|
|
choices: ['absent', 'present', 'paused']
|
|
|
|
|
|
|
|
author:
|
|
|
|
- Rafael Bodill (@rafi)
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
# Add a folder to synchronize with another device
|
2024-05-10 22:24:34 +02:00
|
|
|
- name: Create folder
|
|
|
|
become: yes
|
|
|
|
become_user: syncthing
|
|
|
|
community.syncthing.folder:
|
|
|
|
host: http://localhost
|
|
|
|
unix_socket: /run/syncthing/syncthing.sock
|
|
|
|
config_file: /var/lib/syncthing/.config/syncthing/config.xml
|
|
|
|
id: 'my-folder-1'
|
|
|
|
label: 'my folder 1'
|
|
|
|
path: '/root/test-folder-1'
|
|
|
|
devices:
|
|
|
|
- '1234-1234-1234'
|
|
|
|
- '5678-5678-5678'
|
|
|
|
register: folder
|
2018-11-28 20:22:58 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = '''
|
|
|
|
response:
|
|
|
|
description: The API response, in-case of an error.
|
|
|
|
type: dict
|
|
|
|
'''
|
|
|
|
|
2024-05-10 22:24:34 +02:00
|
|
|
from ansible_collections.community.syncthing.plugins.module_utils.syncthing_api import SyncthingModule
|
2018-11-28 20:22:58 +01:00
|
|
|
|
|
|
|
# Returns an object of a new folder
|
2024-05-10 22:24:34 +02:00
|
|
|
def create_folder(params, self_id, existing_device_ids):
|
2021-02-19 17:24:40 +01:00
|
|
|
wanted_device_ids = {self_id}
|
2024-05-10 22:24:34 +02:00
|
|
|
for device_id in params['devices']:
|
|
|
|
if device_id in existing_device_ids:
|
|
|
|
wanted_device_ids.add(device_id)
|
2021-02-18 17:03:55 +01:00
|
|
|
|
2021-02-19 17:24:40 +01:00
|
|
|
# Keep the original ordering if collections are equivalent.
|
|
|
|
# Again, for idempotency reasons.
|
2024-05-10 22:24:34 +02:00
|
|
|
device_ids = sorted(wanted_device_ids)
|
2021-02-19 17:24:40 +01:00
|
|
|
|
|
|
|
# Sort the device IDs to keep idem-potency
|
2021-01-01 16:38:50 +01:00
|
|
|
devices = [
|
|
|
|
{
|
|
|
|
'deviceID': device_id,
|
|
|
|
'introducedBy': '',
|
|
|
|
} for device_id in device_ids
|
|
|
|
]
|
|
|
|
|
|
|
|
return {
|
2018-11-28 20:22:58 +01:00
|
|
|
'autoNormalize': True,
|
|
|
|
'copiers': 0,
|
2021-01-01 16:38:50 +01:00
|
|
|
'devices': devices,
|
2018-11-28 20:22:58 +01:00
|
|
|
'disableSparseFiles': False,
|
|
|
|
'disableTempIndexes': False,
|
|
|
|
'filesystemType': 'basic',
|
|
|
|
'fsWatcherDelayS': 10,
|
2021-01-01 15:13:06 +01:00
|
|
|
'fsWatcherEnabled': params['fs_watcher'],
|
2018-11-28 20:22:58 +01:00
|
|
|
'hashers': 0,
|
|
|
|
'id': params['id'],
|
|
|
|
'ignoreDelete': False,
|
2021-01-01 15:06:24 +01:00
|
|
|
'ignorePerms': params['ignore_perms'],
|
2018-11-28 20:22:58 +01:00
|
|
|
'label': params['label'] if params['label'] else params['id'],
|
|
|
|
'markerName': '.stfolder',
|
|
|
|
'maxConflicts': -1,
|
|
|
|
'minDiskFree': {
|
|
|
|
'unit': '%',
|
|
|
|
'value': 1
|
|
|
|
},
|
|
|
|
'order': 'random',
|
|
|
|
'path': params['path'],
|
|
|
|
'paused': True if params['state'] == 'paused' else False,
|
|
|
|
'pullerMaxPendingKiB': 0,
|
|
|
|
'pullerPauseS': 0,
|
|
|
|
'rescanIntervalS': 3600,
|
|
|
|
'scanProgressIntervalS': 0,
|
2021-01-01 15:09:44 +01:00
|
|
|
'type': params['type'],
|
2018-11-28 20:22:58 +01:00
|
|
|
'useLargeBlocks': False,
|
|
|
|
'versioning': {
|
|
|
|
'params': {},
|
|
|
|
'type': ''
|
|
|
|
},
|
|
|
|
'weakHashThresholdPct': 25
|
|
|
|
}
|
|
|
|
|
2024-05-10 22:24:34 +02:00
|
|
|
def update_folder(folder, params, self_id, existing_device_ids):
|
|
|
|
wanted_device_ids = {self_id}
|
|
|
|
for device_id in params['devices']:
|
|
|
|
if device_id in existing_device_ids:
|
|
|
|
wanted_device_ids.add(device_id)
|
|
|
|
|
|
|
|
current_device_ids = {d['deviceID'] for d in folder['devices']}
|
|
|
|
device_ids = (
|
|
|
|
current_device_ids
|
|
|
|
if 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
|
|
|
|
]
|
|
|
|
|
|
|
|
folder.update({
|
|
|
|
'devices': devices,
|
|
|
|
'fsWatcherEnabled': params['fs_watcher'],
|
|
|
|
'ignorePerms': params['ignore_perms'],
|
|
|
|
'label': params['label'] if params['label'] else params['id'],
|
|
|
|
'path': params['path'],
|
|
|
|
'paused': True if params['state'] == 'paused' else False,
|
|
|
|
'type': params['type'],
|
|
|
|
})
|
|
|
|
|
|
|
|
return folder
|
|
|
|
|
2018-11-28 20:22:58 +01:00
|
|
|
def run_module():
|
|
|
|
# module arguments
|
2024-05-10 22:24:34 +02:00
|
|
|
module_args = {}
|
2018-11-28 20:22:58 +01:00
|
|
|
module_args.update(dict(
|
|
|
|
id=dict(type='str', required=True),
|
|
|
|
label=dict(type='str', required=False),
|
|
|
|
path=dict(type='path', required=False),
|
2024-05-10 22:24:34 +02:00
|
|
|
devices=dict(type='list', required=False, default=[]),
|
2021-01-01 15:13:06 +01:00
|
|
|
fs_watcher=dict(type='bool', default=True),
|
2021-01-01 15:06:24 +01:00
|
|
|
ignore_perms=dict(type='bool', required=False, default=False),
|
2021-01-01 15:09:44 +01:00
|
|
|
type=dict(type='str', default='sendreceive',
|
|
|
|
choices=['sendreceive', 'sendonly', 'receiveonly']),
|
2018-11-28 20:22:58 +01:00
|
|
|
state=dict(type='str', default='present',
|
|
|
|
choices=['absent', 'present', 'pause']),
|
|
|
|
))
|
|
|
|
|
2024-05-10 22:24:34 +02:00
|
|
|
module = SyncthingModule(
|
|
|
|
api_url='/rest/config/folders',
|
|
|
|
argument_spec=module_args
|
|
|
|
)
|
2018-11-28 20:22:58 +01:00
|
|
|
|
2024-05-10 22:24:34 +02:00
|
|
|
device_module = SyncthingModule(
|
|
|
|
api_url='/rest/config/devices',
|
|
|
|
argument_spec=module_args
|
2018-11-28 20:22:58 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
if module.params['state'] != 'absent' and not module.params['path']:
|
2024-05-10 22:24:34 +02:00
|
|
|
module.fail_json(msg='You must provide a path when creating')
|
2018-11-28 20:22:58 +01:00
|
|
|
|
2024-05-10 22:24:34 +02:00
|
|
|
folder_exists = False
|
|
|
|
folder = module.get_call(target=module.params['id'])
|
|
|
|
if 'id' in folder and folder['id'] == module.params['id']:
|
|
|
|
folder_exists = True
|
2018-11-28 20:22:58 +01:00
|
|
|
|
|
|
|
if module.params['state'] == 'absent':
|
2024-05-10 22:24:34 +02:00
|
|
|
if folder_exists:
|
|
|
|
if module.check_mode:
|
|
|
|
module.result['changed'] = True
|
|
|
|
else:
|
|
|
|
module.delete_call(target=folder['id'])
|
2018-11-28 20:22:58 +01:00
|
|
|
else:
|
2024-05-10 22:24:34 +02:00
|
|
|
devices_list = device_module.get_call()
|
|
|
|
existing_device_ids = [device['deviceID'] for device in devices_list]
|
|
|
|
self_id = device_module.result['response']['x-syncthing-id']
|
|
|
|
|
|
|
|
if folder_exists: # exists but maybe needs changing
|
|
|
|
if module.check_mode:
|
|
|
|
module.result['changed'] = True
|
|
|
|
else:
|
|
|
|
folder_with_updated_data = update_folder(
|
|
|
|
folder, module.params, self_id, existing_device_ids
|
|
|
|
)
|
|
|
|
module.patch_call(data=folder_with_updated_data, target=folder['id'])
|
|
|
|
else: # Doesn't exist but needs to be added
|
|
|
|
if module.check_mode:
|
|
|
|
module.result['changed'] = True
|
|
|
|
else:
|
|
|
|
folder_config_wanted = create_folder(
|
|
|
|
module.params, self_id, existing_device_ids
|
|
|
|
)
|
|
|
|
module.post_call(data=folder_config_wanted)
|
|
|
|
|
|
|
|
module.exit_json()
|
2018-11-28 20:22:58 +01:00
|
|
|
|
|
|
|
def main():
|
|
|
|
run_module()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|