]>
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 | ||
26 | #include <iostream> | |
27 | #include <string> | |
28 | #include <vector> | |
29 | ||
30 | #include <apti18n.h> | |
31 | /*}}}*/ | |
32 | ||
33 | static bool DoAutoDetectProxy(CommandLine &CmdL) | |
34 | { | |
35 | if (CmdL.FileSize() != 2) | |
36 | return _error->Error(_("Need one URL as argument")); | |
37 | URI ServerURL(CmdL.FileList[1]); | |
38 | AutoDetectProxy(ServerURL); | |
39 | std::string SpecificProxy = _config->Find("Acquire::"+ServerURL.Access+"::Proxy::" + ServerURL.Host); | |
40 | ioprintf(std::cout, "Using proxy '%s' for URL '%s'\n", | |
41 | SpecificProxy.c_str(), std::string(ServerURL).c_str()); | |
42 | ||
43 | return true; | |
44 | } | |
45 | ||
46 | static bool DoDownloadFile(CommandLine &CmdL) | |
47 | { | |
48 | if (CmdL.FileSize() <= 2) | |
49 | return _error->Error(_("Must specify at least one pair url/filename")); | |
50 | ||
51 | AcqTextStatus Stat(ScreenWidth, _config->FindI("quiet",0)); | |
52 | pkgAcquire Fetcher(&Stat); | |
53 | ||
54 | size_t fileind = 0; | |
55 | std::vector<std::string> targetfiles; | |
56 | while (fileind + 2 <= CmdL.FileSize()) | |
57 | { | |
58 | std::string download_uri = CmdL.FileList[fileind + 1]; | |
59 | std::string targetfile = CmdL.FileList[fileind + 2]; | |
60 | std::string hash; | |
61 | if (CmdL.FileSize() > fileind + 3) | |
62 | hash = CmdL.FileList[fileind + 3]; | |
63 | // we use download_uri as descr and targetfile as short-descr | |
64 | new pkgAcqFile(&Fetcher, download_uri, hash, 0, download_uri, targetfile, | |
65 | "dest-dir-ignored", targetfile); | |
66 | targetfiles.push_back(targetfile); | |
67 | fileind += 3; | |
68 | } | |
69 | ||
70 | // Disable drop-privs if "_apt" can not write to the target dir | |
71 | CheckDropPrivsMustBeDisabled(Fetcher); | |
72 | ||
73 | bool Failed = false; | |
74 | if (AcquireRun(Fetcher, 0, &Failed, NULL) == false || Failed == true) | |
75 | return _error->Error(_("Download Failed")); | |
76 | if (targetfiles.empty() == false) | |
77 | for (std::vector<std::string>::const_iterator f = targetfiles.begin(); f != targetfiles.end(); ++f) | |
78 | if (FileExists(*f) == false) | |
79 | return _error->Error(_("Download Failed")); | |
80 | ||
81 | return true; | |
82 | } | |
83 | ||
84 | static bool ShowHelp(CommandLine &) | |
85 | { | |
86 | ioprintf(std::cout,_("%s %s for %s compiled on %s %s\n"),PACKAGE,PACKAGE_VERSION, | |
87 | COMMON_ARCH,__DATE__,__TIME__); | |
88 | ||
89 | if (_config->FindB("version") == true) | |
90 | return true; | |
91 | ||
92 | std::cout << | |
93 | _("Usage: apt-helper [options] command\n" | |
94 | " apt-helper [options] download-file uri target-path\n" | |
95 | "\n" | |
96 | "apt-helper is a internal helper for apt\n" | |
97 | "\n" | |
98 | "Commands:\n" | |
99 | " download-file - download the given uri to the target-path\n" | |
100 | " auto-detect-proxy - detect proxy using apt.conf\n" | |
101 | "\n" | |
102 | " This APT helper has Super Meep Powers.\n"); | |
103 | return true; | |
104 | } | |
105 | ||
106 | ||
107 | int main(int argc,const char *argv[]) /*{{{*/ | |
108 | { | |
109 | CommandLine::Dispatch Cmds[] = {{"help",&ShowHelp}, | |
110 | {"download-file", &DoDownloadFile}, | |
111 | {"auto-detect-proxy", &DoAutoDetectProxy}, | |
112 | {0,0}}; | |
113 | ||
114 | std::vector<CommandLine::Args> Args = getCommandArgs( | |
115 | "apt-download", CommandLine::GetCommand(Cmds, argc, argv)); | |
116 | ||
117 | // Set up gettext support | |
118 | setlocale(LC_ALL,""); | |
119 | textdomain(PACKAGE); | |
120 | ||
121 | // Parse the command line and initialize the package library | |
122 | CommandLine CmdL; | |
123 | ParseCommandLine(CmdL, Cmds, Args.data(), &_config, &_system, argc, argv, ShowHelp); | |
124 | ||
125 | InitOutput(); | |
126 | ||
127 | // Match the operation | |
128 | CmdL.DispatchArg(Cmds); | |
129 | ||
130 | // Print any errors or warnings found during parsing | |
131 | bool const Errors = _error->PendingError(); | |
132 | if (_config->FindI("quiet",0) > 0) | |
133 | _error->DumpErrors(); | |
134 | else | |
135 | _error->DumpErrors(GlobalError::DEBUG); | |
136 | return Errors == true ? 100 : 0; | |
137 | } | |
138 | /*}}}*/ |