Không có mô tả

Piotr Czajkowski cf9d8416eb Experimenting with goreleaser 2 năm trước cách đây
.github a9e450c5ad Let's add action 4 năm trước cách đây
html 3e20bf25b9 Cosmetics 4 năm trước cách đây
log 8c7a06f987 first commit 7 năm trước cách đây
static 311a51a3d4 OK, be consistent in the right way 3 năm trước cách đây
testFiles 734cded5e3 Getting more OO, added some tests 7 năm trước cách đây
.deepsource.toml d214bb0a5f Update .deepsource.toml 3 năm trước cách đây
.gitignore cf9d8416eb Experimenting with goreleaser 2 năm trước cách đây
.goreleaser.yml cf9d8416eb Experimenting with goreleaser 2 năm trước cách đây
LICENSE.md d7df5a403b License 6 năm trước cách đây
README.md 5145784318 Added DeepSource badge 3 năm trước cách đây
app.go cf8d390532 Cosmetics 3 năm trước cách đây
app_test.go 4207991958 Fixed mistake 3 năm trước cách đây
go.mod 91445ce1ad Added go.mod 3 năm trước cách đây
http.go ca774b2823 A bit of order 3 năm trước cách đây
logger.go 1b753c7ac3 This makes more sense 3 năm trước cách đây
makefile cf9d8416eb Experimenting with goreleaser 2 năm trước cách đây
search.go 74fb5d2330 Always check 3 năm trước cách đây
searchInfo.go 7921d7097f Refactor 6 năm trước cách đây
search_test.go 74fb5d2330 Always check 3 năm trước cách đây
secrets.json 8c7a06f987 first commit 7 năm trước cách đây
server.go ee344a2b0a Check if you have any TMs 3 năm trước cách đây
tm.go 0136fa2c68 Check the status 3 năm trước cách đây
tm_test.go 0136fa2c68 Check the status 3 năm trước cách đây

README.md

TM Search for memoQ Server

Go Report Card DeepSource

This is a proof-of-concept tool (hobby project) which utilizes memoQ server Resources API.

It provides simple HTML interface which of course can be improved. There's also logging mechanism which collects requestor's IP, phrase he was searching for, target language and number of served results. Logs are saved in log subfolder in separate .log files (one per day) in CSV format.

You just need to build it and make sure that subfolders html and log are present in the same location as your binary. You'll also need secrets.json, just make sure you fill it with proper credentials. Account used needs to be able to list TMs on your server and read their content, of course. It's using only standard GO packages, so there are no external dependencies.

Usage is simple. To get started just launch compiled binary with -b switch followed by the URL of your Resources API. Now just navigate to localhost/ in your browser and start searching your TMs. You may also want to adjust html/languages.json to be more relevant to your environment.

Optional parameters are as follows:

  • h - if you want to serve it under hostname different than localhost
  • p - if you want to serve it on port different than 80

You can also navigate to localhost/tms to list all your TMs or to localhost/tms?lang=fre-FR to list TMs for given language.

This app was designed to be used on local network or via VPN, so it lacks any security which would be necessary when exposed to Internet. It was also never tested under heavy load. You're free to use it however you wish, but I take no responsibility for any possible damage caused by it.