]>
Commit | Line | Data |
---|---|---|
e43a426e MV |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
3 | /* ##################################################################### | |
4 | apt-helper - cmdline helpers | |
5 | ##################################################################### */ | |
6 | /*}}}*/ | |
7 | // Include Files /*{{{*/ | |
8 | #include <config.h> | |
9 | ||
453b82a3 | 10 | #include <apt-pkg/configuration.h> |
e43a426e MV |
11 | #include <apt-pkg/cmndline.h> |
12 | #include <apt-pkg/error.h> | |
13 | #include <apt-pkg/init.h> | |
14 | #include <apt-pkg/strutl.h> | |
15 | #include <apt-pkg/pkgsystem.h> | |
16 | #include <apt-pkg/fileutl.h> | |
17 | #include <apt-pkg/acquire.h> | |
18 | #include <apt-pkg/acquire-item.h> | |
c6ee61ea | 19 | #include <apt-pkg/proxy.h> |
e43a426e MV |
20 | |
21 | #include <apt-private/acqprogress.h> | |
22 | #include <apt-private/private-output.h> | |
0d58c26a | 23 | #include <apt-private/private-download.h> |
e43a426e | 24 | #include <apt-private/private-cmndline.h> |
e7e10e47 | 25 | #include <apt-private/private-main.h> |
f106fecc | 26 | #include <apt-pkg/srvrec.h> |
e43a426e | 27 | |
453b82a3 DK |
28 | #include <iostream> |
29 | #include <string> | |
30 | #include <vector> | |
e43a426e | 31 | |
2f17261d FF |
32 | #include <stdlib.h> |
33 | ||
e43a426e MV |
34 | #include <apti18n.h> |
35 | /*}}}*/ | |
e43a426e | 36 | |
011188e3 | 37 | static bool DoAutoDetectProxy(CommandLine &CmdL) /*{{{*/ |
c6ee61ea MV |
38 | { |
39 | if (CmdL.FileSize() != 2) | |
40 | return _error->Error(_("Need one URL as argument")); | |
41 | URI ServerURL(CmdL.FileList[1]); | |
42 | AutoDetectProxy(ServerURL); | |
43 | std::string SpecificProxy = _config->Find("Acquire::"+ServerURL.Access+"::Proxy::" + ServerURL.Host); | |
44 | ioprintf(std::cout, "Using proxy '%s' for URL '%s'\n", | |
45 | SpecificProxy.c_str(), std::string(ServerURL).c_str()); | |
46 | ||
47 | return true; | |
48 | } | |
011188e3 DK |
49 | /*}}}*/ |
50 | static bool DoDownloadFile(CommandLine &CmdL) /*{{{*/ | |
e43a426e MV |
51 | { |
52 | if (CmdL.FileSize() <= 2) | |
53 | return _error->Error(_("Must specify at least one pair url/filename")); | |
54 | ||
2b0660b5 | 55 | aptAcquireWithTextStatus Fetcher; |
ed793a19 DK |
56 | size_t fileind = 0; |
57 | std::vector<std::string> targetfiles; | |
58 | while (fileind + 2 <= CmdL.FileSize()) | |
59 | { | |
60 | std::string download_uri = CmdL.FileList[fileind + 1]; | |
61 | std::string targetfile = CmdL.FileList[fileind + 2]; | |
62 | std::string hash; | |
63 | if (CmdL.FileSize() > fileind + 3) | |
64 | hash = CmdL.FileList[fileind + 3]; | |
65 | // we use download_uri as descr and targetfile as short-descr | |
66 | new pkgAcqFile(&Fetcher, download_uri, hash, 0, download_uri, targetfile, | |
67 | "dest-dir-ignored", targetfile); | |
68 | targetfiles.push_back(targetfile); | |
69 | fileind += 3; | |
70 | } | |
460601d5 | 71 | |
0d58c26a | 72 | bool Failed = false; |
ed793a19 | 73 | if (AcquireRun(Fetcher, 0, &Failed, NULL) == false || Failed == true) |
0d58c26a | 74 | return _error->Error(_("Download Failed")); |
ed793a19 DK |
75 | if (targetfiles.empty() == false) |
76 | for (std::vector<std::string>::const_iterator f = targetfiles.begin(); f != targetfiles.end(); ++f) | |
77 | if (FileExists(*f) == false) | |
78 | return _error->Error(_("Download Failed")); | |
79 | ||
e43a426e MV |
80 | return true; |
81 | } | |
011188e3 DK |
82 | /*}}}*/ |
83 | static bool DoSrvLookup(CommandLine &CmdL) /*{{{*/ | |
f106fecc | 84 | { |
7414af7f | 85 | if (CmdL.FileSize() <= 1) |
76abe9a5 | 86 | return _error->Error("Must specify at least one SRV record"); |
cdeb54d4 | 87 | |
76abe9a5 | 88 | for(size_t i = 1; CmdL.FileList[i] != NULL; ++i) |
f106fecc | 89 | { |
76abe9a5 DK |
90 | std::vector<SrvRec> srv_records; |
91 | std::string const name = CmdL.FileList[i]; | |
92 | c0out << "# Target\tPriority\tWeight\tPort # for " << name << std::endl; | |
93 | size_t const found = name.find(":"); | |
94 | if (found != std::string::npos) | |
f106fecc | 95 | { |
76abe9a5 DK |
96 | std::string const host = name.substr(0, found); |
97 | size_t const port = atoi(name.c_str() + found + 1); | |
98 | if(GetSrvRecords(host, port, srv_records) == false) | |
7414af7f | 99 | _error->Error(_("GetSrvRec failed for %s"), name.c_str()); |
f106fecc | 100 | } |
76abe9a5 | 101 | else if(GetSrvRecords(name, srv_records) == false) |
7414af7f | 102 | _error->Error(_("GetSrvRec failed for %s"), name.c_str()); |
cdeb54d4 | 103 | |
76abe9a5 DK |
104 | for (SrvRec const &I : srv_records) |
105 | c1out << I.target << "\t" << I.priority << "\t" << I.weight << "\t" << I.port << std::endl; | |
106 | } | |
f106fecc MV |
107 | return true; |
108 | } | |
011188e3 | 109 | /*}}}*/ |
df46a87a JAK |
110 | static const APT::Configuration::Compressor *FindCompressor(std::vector<APT::Configuration::Compressor> const & compressors, std::string name) /*{{{*/ |
111 | { | |
112 | APT::Configuration::Compressor const * compressor = NULL; | |
113 | for (auto const & c : compressors) | |
114 | { | |
115 | if (compressor != NULL && c.Cost >= compressor->Cost) | |
116 | continue; | |
117 | if (c.Name == name || c.Extension == name || (!c.Extension.empty() && c.Extension.substr(1) == name)) | |
118 | compressor = &c; | |
119 | } | |
120 | ||
121 | return compressor; | |
122 | } | |
123 | /*}}}*/ | |
2658e1c5 JAK |
124 | static bool DoCatFile(CommandLine &CmdL) /*{{{*/ |
125 | { | |
126 | FileFd fd; | |
127 | FileFd out; | |
df46a87a JAK |
128 | std::string const compressorName = _config->Find("Apt-Helper::Cat-File::Compress", ""); |
129 | ||
130 | if (compressorName.empty() == false) | |
131 | { | |
132 | ||
133 | auto const compressors = APT::Configuration::getCompressors(); | |
134 | auto const compressor = FindCompressor(compressors, compressorName); | |
2658e1c5 | 135 | |
df46a87a JAK |
136 | if (compressor == NULL) |
137 | return _error->Error("Could not find compressor: %s", compressorName.c_str()); | |
138 | ||
139 | if (out.OpenDescriptor(STDOUT_FILENO, FileFd::WriteOnly, *compressor) == false) | |
140 | return false; | |
141 | } else | |
142 | { | |
143 | if (out.OpenDescriptor(STDOUT_FILENO, FileFd::WriteOnly) == false) | |
144 | return false; | |
145 | } | |
2658e1c5 JAK |
146 | |
147 | if (CmdL.FileSize() <= 1) | |
148 | return _error->Error("Must specify at least one file name"); | |
149 | ||
150 | for(size_t i = 1; CmdL.FileList[i] != NULL; ++i) | |
151 | { | |
152 | std::string const name = CmdL.FileList[i]; | |
153 | ||
154 | if (fd.Open(name, FileFd::ReadOnly, FileFd::Extension) == false) | |
155 | return false; | |
156 | ||
ff2717e8 JAK |
157 | if (CopyFile(fd, out) == false) |
158 | return false; | |
2658e1c5 JAK |
159 | } |
160 | return true; | |
161 | } | |
162 | /*}}}*/ | |
f6777222 | 163 | static bool ShowHelp(CommandLine &) /*{{{*/ |
e43a426e | 164 | { |
0d58c26a | 165 | std::cout << |
8561c2fe | 166 | _("Usage: apt-helper [options] command\n" |
2658e1c5 | 167 | " apt-helper [options] cat-file file ...\n" |
8561c2fe DK |
168 | " apt-helper [options] download-file uri target-path\n" |
169 | "\n" | |
170 | "apt-helper bundles a variety of commands for shell scripts to use\n" | |
d04e44ac | 171 | "e.g. the same proxy configuration or acquire system as APT would.\n"); |
e43a426e MV |
172 | return true; |
173 | } | |
011188e3 | 174 | /*}}}*/ |
f6777222 | 175 | static std::vector<aptDispatchWithHelp> GetCommands() /*{{{*/ |
e43a426e | 176 | { |
011188e3 | 177 | return { |
cbbee23e DK |
178 | {"download-file", &DoDownloadFile, _("download the given uri to the target-path")}, |
179 | {"srv-lookup", &DoSrvLookup, _("lookup a SRV record (e.g. _http._tcp.ftp.debian.org)")}, | |
2658e1c5 | 180 | {"cat-file", &DoCatFile, _("concatenate files, with automatic decompression")}, |
cbbee23e DK |
181 | {"auto-detect-proxy", &DoAutoDetectProxy, _("detect proxy using apt.conf")}, |
182 | {nullptr, nullptr, nullptr} | |
183 | }; | |
011188e3 DK |
184 | } |
185 | /*}}}*/ | |
186 | int main(int argc,const char *argv[]) /*{{{*/ | |
187 | { | |
188 | InitLocale(); | |
e43a426e | 189 | |
ad7e0941 | 190 | CommandLine CmdL; |
90986d4d | 191 | auto const Cmds = ParseCommandLine(CmdL, APT_CMD::APT_HELPER, &_config, &_system, argc, argv, &ShowHelp, &GetCommands); |
e43a426e MV |
192 | |
193 | InitOutput(); | |
194 | ||
e7e10e47 | 195 | return DispatchCommandLine(CmdL, Cmds); |
e43a426e MV |
196 | } |
197 | /*}}}*/ |