Skip to content

Commit d8b0811

Browse files
kendarorgKendar
andauthored
146 add mongo wire protocol (#180)
* Stub for mongo server * Mongo server finally storing stuffs * Mongo config * Mongo config * Mongo separated direct vs not * Adding support for typed serialization * private static boolean USE_JSON=false; * Refactor of stuffs * Simplifying the msg structures for serialization * Handling section on OpMsg * Handling OP_QUERY * Json server running :) Added Bson JSon extended format * Removed un-needed imports * Running correctly with close message * Starting with real client * Added serializer * Mongo server mostly working * Working server (able to record) * Poms cleanup * Handling missing configurations * Uniform jackson * Verified settings * Tests with fake server * Mongo working! --------- Co-authored-by: Kendar <[email protected]>
1 parent be910ec commit d8b0811

File tree

182 files changed

+6693
-1447
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

182 files changed

+6693
-1447
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ errors can arise.
1010

1111
The AnsweringMachine is built to overcome this troubles
1212

13+
* <b>[MongoDb integration](docs/plugins/mongo.md) :zap: </b>
1314
* <b>Selenium automated runs :zap: for '[Record/replay db calls in integration tests!](docs/generated/dbtest.md)' and [Hacking google](docs/generated/googlehack.md) (with Selenium working unluckily on Win only)
1415
* <b>:zap: [Quick start](docs/generated/quickstart.md)</b>
1516
<br>

docker/images/apache-php8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ham.apache
22

3-
RUN echo ham.apache-php8 version-4.2.1
3+
RUN echo ham.apache-php8 version-4.2.2
44

55
# Setup apache and php
66
RUN apk add --no-cache \

docker/images/apache/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ham.client
22

3-
RUN echo ham.apache version-4.2.1
3+
RUN echo ham.apache version-4.2.2
44

55
# Setup apache and php
66
RUN apk --no-cache add apache2 apache2-ssl curl \

docker/images/base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM alpine:latest
22
RUN apk update
33
RUN apk upgrade
44

5-
RUN echo ham.base version-4.2.1
5+
RUN echo ham.base version-4.2.2
66

77
ENV JAVA11_HOME /usr/lib/jvm/java-11-openjdk
88

docker/images/client/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ham.base
22

3-
RUN echo ham.client version-4.2.1
3+
RUN echo ham.client version-4.2.2
44

55
# Setup localdns
66
RUN mkdir -p /etc/app/simpledns/

docker/images/externalvpn/forticlient/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN \
3131
#docker run --privileged --cap-add SYS_ADMIN --cap-add DAC_READ_SEARCH --name myvpn myvpn
3232
FROM ham.base:latest
3333

34-
RUN echo ham.openforti version-4.2.1
34+
RUN echo ham.openforti version-4.2.2
3535

3636
COPY --from=builder /usr/bin/openfortivpn /usr/bin/
3737
#/go/bin/glider

docker/images/externalvpn/openconnect/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM ubuntu:latest
44
RUN apt-get update
55
RUN apt-get upgrade -y
66

7-
RUN echo ham.openconnect version-4.2.1
7+
RUN echo ham.openconnect version-4.2.2
88

99
# Block timezone request prompt
1010
ENV DEBIAN_FRONTEND="noninteractive" TZ="Europe/Rome"

docker/images/master/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ham.base
22

3-
RUN echo ham.master version-4.2.1
3+
RUN echo ham.master version-4.2.2
44

55
COPY data/ham.sh /etc/app/ham/
66
COPY data/app /etc/app/ham/app/

docker/images/mysql/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ham.client
22

3-
RUN echo ham.mysql version-4.2.1
3+
RUN echo ham.mysql version-4.2.2
44

55
ENV TIMEZONE=Europe/Paris
66
ENV MYSQL_ROOT_PASSWORD=root

docker/images/openvpn/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM ham.base
22

33

4-
RUN echo ham.openvpn version-4.2.1
4+
RUN echo ham.openvpn version-4.2.2
55

66
# Testing: pamtester
77
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing/" >> /etc/apk/repositories && \

0 commit comments

Comments
 (0)