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