]>
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> |
f106fecc | 25 | #include <apt-pkg/srvrec.h> |
e43a426e | 26 | |
453b82a3 DK |
27 | #include <iostream> |
28 | #include <string> | |
29 | #include <vector> | |
e43a426e MV |
30 | |
31 | #include <apti18n.h> | |
32 | /*}}}*/ | |
e43a426e | 33 | |
c6ee61ea MV |
34 | static bool DoAutoDetectProxy(CommandLine &CmdL) |
35 | { | |
36 | if (CmdL.FileSize() != 2) | |
37 | return _error->Error(_("Need one URL as argument")); | |
38 | URI ServerURL(CmdL.FileList[1]); | |
39 | AutoDetectProxy(ServerURL); | |
40 | std::string SpecificProxy = _config->Find("Acquire::"+ServerURL.Access+"::Proxy::" + ServerURL.Host); | |
41 | ioprintf(std::cout, "Using proxy '%s' for URL '%s'\n", | |
42 | SpecificProxy.c_str(), std::string(ServerURL).c_str()); | |
43 | ||
44 | return true; | |
45 | } | |
46 | ||
c3ccac92 | 47 | static bool DoDownloadFile(CommandLine &CmdL) |
e43a426e MV |
48 | { |
49 | if (CmdL.FileSize() <= 2) | |
50 | return _error->Error(_("Must specify at least one pair url/filename")); | |
51 | ||
dfad5bee | 52 | AcqTextStatus Stat(std::cout, ScreenWidth,_config->FindI("quiet",0)); |
04a54261 DK |
53 | pkgAcquire Fetcher(&Stat); |
54 | ||
ed793a19 DK |
55 | size_t fileind = 0; |
56 | std::vector<std::string> targetfiles; | |
57 | while (fileind + 2 <= CmdL.FileSize()) | |
58 | { | |
59 | std::string download_uri = CmdL.FileList[fileind + 1]; | |
60 | std::string targetfile = CmdL.FileList[fileind + 2]; | |
61 | std::string hash; | |
62 | if (CmdL.FileSize() > fileind + 3) | |
63 | hash = CmdL.FileList[fileind + 3]; | |
64 | // we use download_uri as descr and targetfile as short-descr | |
65 | new pkgAcqFile(&Fetcher, download_uri, hash, 0, download_uri, targetfile, | |
66 | "dest-dir-ignored", targetfile); | |
67 | targetfiles.push_back(targetfile); | |
68 | fileind += 3; | |
69 | } | |
460601d5 | 70 | |
0d58c26a | 71 | bool Failed = false; |
ed793a19 | 72 | if (AcquireRun(Fetcher, 0, &Failed, NULL) == false || Failed == true) |
0d58c26a | 73 | return _error->Error(_("Download Failed")); |
ed793a19 DK |
74 | if (targetfiles.empty() == false) |
75 | for (std::vector<std::string>::const_iterator f = targetfiles.begin(); f != targetfiles.end(); ++f) | |
76 | if (FileExists(*f) == false) | |
77 | return _error->Error(_("Download Failed")); | |
78 | ||
e43a426e MV |
79 | return true; |
80 | } | |
81 | ||
f106fecc MV |
82 | static bool DoSrvLookup(CommandLine &CmdL) |
83 | { | |
84 | if (CmdL.FileSize() < 1) | |
85 | return _error->Error(_("Must specifc at least one srv record")); | |
cdeb54d4 | 86 | |
f106fecc | 87 | std::vector<SrvRec> srv_records; |
cdeb54d4 | 88 | c1out << "# target priority weight port" << std::endl; |
f106fecc MV |
89 | for(int i=1; CmdL.FileList[i] != NULL; i++) |
90 | { | |
91 | if(GetSrvRecords(CmdL.FileList[i], srv_records) == false) | |
92 | _error->Warning(_("GetSrvRec failed for %s"), CmdL.FileList[i]); | |
93 | for (std::vector<SrvRec>::const_iterator I = srv_records.begin(); | |
94 | I != srv_records.end(); ++I) | |
95 | { | |
cdeb54d4 MV |
96 | c1out << (*I).target.c_str() << " " |
97 | << (*I).priority << " " | |
f106fecc MV |
98 | << (*I).weight << " " |
99 | << (*I).port << " " | |
100 | << std::endl; | |
101 | } | |
102 | } | |
cdeb54d4 | 103 | |
f106fecc MV |
104 | return true; |
105 | } | |
106 | ||
65512241 | 107 | static bool ShowHelp(CommandLine &) |
e43a426e | 108 | { |
249aec3b | 109 | ioprintf(std::cout, "%s %s (%s)\n", PACKAGE, PACKAGE_VERSION, COMMON_ARCH); |
e43a426e MV |
110 | |
111 | if (_config->FindB("version") == true) | |
112 | return true; | |
113 | ||
0d58c26a | 114 | std::cout << |
e43a426e MV |
115 | _("Usage: apt-helper [options] command\n" |
116 | " apt-helper [options] download-file uri target-path\n" | |
117 | "\n" | |
118 | "apt-helper is a internal helper for apt\n" | |
119 | "\n" | |
120 | "Commands:\n" | |
121 | " download-file - download the given uri to the target-path\n" | |
cdeb54d4 | 122 | " srv-lookup - lookup a SRV record (e.g. _http._tcp.ftp.debian.org)\n" |
c6ee61ea | 123 | " auto-detect-proxy - detect proxy using apt.conf\n" |
e43a426e MV |
124 | "\n" |
125 | " This APT helper has Super Meep Powers.\n"); | |
126 | return true; | |
127 | } | |
128 | ||
129 | ||
130 | int main(int argc,const char *argv[]) /*{{{*/ | |
131 | { | |
132 | CommandLine::Dispatch Cmds[] = {{"help",&ShowHelp}, | |
133 | {"download-file", &DoDownloadFile}, | |
f106fecc | 134 | {"srv-lookup", &DoSrvLookup}, |
c6ee61ea | 135 | {"auto-detect-proxy", &DoAutoDetectProxy}, |
e43a426e MV |
136 | {0,0}}; |
137 | ||
138 | std::vector<CommandLine::Args> Args = getCommandArgs( | |
139 | "apt-download", CommandLine::GetCommand(Cmds, argc, argv)); | |
140 | ||
141 | // Set up gettext support | |
142 | setlocale(LC_ALL,""); | |
143 | textdomain(PACKAGE); | |
144 | ||
145 | // Parse the command line and initialize the package library | |
ad7e0941 DK |
146 | CommandLine CmdL; |
147 | ParseCommandLine(CmdL, Cmds, Args.data(), &_config, &_system, argc, argv, ShowHelp); | |
e43a426e MV |
148 | |
149 | InitOutput(); | |
150 | ||
151 | // Match the operation | |
152 | CmdL.DispatchArg(Cmds); | |
153 | ||
154 | // Print any errors or warnings found during parsing | |
155 | bool const Errors = _error->PendingError(); | |
156 | if (_config->FindI("quiet",0) > 0) | |
157 | _error->DumpErrors(); | |
158 | else | |
159 | _error->DumpErrors(GlobalError::DEBUG); | |
160 | return Errors == true ? 100 : 0; | |
161 | } | |
162 | /*}}}*/ |