]>
git.saurik.com Git - apt.git/blob - cmdline/apt-helper.cc
1 // -*- mode: cpp; mode: fold -*-
3 /* #####################################################################
4 apt-helper - cmdline helpers
5 ##################################################################### */
7 // Include Files /*{{{*/
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>
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>
33 static bool DoAutoDetectProxy(CommandLine
&CmdL
)
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());
46 static bool DoDownloadFile(CommandLine
&CmdL
)
48 if (CmdL
.FileSize() <= 2)
49 return _error
->Error(_("Must specify at least one pair url/filename"));
51 AcqTextStatus
Stat(ScreenWidth
, _config
->FindI("quiet",0));
52 pkgAcquire
Fetcher(&Stat
);
54 std::string download_uri
= CmdL
.FileList
[1];
55 std::string targetfile
= CmdL
.FileList
[2];
57 if (CmdL
.FileSize() > 3)
58 hash
= CmdL
.FileList
[3];
59 // we use download_uri as descr and targetfile as short-descr
60 new pkgAcqFile(&Fetcher
, download_uri
, hash
, 0, download_uri
, targetfile
,
61 "dest-dir-ignored", targetfile
);
63 // Disable drop-privs if "_apt" can not write to the target dir
64 CheckDropPrivsMustBeDisabled(Fetcher
);
67 if (AcquireRun(Fetcher
, 0, &Failed
, NULL
) == false || Failed
== true ||
68 FileExists(targetfile
) == false)
69 return _error
->Error(_("Download Failed"));
73 static bool ShowHelp(CommandLine
&)
75 ioprintf(std::cout
,_("%s %s for %s compiled on %s %s\n"),PACKAGE
,PACKAGE_VERSION
,
76 COMMON_ARCH
,__DATE__
,__TIME__
);
78 if (_config
->FindB("version") == true)
82 _("Usage: apt-helper [options] command\n"
83 " apt-helper [options] download-file uri target-path\n"
85 "apt-helper is a internal helper for apt\n"
88 " download-file - download the given uri to the target-path\n"
89 " auto-detect-proxy - detect proxy using apt.conf\n"
91 " This APT helper has Super Meep Powers.\n");
96 int main(int argc
,const char *argv
[]) /*{{{*/
98 CommandLine::Dispatch Cmds
[] = {{"help",&ShowHelp
},
99 {"download-file", &DoDownloadFile
},
100 {"auto-detect-proxy", &DoAutoDetectProxy
},
103 std::vector
<CommandLine::Args
> Args
= getCommandArgs(
104 "apt-download", CommandLine::GetCommand(Cmds
, argc
, argv
));
106 // Set up gettext support
107 setlocale(LC_ALL
,"");
110 // Parse the command line and initialize the package library
111 CommandLine
CmdL(Args
.data(),_config
);
112 if (pkgInitConfig(*_config
) == false ||
113 CmdL
.Parse(argc
,argv
) == false ||
114 pkgInitSystem(*_config
,_system
) == false)
116 if (_config
->FindB("version") == true)
118 _error
->DumpErrors();
122 // See if the help should be shown
123 if (_config
->FindB("help") == true ||
124 _config
->FindB("version") == true ||
125 CmdL
.FileSize() == 0)
133 // Match the operation
134 CmdL
.DispatchArg(Cmds
);
136 // Print any errors or warnings found during parsing
137 bool const Errors
= _error
->PendingError();
138 if (_config
->FindI("quiet",0) > 0)
139 _error
->DumpErrors();
141 _error
->DumpErrors(GlobalError::DEBUG
);
142 return Errors
== true ? 100 : 0;