]> git.saurik.com Git - apt.git/blame - cmdline/apt-helper.cc
use clock() as source for SRV randomness
[apt.git] / cmdline / apt-helper.cc
CommitLineData
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
34static 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 47static 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
82static bool DoSrvLookup(CommandLine &CmdL)
83{
84 if (CmdL.FileSize() < 1)
76abe9a5 85 return _error->Error("Must specify at least one SRV record");
cdeb54d4 86
76abe9a5 87 for(size_t i = 1; CmdL.FileList[i] != NULL; ++i)
f106fecc 88 {
76abe9a5
DK
89 std::vector<SrvRec> srv_records;
90 std::string const name = CmdL.FileList[i];
91 c0out << "# Target\tPriority\tWeight\tPort # for " << name << std::endl;
92 size_t const found = name.find(":");
93 if (found != std::string::npos)
f106fecc 94 {
76abe9a5
DK
95 std::string const host = name.substr(0, found);
96 size_t const port = atoi(name.c_str() + found + 1);
97 if(GetSrvRecords(host, port, srv_records) == false)
98 _error->Warning(_("GetSrvRec failed for %s"), name.c_str());
f106fecc 99 }
76abe9a5
DK
100 else if(GetSrvRecords(name, srv_records) == false)
101 _error->Warning(_("GetSrvRec failed for %s"), name.c_str());
cdeb54d4 102
76abe9a5
DK
103 for (SrvRec const &I : srv_records)
104 c1out << I.target << "\t" << I.priority << "\t" << I.weight << "\t" << I.port << std::endl;
105 }
f106fecc
MV
106 return true;
107}
108
65512241 109static bool ShowHelp(CommandLine &)
e43a426e 110{
249aec3b 111 ioprintf(std::cout, "%s %s (%s)\n", PACKAGE, PACKAGE_VERSION, COMMON_ARCH);
e43a426e
MV
112
113 if (_config->FindB("version") == true)
114 return true;
115
0d58c26a 116 std::cout <<
e43a426e
MV
117 _("Usage: apt-helper [options] command\n"
118 " apt-helper [options] download-file uri target-path\n"
119 "\n"
120 "apt-helper is a internal helper for apt\n"
121 "\n"
122 "Commands:\n"
123 " download-file - download the given uri to the target-path\n"
cdeb54d4 124 " srv-lookup - lookup a SRV record (e.g. _http._tcp.ftp.debian.org)\n"
c6ee61ea 125 " auto-detect-proxy - detect proxy using apt.conf\n"
e43a426e
MV
126 "\n"
127 " This APT helper has Super Meep Powers.\n");
128 return true;
129}
130
131
132int main(int argc,const char *argv[]) /*{{{*/
133{
134 CommandLine::Dispatch Cmds[] = {{"help",&ShowHelp},
135 {"download-file", &DoDownloadFile},
f106fecc 136 {"srv-lookup", &DoSrvLookup},
c6ee61ea 137 {"auto-detect-proxy", &DoAutoDetectProxy},
e43a426e
MV
138 {0,0}};
139
140 std::vector<CommandLine::Args> Args = getCommandArgs(
141 "apt-download", CommandLine::GetCommand(Cmds, argc, argv));
142
143 // Set up gettext support
144 setlocale(LC_ALL,"");
145 textdomain(PACKAGE);
146
147 // Parse the command line and initialize the package library
ad7e0941
DK
148 CommandLine CmdL;
149 ParseCommandLine(CmdL, Cmds, Args.data(), &_config, &_system, argc, argv, ShowHelp);
e43a426e
MV
150
151 InitOutput();
152
153 // Match the operation
154 CmdL.DispatchArg(Cmds);
155
156 // Print any errors or warnings found during parsing
157 bool const Errors = _error->PendingError();
158 if (_config->FindI("quiet",0) > 0)
159 _error->DumpErrors();
160 else
161 _error->DumpErrors(GlobalError::DEBUG);
162 return Errors == true ? 100 : 0;
163}
164 /*}}}*/