aboutsummaryrefslogtreecommitdiff
path: root/src/lib/mods.cc
blob: 979ecbf6903a0d311a7b9cea76cc031d8c5cf469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#include "libbible.h"
#include <sword/swmgr.h>
#include <sword/swmodule.h>
#include <sword/installmgr.h>
#include <sword/filemgr.h>
#include <sword/remotetrans.h>
#include <unzip.h>
#include <filesystem>

using namespace std;

class myStatusReporter : public sword::StatusReporter {
    public:
        myStatusReporter(libbible::Status *status);
        ~myStatusReporter();
        void preStatus(long totalBytes, long completedBytes, const char *message);
        void update(unsigned long totalBytes, unsigned long completedBytes);
    protected:
        libbible::Status *status;
        string message;
};

myStatusReporter::myStatusReporter(libbible::Status *s) {
    status = s;
}

myStatusReporter::~myStatusReporter() {};

//virtual void libbible::Status::update(unsigned long totalBytes, unsigned long completedBytes, string message) {}

void myStatusReporter::preStatus(long totalBytes, long completedBytes, const char *msg) {
    message = string(msg);
    status->update((unsigned long) totalBytes, (unsigned long) completedBytes, message);
    //printf("Got a status update: %ld / %ld, \"%s\"\n", completedBytes, totalBytes, message.c_str());
}

void myStatusReporter::update(unsigned long totalBytes, unsigned long completedBytes) {
    status->update(totalBytes, completedBytes, message);
    //printf("Got a status update: %ld / %ld, \"%s\"\n", completedBytes, totalBytes, message.c_str());
}

string basedir = (getenv("HOME")) + string("/.sword/");
sword::InstallMgr *installMgr = new sword::InstallMgr((basedir + std::string("InstallMgr")).c_str(), nullptr);
map<string, vector<pair<string, sword::InstallSource *>>> installSources;
map<string, string> languageNames; // maps abbreviation to full name

void libbible::setStatusReporter(libbible::Status& status) {
    myStatusReporter *msr = new myStatusReporter(&status);
    free(installMgr);
    installMgr = new sword::InstallMgr((basedir + std::string("InstallMgr")).c_str(), msr);
    installMgr->setUserDisclaimerConfirmed(true);
}

