mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
70c57dcb6a
* Update jc.py ##### SUMMARY <!— Your description here –> ##### ISSUE TYPE - Docs Pull Request +label: docsite_pr * Update jc.py * Update plugins/filter/jc.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update jc.py * Update plugins/filter/jc.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update jc.py * Update jc.py * Update jc.py * Update plugins/filter/jc.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/filter/jc.py Co-authored-by: Felix Fontein <felix@fontein.de> * change all of the tags to be FQMN FQMN = fully qualified module name * Update jc.py * Update plugins/filter/jc.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update jc.py * Update jc.py * Update plugins/filter/jc.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update jc.py * Update plugins/filter/jc.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/filter/jc.py Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Felix Fontein <felix@fontein.de>
153 lines
4.4 KiB
Python
153 lines
4.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2015, Filipe Niero Felisbino <filipenf@gmail.com>
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
# contributed by Kelly Brazil <kellyjonbrazil@gmail.com>
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
DOCUMENTATION = '''
|
|
name: jc
|
|
short_description: Convert output of many shell commands and file-types to JSON
|
|
version_added: 1.1.0
|
|
author: Kelly Brazil (@kellyjonbrazil)
|
|
description:
|
|
- Convert output of many shell commands and file-types to JSON.
|
|
- Uses the L(jc library,https://github.com/kellyjonbrazil/jc).
|
|
positional: parser
|
|
options:
|
|
_input:
|
|
description: The data to convert.
|
|
type: string
|
|
required: true
|
|
parser:
|
|
description:
|
|
- The correct parser for the input data.
|
|
- For example C(ifconfig).
|
|
- See U(https://github.com/kellyjonbrazil/jc#parsers) for the latest list of parsers.
|
|
type: string
|
|
required: true
|
|
quiet:
|
|
description: Set to C(false) to not suppress warnings.
|
|
type: boolean
|
|
default: true
|
|
raw:
|
|
description: Set to C(true) to return pre-processed JSON.
|
|
type: boolean
|
|
default: false
|
|
requirements:
|
|
- jc installed as a Python library (U(https://pypi.org/project/jc/))
|
|
'''
|
|
|
|
EXAMPLES = '''
|
|
- name: Install the prereqs of the jc filter (jc Python package) on the Ansible controller
|
|
delegate_to: localhost
|
|
ansible.builtin.pip:
|
|
name: jc
|
|
state: present
|
|
|
|
- name: Run command
|
|
ansible.builtin.command: uname -a
|
|
register: result
|
|
|
|
- name: Convert command's result to JSON
|
|
ansible.builtin.debug:
|
|
msg: "{{ result.stdout | community.general.jc('uname') }}"
|
|
# Possible output:
|
|
#
|
|
# "msg": {
|
|
# "hardware_platform": "x86_64",
|
|
# "kernel_name": "Linux",
|
|
# "kernel_release": "4.15.0-112-generic",
|
|
# "kernel_version": "#113-Ubuntu SMP Thu Jul 9 23:41:39 UTC 2020",
|
|
# "machine": "x86_64",
|
|
# "node_name": "kbrazil-ubuntu",
|
|
# "operating_system": "GNU/Linux",
|
|
# "processor": "x86_64"
|
|
# }
|
|
'''
|
|
|
|
RETURN = '''
|
|
_value:
|
|
description: The processed output.
|
|
type: any
|
|
'''
|
|
|
|
from ansible.errors import AnsibleError, AnsibleFilterError
|
|
import importlib
|
|
|
|
try:
|
|
import jc
|
|
HAS_LIB = True
|
|
except ImportError:
|
|
HAS_LIB = False
|
|
|
|
|
|
def jc(data, parser, quiet=True, raw=False):
|
|
"""Convert returned command output to JSON using the JC library
|
|
|
|
Arguments:
|
|
|
|
parser required (string) the correct parser for the input data (e.g. 'ifconfig')
|
|
see https://github.com/kellyjonbrazil/jc#parsers for latest list of parsers.
|
|
quiet optional (bool) True to suppress warning messages (default is True)
|
|
raw optional (bool) True to return pre-processed JSON (default is False)
|
|
|
|
Returns:
|
|
|
|
dictionary or list of dictionaries
|
|
|
|
Example:
|
|
- name: run date command
|
|
hosts: ubuntu
|
|
tasks:
|
|
- name: install the prereqs of the jc filter (jc Python package) on the Ansible controller
|
|
delegate_to: localhost
|
|
ansible.builtin.pip:
|
|
name: jc
|
|
state: present
|
|
- ansible.builtin.shell: date
|
|
register: result
|
|
- ansible.builtin.set_fact:
|
|
myvar: "{{ result.stdout | community.general.jc('date') }}"
|
|
- ansible.builtin.debug:
|
|
msg: "{{ myvar }}"
|
|
|
|
produces:
|
|
|
|
ok: [192.168.1.239] => {
|
|
"msg": {
|
|
"day": 9,
|
|
"hour": 22,
|
|
"minute": 6,
|
|
"month": "Aug",
|
|
"month_num": 8,
|
|
"second": 22,
|
|
"timezone": "UTC",
|
|
"weekday": "Sun",
|
|
"weekday_num": 1,
|
|
"year": 2020
|
|
}
|
|
}
|
|
"""
|
|
|
|
if not HAS_LIB:
|
|
raise AnsibleError('You need to install "jc" as a Python library on the Ansible controller prior to running jc filter')
|
|
|
|
try:
|
|
jc_parser = importlib.import_module('jc.parsers.' + parser)
|
|
return jc_parser.parse(data, quiet=quiet, raw=raw)
|
|
|
|
except Exception as e:
|
|
raise AnsibleFilterError('Error in jc filter plugin: %s' % e)
|
|
|
|
|
|
class FilterModule(object):
|
|
''' Query filter '''
|
|
|
|
def filters(self):
|
|
return {
|
|
'jc': jc
|
|
}
|