blob: 9c65bf9b8af59632051ec61d631f7f074dc89043 (
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
|
#!/usr/bin/env bash
###
### arching-kaos-tools
### Tools to interact and build an Arching Kaos Infochain
### Copyright (C) 2021 - 2025 kaotisk
###
### 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 3 of the License, or
### (at your option) 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/>.
###
source $AK_LIBDIR/_ak_zblock
PROGRAM="ak-module-$(realpath $0 | rev |cut -d '/' -f 2 | rev)"
REPODIR="$HOME/projects"
BAREDIR="$HOME/bare"
REPOSTORE="$HOME/.arching-kaos/repostore"
if [ ! -d $BAREDIR ]; then mkdir $BAREDIR; fi
if [ ! -d $REPODIR ]; then echo "no $REPODIR" && exit; fi
if [ ! -f $REPOSTORE ]; then touch $REPOSTORE; fi
_ak_modules_repositories_import(){
REPOS="$(ls -1 $REPODIR)"
for PROJECT in $REPOS
do
cd $BAREDIR
# Can be as well be
# git clone --bare $REPODIR/$PROJECT/.git
# or whatever form git let's you use
git clone --bare http://git.h.kaotisk-hund.com/$PROJECT/.git
if [ $? == 0 ]
then
cd $PROJECT.git
git repack -a
IPFS="$(_ak_ipfs_add .)"
_ak_ipfs_key_gen "$PROJECT.git"
_ak_ipfs_name_publish --key="$PROJECT.git" /ipfs/$IPFS
cd $HOME/bare
else
echo "$PROJECT not a git repo"
fi
done
}
_ak_modules_repositories_update(){
if [ ! -z $1 ]
then
USING="$1"
REPO="$REPODIR/$1/.git"
BARE="$BAREDIR/$1.git"
BARENAME="$1.git"
if [ -d $BARE ]
then
cd $BARE
git pull
git repack -a
IPFS="$(_ak_ipfs_add .)"
_ak_ipfs_name_publish --key="$BARENAME" /ipfs/$IPFS
echo "DONE"
else
echo "NO BARE TO UPDATE"
echo "updating all..."
fi
else
BARES="$(ls -1 $BAREDIR)"
cd $BAREDIR
for PROJECT in $BARES
do
cd "$PROJECT"
git pull
git repack -a
IPFS="$(_ak_ipfs_add .)"
_ak_ipfs_name_publish --key="$PROJECT" /ipfs/$IPFS
cd $BAREDIR
done
fi
}
append-if-needed(){
under="$1"
file="$HOME/.arching-kaos/repos"
lines="$(cat $file)"
found="no"
for line in $lines
do
if [ $found == "yes" ]
then
echo "found $found"
break
else
if [ "$line" == "$under" ]
then
found="yes"
echo "found $found"
break
fi
fi
done
if [ $found == "no" ]
then
echo $under > $file
fi
}
_ak_modules_repositories_add(){
PROJECT="$1"
PROJECTDIR="$REPODIR/$PROJECT"
BAREGITDIR="$BAREDIR/$PROJECT.git"
if [ -d $PROJECTDIR ]
then
cd $HOME/bare
git clone --bare $PROJECTDIR/.git
if [ $? == 0 ]
then
cd $BAREGITDIR
git repack -a
IPFS="$(_ak_ipfs_add .)"
try=_ak_ipfs_key_gen "$PROJECT.git"
if [ $? == 0 ]
then
_ak_ipfs_name_publish --key="$PROJECT.git" /ipfs/$IPFS
printf '{"project":"%s.git","ipns":"%s"}' $PROJECT $try > data
_ak_zblock_pack "repos/add" $PWD/data
echo "Done"
fi
fi
else
echo "$PROJECT not a git repo"
fi
}
_ak_modules_repositories_index(){
_ak_ipfs_key_list_full | grep -e '\.git'
}
set-as-profile(){
IPFS=$(_ak_ipfs_add $REPOSTORE)
if [ $? == 0 ]
then
profile set repositories $IPFS
else
echo error
fi
}
_ak_modules_repositories_publish(){
if [ ! -z $1 ]
then
echo "Filtering for $1..."
index | grep "$1" > $REPOSTORE
set-as-profile
else
echo "Publishing all..."
index > $REPOSTORE
set-as-profile
fi
}
usage(){
echo "-h, --help"
echo "index | add | publish | update"
exit
}
if [ ! -z $1 ]
then
case $1 in
-h | --help) usage; exit;;
index) _ak_modules_repositories_index; exit;;
add) _ak_modules_repositories_add "$2"; exit;;
publish) _ak_modules_repositories_publish "$2"; exit;;
update) _ak_modules_repositories_update "$2"; exit;;
*) echo "No command $1";usage; exit;;
esac
else
usage
fi
|