map<string, vector<string>> libbible::downloadModsAvailable() {
    installSources.clear();
    languageNames.clear();
    mkdir((basedir + std::string("mods.d/")).c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
    mkdir((basedir + std::string("modules/")).c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
    installMgr->setUserDisclaimerConfirmed(true);
    string confpath = basedir + string("InstallMgr/InstallMgr.conf");
    if(! sword::FileMgr::existsFile(confpath.c_str())) {
        // Lifted directly from xiphos
        sword::FileMgr::createParent(confpath.c_str());
        sword::SWConfig config(confpath.c_str());
        sword::InstallSource is("FTP");
        is.caption = "CrossWire";
        is.source = "ftp.crosswire.org";
        is.directory = "/pub/sword/raw";
        config["General"]["PassiveFTP"] = "true";
        config["Sources"]["FTPSource"] = is.getConfEnt();
        config.save();
        installMgr->refreshRemoteSourceConfiguration();
    }
    installMgr->readInstallConf();
    map<string, vector<string>> modsAvailable;
    map<string, vector<string>> languagesToFull;
    //printf("Getting langs...\n");
    for(auto src : installMgr->sources) {
        if(src.second->getMgr()->Modules.empty()) {
            //printf("Refreshing remote source: %s\n", src.second->getConfEnt().c_str());
            installMgr->refreshRemoteSource(src.second);
        }
        for(auto mod : src.second->getMgr()->Modules) {
            auto *curMod = mod.second;
            string type(curMod->getType());
            if(type == "Biblical Texts") {
                string language(curMod->getLanguage());
                string fullLang;
                if(curMod->getConfigEntry("LCSH")) {
                    // Split on periods, last field, strip
                    fullLang = string(curMod->getConfigEntry("LCSH"));
                    // If ends with ., remove
                    if(fullLang.ends_with('.')) fullLang = fullLang.substr(0, fullLang.size()-1);
                    if(fullLang.find('.') != string::npos) fullLang = fullLang.substr(fullLang.find_last_of('.')+1);
                    while(fullLang.starts_with(' ')) fullLang = fullLang.substr(1);
                    while(fullLang.ends_with(' ')) fullLang = fullLang.substr(0, fullLang.size()-1);
                }
                vector<string> newLangs;
                languagesToFull.emplace(language, newLangs);
                languagesToFull[language].push_back(fullLang);
                vector<string> newMods;
                vector<pair<string, sword::InstallSource *>> newSources;
                // emplace only adds if key is unique
                modsAvailable.emplace(language, newMods);
                installSources.emplace(language, newSources);
                modsAvailable[language].push_back(string(curMod->getName()));
                pair<string, sword::InstallSource *> p(string(curMod->getName()), src.second);
                installSources[language].push_back(p);
            }
        }
    }
    // Now use majority voting to move languagesToFull -> languageNames
    for(const auto& [abbrev, fulls] : languagesToFull) {
        std::map<string, int> majVote;
        for(auto full : fulls) {
            majVote.try_emplace(full, 0);
            majVote[full]++;
        }
        string selected = fulls[0];
        for(auto full : fulls) {
            if(majVote[full] > majVote[selected] or (majVote[full] == majVote[selected] and !full.empty() and full.size() < selected.size())) {
                selected = full;
            }
        }
        if(selected.empty()) languageNames[abbrev] = abbrev;
        else languageNames[abbrev] = selected;
    }
    return modsAvailable;
}

std::map<std::string, std::string> libbible::getLanguageNames() {
    if(languageNames.empty()) {
        downloadModsAvailable();
    }
    return languageNames;
}

void libbible::terminateDownload() {
    installMgr->terminate();
}

bool libbible::installModFromInternet(string language, string name) {
    // Searching through map<string, vector<pair<string, sword::InstallSource *>>> installSources;
    if(installSources.empty()) {
        downloadModsAvailable();
    }
    for (pair<string, sword::InstallSource *> p : installSources[language]) {
        if(p.first == name) {
            sword::SWMgr mgr(basedir.c_str());
            if(installMgr->installModule(&mgr, 0, name.c_str(), p.second) == 0) {
                printf("Installed from %s\n", p.second->getConfEnt().c_str());
                return true;
            }
            return false;
        }
    }
    return false;
}

#define READ_SIZE 8192
#define delim '/'

bool libbible::installModFromZip(string filename) {
    unzFile zipfile = unzOpen(filename.c_str());
    if(zipfile == NULL) {
        return false;
    }
    unz_global_info global_info;
    if(unzGetGlobalInfo(zipfile, &global_info) != UNZ_OK) {
        unzClose(zipfile);
        return false;
    }
    cout << "Unzipping " << filename << "\n";
    char read_buffer[READ_SIZE];
    ulong i;
    for(i = 0; i < global_info.number_entry; i++) {
        unz_file_info file_info;
        if(unzGetCurrentFileInfo(zipfile, &file_info, read_buffer, READ_SIZE, NULL, 0, NULL, 0) != UNZ_OK) {
            unzClose(zipfile);
            return false;
        }
        string fname = basedir + string(read_buffer);
        cout << "Unpacking " << fname << "\n";
        size_t pos = fname.find_last_of(delim);
        if(pos != string::npos) {
            string path = fname.substr(0, pos);
            filesystem::create_directories(path);
        }
        if(unzOpenCurrentFile(zipfile) != UNZ_OK) {
            unzCloseCurrentFile(zipfile);
            unzClose(zipfile);
            return false;
        }
        if(pos != fname.size()-1) { // It is not a directory
            FILE *out = fopen(fname.c_str(), "wb");
            if(out == NULL) {
                unzCloseCurrentFile(zipfile);
                unzClose(zipfile);
                return false;
            }
            int bytesRead;
            do {
                bytesRead = unzReadCurrentFile(zipfile, read_buffer, READ_SIZE);
                if(bytesRead < 0) {
                    printf("error %d\n", bytesRead);
                    unzCloseCurrentFile(zipfile);
                    unzClose(zipfile);
                    return false;
                }
                if(bytesRead > 0) {
                    fwrite(read_buffer, bytesRead, 1, out);
                }
            } while(bytesRead > 0);
            fclose(out);
        }
        unzCloseCurrentFile(zipfile);
        unzGoToNextFile(zipfile);
    }
    unzClose(zipfile);
    return true;
}

void libbible::uninstallMod(string modname) {
    sword::SWMgr mgr(basedir.c_str());
    sword::ModMap::iterator it = mgr.Modules.find(modname.c_str());
    if(it != mgr.Modules.end()) {
        installMgr->removeModule(&mgr, it->second->getName());
    }
}