summaryrefslogtreecommitdiff
path: root/completions/koji
blob: 8efef9a7fae428aebdb5f7826d5b5b626ee6fb72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
# koji completion                                          -*- shell-script -*-

_koji_search()
{
    COMPREPLY+=($(compgen -W \
        '$("$1" -q search $2 "$cur*" 2>/dev/null)' -- "$cur"))
}

_koji_build()
{
    _koji_search "$1" build
}

_koji_package()
{
    _koji_search "$1" package
}

_koji_user()
{
    _koji_search "$1" user
}

_koji_tag()
{
    COMPREPLY+=($(compgen -W '$("$1" -q list-tags 2>/dev/null)' -- "$cur"))
}

_koji_target()
{
    COMPREPLY+=($(compgen -W '$("$1" -q list-targets 2>/dev/null |
        awk "{ print \$1 }")' -- "$cur"))
}

_koji()
{
    local cur prev words cword split
    _init_completion -s || return

    local commandix command
    for ((commandix = 1; commandix < cword; commandix++)); do
        if [[ ${words[commandix]} != -* ]]; then
            command=${words[commandix]}
            break
        fi
    done

    case $prev in
        --help | --help-commands | -!(-*)h*)
            return
            ;;
        --config | --keytab | -!(-*)[co])
            _filedir
            return
            ;;
        --runas | --user | --editor | --by)
            _koji_user "$1"
            return
            ;;
        --authtype)
            COMPREPLY=($(compgen -W 'noauth ssl password kerberos' -- "$cur"))
            return
            ;;
        --topdir)
            _filedir -d
            return
            ;;
        --type)
            case ${command-} in
                latest-pkg | list-tagged)
                    COMPREPLY=($(compgen -W 'maven' -- "$cur"))
                    ;;
            esac
            return
            ;;
        --name)
            case ${command-} in
                list-targets)
                    _koji_target "$1"
                    ;;
            esac
            return
            ;;
        --owner)
            _koji_user "$1"
            return
            ;;
        --tag | --latestfrom)
            _koji_tag "$1"
            return
            ;;
        --package)
            _koji_package "$1"
            return
            ;;
        --build)
            _koji_build "$1"
            return
            ;;
        --build-target)
            _koji_target "$1"
            return
            ;;
    esac

    $split && return

    if [[ -v command ]]; then
        if [[ $cur == -* ]]; then
            COMPREPLY=($(compgen -W \
                '$(_parse_help "$1" "$command --help")' -- "$cur"))
            [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
            return
        fi

        # How many'th non-option arg (1-based) for $command are we completing?
        local i nth=1
        for ((i = commandix + 1; i < cword; i++)); do
            [[ ${words[i]} == -* ]] || ((nth++))
        done

        case $command in
            build | maven-build | win-build)
                case $nth in
                    1)
                        _koji_target "$1"
                        ;;
                    2)
                        _filedir src.rpm
                        ;;
                esac
                ;;
            cancel)
                _koji_build "$1"
                ;;
            chain-build)
                case $nth in
                    1)
                        _koji_target "$1"
                        ;;
                esac
                ;;
            download-build)
                case $nth in
                    1)
                        _koji_build "$1"
                        ;;
                esac
                ;;
            import-comps)
                case $nth in
                    1)
                        _filedir xml
                        ;;
                    2)
                        _koji_tag "$1"
                        ;;
                esac
                ;;
            latest-by-tag)
                _koji_package "$1"
                ;;
            latest-pkg | list-groups | list-tag-inheritance | show-groups)
                case $nth in
                    1)
                        _koji_tag "$1"
                        ;;
                esac
                ;;
            list-tagged)
                case $nth in
                    1)
                        _koji_tag "$1"
                        ;;
                    2)
                        _koji_package "$1"
                        ;;
                esac
                ;;
            list-untagged)
                case $nth in
                    1)
                        _koji_package "$1"
                        ;;
                esac
                ;;
            move-pkg)
                case $nth in
                    1 | 2)
                        _koji_tag "$1"
                        ;;
                    *)
                        _koji_package "$1"
                        ;;
                esac
                ;;
            search)
                case $nth in
                    1)
                        COMPREPLY=($(compgen -W 'package build tag target
                            user host rpm' -- "$cur"))
                        ;;
                esac
                ;;
            tag-pkg | untag-pkg)
                case $nth in
                    1)
                        _koji_tag "$1"
                        ;;
                    *)
                        _koji_package "$1"
                        ;;
                esac
                ;;
            taginfo)
                _koji_tag "$1"
                ;;
            wait-repo)
                case $nth in
                    1)
                        for ((i = commandix + 1; i < cword; i++)); do
                            if [[ ${words[i]} == --target ]]; then
                                _koji_target "$1"
                                return
                            fi
                        done
                        _koji_tag "$1"
                        ;;
                esac
                ;;
        esac
        return
    fi

    if [[ $cur == -* ]]; then
        COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
        [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
    elif [[ ! -v command ]]; then
        COMPREPLY=($(compgen -W '$("$1" --help-commands 2>/dev/null | \
            awk "/^(  +|\t)/ { print \$1 }")' -- "$cur"))
    fi
} &&
    complete -F _koji koji arm-koji ppc-koji s390-koji sparc-koji

# ex: filetype=sh