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-private/private-main.h>
26 #include <apt-pkg/srvrec.h>
35 static bool DoAutoDetectProxy(CommandLine
&CmdL
) /*{{{*/
37 if (CmdL
.FileSize() != 2)
38 return _error
->Error(_("Need one URL as argument"));
39 URI
ServerURL(CmdL
.FileList
[1]);
40 AutoDetectProxy(ServerURL
);
41 std::string SpecificProxy
= _config
->Find("Acquire::"+ServerURL
.Access
+"::Proxy::" + ServerURL
.Host
);
42 ioprintf(std::cout
, "Using proxy '%s' for URL '%s'\n",
43 SpecificProxy
.c_str(), std::string(ServerURL
).c_str());
48 static bool DoDownloadFile(CommandLine
&CmdL
) /*{{{*/
50 if (CmdL
.FileSize() <= 2)
51 return _error
->Error(_("Must specify at least one pair url/filename"));
53 aptAcquireWithTextStatus Fetcher
;
55 std::vector
<std::string
> targetfiles
;
56 while (fileind
+ 2 <= CmdL
.FileSize())
58 std::string download_uri
= CmdL
.FileList
[fileind
+ 1];
59 std::string targetfile
= CmdL
.FileList
[fileind
+ 2];
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
);
71 if (AcquireRun(Fetcher
, 0, &Failed
, NULL
) == false || Failed
== true)
72 return _error
->Error(_("Download Failed"));
73 if (targetfiles
.empty() == false)
74 for (std::vector
<std::string
>::const_iterator f
= targetfiles
.begin(); f
!= targetfiles
.end(); ++f
)
75 if (FileExists(*f
) == false)
76 return _error
->Error(_("Download Failed"));
81 static bool DoSrvLookup(CommandLine
&CmdL
) /*{{{*/
83 if (CmdL
.FileSize() <= 1)
84 return _error
->Error("Must specify at least one SRV record");
86 for(size_t i
= 1; CmdL
.FileList
[i
] != NULL
; ++i
)
88 std::vector
<SrvRec
> srv_records
;
89 std::string
const name
= CmdL
.FileList
[i
];
90 c0out
<< "# Target\tPriority\tWeight\tPort # for " << name
<< std::endl
;
91 size_t const found
= name
.find(":");
92 if (found
!= std::string::npos
)
94 std::string
const host
= name
.substr(0, found
);
95 size_t const port
= atoi(name
.c_str() + found
+ 1);
96 if(GetSrvRecords(host
, port
, srv_records
) == false)
97 _error
->Error(_("GetSrvRec failed for %s"), name
.c_str());
99 else if(GetSrvRecords(name
, srv_records
) == false)
100 _error
->Error(_("GetSrvRec failed for %s"), name
.c_str());
102 for (SrvRec
const &I
: srv_records
)
103 c1out
<< I
.target
<< "\t" << I
.priority
<< "\t" << I
.weight
<< "\t" << I
.port
<< std::endl
;
108 static bool ShowHelp(CommandLine
&) /*{{{*/
111 _("Usage: apt-helper [options] command\n"
112 " apt-helper [options] download-file uri target-path\n"
114 "apt-helper bundles a variety of commands for shell scripts to use\n"
115 "e.g. the same proxy configuration or acquire system as APT would.\n");
119 static std::vector
<aptDispatchWithHelp
> GetCommands() /*{{{*/
122 {"download-file", &DoDownloadFile
, _("download the given uri to the target-path")},
123 {"srv-lookup", &DoSrvLookup
, _("lookup a SRV record (e.g. _http._tcp.ftp.debian.org)")},
124 {"auto-detect-proxy", &DoAutoDetectProxy
, _("detect proxy using apt.conf")},
125 {nullptr, nullptr, nullptr}
129 int main(int argc
,const char *argv
[]) /*{{{*/
134 auto const Cmds
= ParseCommandLine(CmdL
, APT_CMD::APT_HELPER
, &_config
, &_system
, argc
, argv
, &ShowHelp
, &GetCommands
);
138 return DispatchCommandLine(CmdL
, Cmds
);