summaryrefslogtreecommitdiffabout
authorMichael Krelin <hacker@klever.net>2012-01-20 23:22:36 (UTC)
committer Michael Krelin <hacker@klever.net>2012-01-20 23:22:36 (UTC)
commit5f346b73b3d130022d56270ae174f654b3c2d77a (patch) (side-by-side diff)
treea51ad2e15089c80cd30dc2e8073bdddb55a3cddf
parent8035dab48b39f1b0bb9e7aba5ce69fbf59259406 (diff)
downloadiii-5f346b73b3d130022d56270ae174f654b3c2d77a.zip
iii-5f346b73b3d130022d56270ae174f654b3c2d77a.tar.gz
iii-5f346b73b3d130022d56270ae174f654b3c2d77a.tar.bz2
a better way to detect the file
now that the list of file types is eliminated it should accept whatever file cards wants to send Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--src/eyefiservice.cc21
1 files changed, 9 insertions, 12 deletions
diff --git a/src/eyefiservice.cc b/src/eyefiservice.cc
index 276977a..d9318ed 100644
--- a/src/eyefiservice.cc
+++ b/src/eyefiservice.cc
@@ -127,6 +127,12 @@ int eyefiService::UploadPhoto(
macaddress.c_str(), fileid, filename.c_str(), filesize,
filesignature.c_str(), encryption.c_str(), flags );
#endif
+ std::string::size_type fnl=filename.length();
+ if(fnl<sizeof(".tar") || strncmp(filename.c_str()+fnl-sizeof(".tar")+sizeof(""),".tar",sizeof(".tar")))
+ throw std::runtime_error(gnu::autosprintf("honestly, I expected the tarball coming here, not '%s'",filename.c_str()));
+ std::string the_file(filename,0,fnl-sizeof(".tar")+sizeof(""));
+ std::string the_log = the_file+".log";
+
eyekinfig_t eyekinfig(macaddress);
umask(eyekinfig.get_umask());
@@ -169,18 +175,9 @@ int eyefiService::UploadPhoto(
tarchive_t a((*i).ptr,(*i).size);
while(a.read_next_header()) {
- std::string f = indir.get_file(a.entry_pathname());
- std::string::size_type fl = f.length();
- if(fl<4) continue;
- const char *s = f.c_str()+fl-4;
- static const char *suffixes[] = { ".JPG",".AVI",".MP4",".NEF",".RAW",".TIF",".DNG",".CRW",
- ".RW2",".CR2" };
- if(std::find_if(suffixes,suffixes+sizeof(suffixes)/sizeof(*suffixes),
- std::not1(std::bind1st(std::ptr_fun(strcasecmp),s)))
- != suffixes+sizeof(suffixes)/sizeof(*suffixes))
- tf = f;
- else if(!strcasecmp(s,".log"))
- lf = f;
+ std::string ep = a.entry_pathname(), f = indir.get_file(ep);
+ if(ep==the_file) tf = f;
+ else if(ep==the_log) lf = f;
else continue;
int fd=open(f.c_str(),O_CREAT|O_WRONLY,0666);
if(fd<0)