]>
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>
25 #include <apt-pkg/srvrec.h>
34 static bool DoAutoDetectProxy(CommandLine
&CmdL
)
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());
47 static bool DoDownloadFile(CommandLine
&CmdL
)
49 if (CmdL
.FileSize() <= 2)
50 return _error
->Error(_("Must specify at least one pair url/filename"));
52 AcqTextStatus
Stat(std::cout
, ScreenWidth
,_config
->FindI("quiet",0));
53 pkgAcquire
Fetcher(&Stat
);
56 std::vector
<std::string
> targetfiles
;
57 while (fileind
+ 2 <= CmdL
.FileSize())
59 std::string download_uri
= CmdL
.FileList
[fileind
+ 1];
60 std::string targetfile
= CmdL
.FileList
[fileind
+ 2];
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
);
72 if (AcquireRun(Fetcher
, 0, &Failed
, NULL
) == false || Failed
== true)
73 return _error
->Error(_("Download Failed"));
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"));
82 static bool DoSrvLookup(CommandLine
&CmdL
)
84 if (CmdL
.FileSize() < 1)
85 return _error
->Error(_("Must specifc at least one srv record"));
87 std::vector
<SrvRec
> srv_records
;
88 c1out
<< "# target priority weight port" << std::endl
;
89 for(int i
=1; CmdL
.FileList
[i
] != NULL
; i
++)
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
)
96 c1out
<< (*I
).target
.c_str() << " "
97 << (*I
).priority
<< " "
107 static bool ShowHelp(CommandLine
&)
109 ioprintf(std::cout
, "%s %s (%s)\n", PACKAGE
, PACKAGE_VERSION
, COMMON_ARCH
);
111 if (_config
->FindB("version") == true)
115 _("Usage: apt-helper [options] command\n"
116 " apt-helper [options] download-file uri target-path\n"
118 "apt-helper is a internal helper for apt\n"
121 " download-file - download the given uri to the target-path\n"
122 " srv-lookup - lookup a SRV record (e.g. _http._tcp.ftp.debian.org)\n"
123 " auto-detect-proxy - detect proxy using apt.conf\n"
125 " This APT helper has Super Meep Powers.\n");
130 int main(int argc
,const char *argv
[]) /*{{{*/
132 CommandLine::Dispatch Cmds
[] = {{"help",&ShowHelp
},
133 {"download-file", &DoDownloadFile
},
134 {"srv-lookup", &DoSrvLookup
},
135 {"auto-detect-proxy", &DoAutoDetectProxy
},
138 std::vector
<CommandLine::Args
> Args
= getCommandArgs(
139 "apt-download", CommandLine::GetCommand(Cmds
, argc
, argv
));
141 // Set up gettext support
142 setlocale(LC_ALL
,"");
145 // Parse the command line and initialize the package library
147 ParseCommandLine(CmdL
, Cmds
, Args
.data(), &_config
, &_system
, argc
, argv
, ShowHelp
);
151 // Match the operation
152 CmdL
.DispatchArg(Cmds
);
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();
159 _error
->DumpErrors(GlobalError::DEBUG
);
160 return Errors
== true ? 100 : 0;