aboutsummaryrefslogtreecommitdiff
path: root/contrib/ls-config/lslib-core
blob: 6ef21fabbe5ff3c552b3f9c6a5e77a739960d48b (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
#!/bin/bash

#title          :lslib-core
#description    :core library for LS scripts 
#author         :Łukasz A. Grabowski <www@lucas.net.pl>
#date           :20130928
#version        :1.0.3
#notes          : 
#bash_version   :4.2.37(1)-release
#copywrite      :Copyright (C) 2013 Łukasz A. Grabowski
#license        :This program is free software: you can redistribute 
#               :it and/or modify it under the terms of the GNU General
#               :Public License as published by the Free Software
#               :Foundation, either version 2 of the License or 
#               :any later version.
#               :
#               :This program is distributed in the hope that it will
#               :be useful, but WITHOUT ANY WARRANTY; without even the
#               :implied warranty of MERCHANTABILITY or FITNESS FOR
#               :A PARTICULAR PURPOSE. See the GNU General Public
#               :License for more details.
#               :
#               :You should have received a copy of the GNU General
#               :Public License along with this program. If not, see 
#               :http://www.gnu.org/licenses/.
#=======================================================================

#################
# Configuration #
#################

PACD="/usr/share/ls" #main directory for LS scripts
LIBD="lib"           #library dir for LS scripts

#######################
# Predefined and init #
#######################

if [ -z "$LS_EXEC" ]; then
    echo "This script are only for inclusion in LS packet scripts. Don't use it itself." 1>&2
    exit 1
fi

##############################
# configuration read / write #
##############################

#get configuration
# cfg_g PATH
cfg_g() {
    local PTH=""
    if [ $# -gt 0 ]; then
	local PTH="$1";
    fi;
    local DAT
    local ERR
    DAT="$($PACD/$LIBD/ls-config -f "$CFGFN" -qv --get="$PTH")"
    ERR=$?
    echo "$DAT"
    return $ERR
}

#get configuration type
# cfg_t PATH
cfg_t() {
    local PTH=""
    if [ $# -gt 0 ]; then
	local PTH="$1";
    fi;
    local DAT
    local ERR
    DAT="$($PACD/$LIBD/ls-config -f "$CFGFN" -qt --get="$PTH")"
    ERR=$?
    echo "$DAT"
    return $ERR
}

#get configuration items count
# cfg_c PATH
cfg_c() {
    local PTH=""
    if [ $# -gt 0 ]; then
	local PTH="$1";
    fi;
    local DAT
    local ERR
    DAT="$($PACD/$LIBD/ls-config -f "$CFGFN" -qc --get="$PTH")"
    ERR=$?
    echo "$DAT"
    return $ERR
}

#set configuration
# cfg_s PATH DATA [TYPE=string]
cfg_s() {
    local PTH=""
    if [ $# -gt 0 ]; then
	local PTH="$1";
    fi;
    local DATA=""
    if [ $# -gt 1 ]; then
	local DATA="$2";
    fi;
    local TYPE="string"
    if [ $# -gt 2 ]; then
	local TYPE="$3";
    fi;
    local DAT
    local ERR
    DAT="$($PACD/$LIBD/ls-config -f "$CFGFN" -q --set="$PTH" --data="$DATA" --type="$TYPE")"
    ERR=$?
    echo "$DAT"
    return $ERR
}

#remove configuration
# cfg_u PATH 
cfg_u() {
    local PTH=""
    if [ $# -gt 0 ]; then
	local PTH="$1";
    fi;
    local DAT
    local ERR
    DAT="$($PACD/$LIBD/ls-config -f "$CFGFN" -q --set="$PTH" --unset)"
    ERR=$?
    return $ERR
}

cfg_f_g() {
    local BCFN="$CFGFN"
    local EX
    CFGFN="$1"
    shift
    cfg_g "$@"
    EX=$?
    CFGFN="$BCFN"
    return $EX
}

cfg_f_t() {
    local BCFN="$CFGFN"
    local EX
    CFGFN="$1"
    shift
    cfg_t "$@"
    EX=$?
    CFGFN="$BCFN"
    return $EX
}

cfg_f_c() {
    local BCFN="$CFGFN"
    local EX
    CFGFN="$1"
    shift
    cfg_c "$@"
    EX=$?
    CFGFN="$BCFN"
    return $EX
}

cfg_f_s() {
    local BCFN="$CFGFN"
    local EX
    CFGFN="$1"
    shift
    cfg_s "$@"
    EX=$?
    CFGFN="$BCFN"
    return $EX
}

cfg_f_u() {
    local BCFN="$CFGFN"
    local EX
    CFGFN="$1"
    shift
    cfg_u "$@"
    EX=$?
    CFGFN="$BCFN"
    return $EX
}


######################
# base variable init #
######################

#package name
SCRFN="$(basename "$0")"

#configuriation directory and file
if [ -z "$CFGD" ]; then
    CFGD="/etc/ls"
fi;
CFGFN="$CFGD/$SCRFN"