]>
Commit | Line | Data |
---|---|---|
1 | // -*- mode: cpp; mode: fold -*- | |
2 | // Description /*{{{*/ | |
3 | /* ##################################################################### | |
4 | apt-helper - cmdline helpers | |
5 | ##################################################################### */ | |
6 | /*}}}*/ | |
7 | // Include Files /*{{{*/ | |
8 | #include <config.h> | |
9 | ||
10 | #include <apt-pkg/configuration.h> | |
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> | |
19 | #include <apt-pkg/proxy.h> | |
20 | ||
21 | #include <apt-private/acqprogress.h> | |
22 | #include <apt-private/private-output.h> | |
23 | #include <apt-private/private-download.h> | |
24 | #include <apt-private/private-cmndline.h> | |
25 | #include <apt-private/private-main.h> | |
26 | #include <apt-pkg/srvrec.h> | |
27 | ||
28 | #include <iostream> | |
29 | #include <string> | |
30 | #include <vector> | |
31 | ||
32 | #include <stdlib.h> | |
33 | ||
34 | #include <apti18n.h> | |
35 | /*}}}*/ | |
36 | ||
37 | static bool DoAutoDetectProxy(CommandLine &CmdL) /*{{{*/ | |
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 | } | |
49 | /*}}}*/ | |
50 | static bool DoDownloadFile(CommandLine &CmdL) /*{{{*/ | |
51 | { | |
52 | if (CmdL.FileSize() <= 2) | |
53 | return _error->Error(_("Must specify at least one pair url/filename")); | |
54 | ||
55 | aptAcquireWithTextStatus Fetcher; | |
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 | } | |
71 | ||
72 | bool Failed = false; | |
73 | if (AcquireRun(Fetcher, 0, &Failed, NULL) == false || Failed == true) | |
74 | return _error->Error(_("Download Failed")); | |
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 | ||
80 | return true; | |
81 | } | |
82 | /*}}}*/ | |
83 | static bool DoSrvLookup(CommandLine &CmdL) /*{{{*/ | |
84 | { | |
85 | if (CmdL.FileSize() <= 1) | |
86 | return _error->Error("Must specify at least one SRV record"); | |
87 | ||
88 | for(size_t i = 1; CmdL.FileList[i] != NULL; ++i) | |
89 | { | |
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) | |
95 | { | |
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) | |
99 | _error->Error(_("GetSrvRec failed for %s"), name.c_str()); | |
100 | } | |
101 | else if(GetSrvRecords(name, srv_records) == false) | |
102 | _error->Error(_("GetSrvRec failed for %s"), name.c_str()); | |
103 | ||
104 | for (SrvRec const &I : srv_records) | |
105 | c1out << I.target << "\t" << I.priority << "\t" << I.weight << "\t" << I.port << std::endl; | |
106 | } | |
107 | return true; | |
108 | } | |
109 | /*}}}*/ | |
110 | static bool DoCatFile(CommandLine &CmdL) /*{{{*/ | |
111 | { | |
112 | FileFd fd; | |
113 | FileFd out; | |
114 | char buf[4096]; | |
115 | unsigned long long read; | |
116 | ||
117 | out.OpenDescriptor(STDOUT_FILENO, FileFd::WriteOnly); | |
118 | ||
119 | if (CmdL.FileSize() <= 1) | |
120 | return _error->Error("Must specify at least one file name"); | |
121 | ||
122 | for(size_t i = 1; CmdL.FileList[i] != NULL; ++i) | |
123 | { | |
124 | std::string const name = CmdL.FileList[i]; | |
125 | ||
126 | if (fd.Open(name, FileFd::ReadOnly, FileFd::Extension) == false) | |
127 | return false; | |
128 | ||
129 | for (;;) { | |
130 | if (fd.Read(buf, sizeof(buf), &read) == false) | |
131 | return false; | |
132 | if (read == 0) | |
133 | break; | |
134 | if (out.Write(buf, read) == false) | |
135 | return false; | |
136 | } | |
137 | } | |
138 | return true; | |
139 | } | |
140 | /*}}}*/ | |
141 | static bool ShowHelp(CommandLine &) /*{{{*/ | |
142 | { | |
143 | std::cout << | |
144 | _("Usage: apt-helper [options] command\n" | |
145 | " apt-helper [options] cat-file file ...\n" | |
146 | " apt-helper [options] download-file uri target-path\n" | |
147 | "\n" | |
148 | "apt-helper bundles a variety of commands for shell scripts to use\n" | |
149 | "e.g. the same proxy configuration or acquire system as APT would.\n"); | |
150 | return true; | |
151 | } | |
152 | /*}}}*/ | |
153 | static std::vector<aptDispatchWithHelp> GetCommands() /*{{{*/ | |
154 | { | |
155 | return { | |
156 | {"download-file", &DoDownloadFile, _("download the given uri to the target-path")}, | |
157 | {"srv-lookup", &DoSrvLookup, _("lookup a SRV record (e.g. _http._tcp.ftp.debian.org)")}, | |
158 | {"cat-file", &DoCatFile, _("concatenate files, with automatic decompression")}, | |
159 | {"auto-detect-proxy", &DoAutoDetectProxy, _("detect proxy using apt.conf")}, | |
160 | {nullptr, nullptr, nullptr} | |
161 | }; | |
162 | } | |
163 | /*}}}*/ | |
164 | int main(int argc,const char *argv[]) /*{{{*/ | |
165 | { | |
166 | InitLocale(); | |
167 | ||
168 | CommandLine CmdL; | |
169 | auto const Cmds = ParseCommandLine(CmdL, APT_CMD::APT_HELPER, &_config, &_system, argc, argv, &ShowHelp, &GetCommands); | |
170 | ||
171 | InitOutput(); | |
172 | ||
173 | return DispatchCommandLine(CmdL, Cmds); | |
174 | } | |
175 | /*}}}*/ |