summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-10-06Release pakakeh.go v0.58.0 (2024-10-06)v0.58.0Shulhan
This release update the minimum Go module to 1.22.0, the last version supported by Go tools. === Breaking changes * lib/http: remove writing StatusNoContent on ResponseTypeNode To make it consistent with RequestTypeNone, the ResponseTypeNone should not write any response header or HTTP status code. It will be handled manually by [Endpoint.Call]. === New features * lib/play: new package for formatting and running Go code Package play provides callable APIs and HTTP handlers to format and run Go code, similar to Go playground, but using HTTP instead of WebSocket. * lib/http: add Server method to register handler by function The RegisterHandleFunc register a pattern with a handler, similar to [http.ServeMux.HandleFunc]. The pattern follow the Go 1.22 format: [METHOD] PATH The METHOD is optional, default to GET. The PATH must not contains the domain name and space. Unlike standard library, variable in PATH is read using ":var" not "{var}". This endpoint will accept any content type and return the body as is; it is up to the handler to read and set the content type and the response headers. If the METHOD and/or PATH is already registered it will panic. * lib/bytes: add function AppendInt64 and AppendUint64 The AppendInt64 append an int64 value into slice of byte. The AppendUint64 append an uint64 value into slice of byte.
2024-10-06go.mod: update all dependenciesShulhan
2024-10-04lib/play: new package for formatting and running Go codeShulhan
Package play provides callable APIs and HTTP handlers to format and run Go code, similar to Go playground, but using HTTP instead of WebSocket.
2024-09-30lib/http: add Server method to register handler by functionShulhan
The RegisterHandleFunc register a pattern with a handler, similar to [http.ServeMux.HandleFunc]. The pattern follow the Go 1.22 format: [METHOD] PATH The METHOD is optional, default to GET. The PATH must not contains the domain name and space. Unlike standard library, variable in PATH is read using ":var" not "{var}". This endpoint will accept any content type and return the body as is; it is up to the handler to read and set the content type and the response headers. If the METHOD and/or PATH is already registered it will panic.
2024-09-30lib/http: remove writing StatusNoContent on ResponseTypeNodeShulhan
To make consistent with RequestTypeNone, the ResponseTypeNone should not write any response header or HTTP status code. It will be handled manually by [Endpoint.Call].
2024-09-30lib/bytes: add function AppendInt64 and AppendUint64Shulhan
The AppendInt64 append an int64 value into slice of byte. The AppendUint64 append an uint64 value into slice of byte.
2024-09-30go.mod: update module to v1.22.0Shulhan
2024-09-30all: simplify some statementsShulhan
2024-09-13all: initialize SPDX licenseShulhan
From now on, any new or changes to files will use SDPX license format in the file header.
2024-09-13all: replace golangci-lint with 'got vet'Shulhan
This is the second time the golangci-lint does not work using go tip. We also found that running golangci-lint on VM with 8GB cause the program crash with out of memory.
2024-09-04Release pakakeh.go v0.57.0 (2024-09-03)v0.57.0Shulhan
=== Breaking changes * lib/sql: replace [http.FileSystem] with [memfs.MemFS] Accepting the [http.FileSystem] means that the parameter can receive an instance of [embed.FS], but in most cases, it will fail. Case example, when we embed SQL files for migration under "db/migration" using the "go:embed" directive, //go:embed db/migration/*.sql var DBMigrationFS embed.FS and then call the [Migrate] function, it will not find any ".sql" files inside the "/" directory because the files is stored under "db/migration/" prefix (also there is no "/" when using embed.FS). === Chores * lib/memfs: document the comparison with "go:embed" directive Compare it to "go:embed", the memfs package is more flexible and portable. Currently, we found three disadvantages of using "go:embed", - The "go:embed" only works if files or directory to be embedded is in the same parent directory. - Accessing the embedded file require the original path. - No development mode. None of those limitation affected the memfs package.
2024-09-04all: fix various linter warningsShulhan
While at it, temporary disable gosec due to excessive report for G115, which may be true, but may also break the current working program. We should alter and fix once we can test and make sure that it does not breaks.
2024-09-03go.mod: update all dependenciesShulhan
2024-08-09lib/sql: replace [http.FileSystem] with [memfs.MemFS]Shulhan
Accepting the [http.FileSystem] means that the parameter can receive an instance of [embed.FS], but in most cases, it will fail. Case example, when we embed SQL files for migration under "db/migration" using the "go:embed" directive, //go:embed db/migration/*.sql var DBMigrationFS embed.FS and then call the [Migrate] function, it will not found any ".sql" files inside the "/" directory because the files is stored under "db/migration/" prefix (also there is no "/" when using embed.FS).
2024-08-09lib/memfs: document the comparison with "go:embed" directiveShulhan
Compared it with "go:embed", the memfs package is more flexible and portable. Currently, we found three disadvantages of using "go:embed", #1 - The "go:embed" only works if files or directory to be embedded is in the same parent directory. #2 - Accessing the embedded file require the original path. #3 - No development mode.
2024-08-04Release pakakeh.go v0.56.0 (2024-08-04)v0.56.0Shulhan
== New features * cmd/emaildecode: CLI to decode email body to plain text The emaildecode accept file as input. If the email header contains content-transfer-encoding with value quoted-printable or base64, it will decode the message body and print it to stdout as plain text. == Bug fixes * lib/memfs: another fix for refresh In previous commit we use wrong condition when handling directory "." as Root. == Enhancements * lib/email: allow message that end lines with LF only Although, a message from network must end with CRLF, a message from (another) client may have been sanitized and end with LF only. * lib/email: decode the message body based on content-transfer-encoding After the header and body has been parsed, if the header contains Content-Transfer-Encoding, we decode the body into its local formats. Currently supported encoding is "quoted-printable" and "base64". == Others * lib/email: export the Header fields By exporting the fields, this allow the caller to filter or manage the field manually. * _doc: add partial note and summary for RFC 2183 The RFC 2183 is define Content-Disposition header field in the internet message. * lib/ini: mention that marshaling []byte does not supported Due to "byte" is considered as "uint8" during reflection, we cannot tell whether the value is slice of byte of slice of number with type uint8.
2024-08-04lib/ini: mention that marshaling []byte does not supportedShulhan
Due to "byte" is considered as "uint8" during reflection, we cannot tell whether the value is slice of byte of slice of number with type uint8.
2024-08-04_doc: add partial note and summary for RFC 2183Shulhan
The RFC 2183 is define Content-Disposition header field in the internet message.
2024-08-04cmd/emaildecode: CLI to decode email body to plain textShulhan
The emaildecode accept file as input. If the email header contains content-transfer-encoding with value quoted-printable or base64, it will decode the message body and print it to stdout as plain text.
2024-08-04lib/email: export the field Fields in HeaderShulhan
By exporting the field, this allow the caller to filter or manage the Header Fields manually.
2024-08-03lib/email: decode the message body based on content-transfer-encodingShulhan
After the header and body has been parsed, if the header contains Content-Transfer-Encoding, we decode the body into its local formats. Currently supported encoding is "quoted-printable" and "base64".
2024-08-03lib/email: allow message that end lines with LF onlyShulhan
Although, a message from network must end with CRLF, a message from (another) client may have been sanitized and end with LF only.
2024-08-03lib/memfs: another fix for refreshShulhan
In previous commit we use wrong condition when handling directory "." as Root.
2024-07-22Release pakakeh.go v0.55.2 (2024-07-22)v0.55.2Shulhan
=== Bug fix * lib/memfs: sanitize the Root directory to fix refresh In [MemFS.refresh], if the requested url is "/file1" and [Options.Root] is ".", the path during refresh become "file1" and if passed to [filepath.Dir] it will return ".". This cause the loop on refresh never end because there is no PathNodes equal with ".".
2024-07-22lib/memfs: sanitize the Root directory to fix refreshShulhan
In [MemFS.refresh], if the requested url is "/file1" and [Options.Root] is ".", the path during refresh become "file1" and if passed to [filepath.Dir] it will return ".". This cause the loop on refresh never end because there is no PathNodes equal with ".".
2024-07-22cmd/bcrypt: check for error during FscanlnShulhan
2024-06-20Release pakakeh.go v0.55.1 (2024-06-20)v0.55.1Shulhan
=== Enhancements * lib/http: add request type HTML The RequestTypeHTML define the content type "text/html". * lib/path: add method Path to Route Unlike String method that may return the key’s name in returned path, the Path method return the path with all the keys has been substituted with values, even if its empty.
2024-06-18all: update the git file linksShulhan
Replace link with master branch to main branch.
2024-06-08lib/http: add request type HTMLShulhan
The RequestTypeHTML define the content type "text/html".
2024-06-08lib/path: add method Path to RouteShulhan
Unlike String method that may return the key's name in returned path, the Path method return the path with all the keys has been substituted with values, even if its empty.
2024-05-04Release pakakeh.go v0.55.0 (2024-05-04)v0.55.0Shulhan
=== Breaking changes * lib/http: refactoring "multipart/form-data" parameters in ClientRequest Previously, ClientRequest with type RequestTypeMultipartForm pass the type "map[string][]byte" in Params. This type hold the file upload, where key is the file name and []byte is content of file. Unfortunately, this model does not correct because a "multipart/form-data" can contains different field name and file name, for example --boundary Content-Disposition: form-data; name="field0"; filename="file0" Content-Type: application/octet-stream <Content of file0> This changes fix this by changing the parameter type for RequestTypeMultipartForm to [*multipart.Form], which affect several functions including [Client.PutFormData] and [GenerateFormData]. === Bug fixes * lib/dns: fix packing and unpacking OPT record The RDATA in OPT records can contains zero or more options. Previously, we only handle unpacking and packing one option, now we handle multiple options. * telegram/bot: fix Webhook URL registration Using [path.Join] cause "https://domain" become "https:/domain" which is not a valid URL. This bug caused by refactoring in b89afa24f. === Enhancements * lib/memfs: set embed file mode to print as octal Using octal in mode make the embedded code more readable, for example mode with permission "0o644" much more readable than 420". * telegram/bot: register GET endpoint to test webhook The call to get "GET <Webhook.URL.Path>/<Token>" will return HTTP status 200 with JSON body '{"code":200,"message":"OK"}'. This endpoint is to check if the bot server is really running. * lib/http: allow all HTTP method to generate HTTP request with body Although the RFC 7231 says that no special defined meaning for a payload in GET, some implementation of HTTP API sometimes use GET with content type "application/x-www-form-urlencoded". * lib/http: add new function [CreateMultipartFileHeader] The CreateMultipartFileHeader help creating [multipart.FileHeader] from raw bytes, that can be assigned to [*multipart.Form].
2024-05-04lib: comply with linter recommendationsShulhan
2024-05-04go.mod: update module go-x-cryptoShulhan
2024-04-24lib/http: refactoring "multipart/form-data" parameters in ClientRequestShulhan
Previously, ClientRequest with type RequestTypeMultipartForm pass the type "map[string][]byte" in Params. This type hold the file upload, where key is the file name and []byte is content of file. Unfortunately, this model does not correct because a "multipart/form-data" can contains different field name and file name, for example --boundary Content-Disposition: form-data; name="field0"; filename="file0" Content-Type: application/octet-stream <Content of file0> This changes fix this by changing the parameter type for RequestTypeMultipartForm to [*multipart.Form], which affect several functions including [Client.PutFormData] and [GenerateFormData]. We also add new function [CreateMultipartFileHeader] to help creating [multipart.FileHeader] from raw bytes, that can be assigned to [*multipart.Form].
2024-04-23lib/http: allow all HTTP method to generate HTTP request with bodyShulhan
Althought the RFC 7231 says that no special defined meaning for a payload in GET, some implementation of HTTP API sometimes use GET with content type "application/x-www-form-urlencoded".
2024-04-17telegram/bot: register GET endpoint to test webhookShulhan
The call to get "GET <Webhook.URL.Path>/<Token>" will return HTTP status 200 with JSON body '{"code":200,"message":"OK"}'. This endpoint is to check if the bot server is really running.
2024-04-17telegram/bot: move Webhook options initialization to separate methodShulhan
2024-04-17telegram/bot: fix Webhook URL registrationShulhan
Using [path.Join] cause "https://domain" become "https:/domain" which is not a valid URL.
2024-04-13go.mod: update all dependenciesShulhan
2024-04-13lib/dns: make server accept record type ANYShulhan
The record type ANY contains multiple A, AAAA or any known resource records that we already support.
2024-04-12lib/dns: return errInvalidMessage when received message cannot be parsedShulhan
By returning error errInvalidMessage, the caller can check whether the issue is in connection or in the message itself. If the issue is not in the message, the caller needs to re-create the connection.
2024-04-12lib/dns: fix packing and unpacking OPT recordShulhan
The RDATA in OPT records can contains zero or _more_ options. Previously, we only handle unpacking and packing one option, now we handle multiple options.
2024-04-10lib/memfs: set embed file mode to print as octalShulhan
Using octal in mode make the code more readable, for example mode with permission "0o644" much more readable than 420.
2024-04-04Release pakakeh.go v0.54.0 (2024-04-04)v0.54.0Shulhan
This is the first release after we move the repository to SourceHut under different name: "pakakeh.go". There are several reasons for moving and naming. First, related to the name of package. We accidentally name the package with "share" a common word in English that does not reflect the content of repository. By moving to other repository, we can rename it to better and unique name, in this "pakakeh.go". Pakakeh is Minang word for tools, and ".go" suffix indicate that the repository related to Go programming language. Second, supporting open source. The new repository is hosted under sourcehut.org, the founder is known to support open source, and all their services are licensed under AGPL, unlike GitHub that are closed sources. Third, regarding GitHub CoPilot. https://docs.github.com/en/site-policy/github-terms/github-terms-of-service#4-license-grant-to-us[The GitHub Terms of Service], allow any public content that are hosted there granted them to parse the content. On one side, GitHub helps and flourish the open source, but on another side have an issues https://githubcopilotinvestigation.com[issues] regarding scraping the copyleft license. === Breaking changes Since we are moving to new repository, we fix all linter warnings and inconsistencies that we cannot changes on previous module. Breaking changes related to naming, * api/slack: [Message.IconUrl] become [Message.IconURL] * lib/dns: DefaultSoaMinumumTtl become DefaultSoaMinimumTTL * lib/email: [Message.SetBodyHtml] become [Message.SetBodyHTML] * lib/http: [Client.GenerateHttpRequest] become [Client.GenerateHTTPRequest] * lib/http: [ClientOptions.ServerUrl] become [ClientOptions.ServerURL] * lib/http: [EndpointRequest.HttpWriter] become [EndpointRequest.HTTPWriter] * lib/http: [EndpointRequest.HttpRequest] become [EndpointRequest.HTTPRequest] * lib/http: [ServerOptions.EnableIndexHtml] become [ServerOptions.EnableIndexHTML] * lib/http: [SSEConn.HttpRequest] become [SSEConn.HTTPRequest] * lib/smtp: [ClientOptions.ServerUrl] become [ClientOptions.ServerURL] * lib/ssh/sftp: [FileAttrs.SetUid] become [FileAttrs.SetUID] * lib/ssh/sftp: [FileAttrs.Uid] become [FileAttrs.UID] Changes on packages, * lib/sql: remove deprecated Row type The Row type has been replaced with Meta type with more flexibility and features for generating type-safe SQL DML. * lib/memfs: remove deprecated Merge function The Merge function has been replaced with [memfs.MemFS.Merge] for better API. * lib: move package "net/html" to "lib/html" Putting "html" under "net" package make no sense. Another reason is to make the package flat under "lib/" directory. * lib: move package "ssh/config" to "lib/sshconfig" Previously the "ssh/config" is used by the parent package "ssh" and "ssh/sftp" which is break the rule of package layer (the top package should be imported by sub package, not the other way around). * lib/http: refactor of RegisterEndpoint and RegisterSSE to non-pointer Once the endpoint registered, the caller should not able to changes any values on endpoint again. * lib/http: refactoring NewServer and NewClient The NewServer and NewClient now accept non-pointer options, so the caller unable to modify the options once the server or client has been created. * lib/http: refactor Client methods to use struct ClientRequest Instead of three parameters, the Client methods now accept single struct [ClientRequest]. * lib/http: refactoring Client methods to return struct ClientResponse Instead of returning three variables, [http.Response], []byte, and error, we combine the [http.Response] and []byte into single struct: ClientResponse. * lib/http: refactoring type of RequestMethod from int to string The reason is to make storing or encoding the RequestMethod value readable from user point of view instead of number, 0, 1, 2, etc. * lib/http: refactor type of RequestType from int to string The reason is to make storing or encoding the RequestType value readable from human point of view instead of number, 0, 1, 2, etc. * lib/http: refactoring type of ResponseType from int to string The reason is to make storing or encoding the value readable from human point of view instead of number, 0, 1, 2, etc. * lib/http: refactoring FSHandler type to return [*memfs.Node] Changing FSHandler type to return [*memfs.Node], allow the handler to redirect or return custom node. One of the use case is when service Single Page Application (SPA), where route is handled by JavaScript. For example, when user requested "/dashboard" but dashboard directory does not exist, one can write the following handler to return "/index.html", node, _ = memfs.Get(`/index.html`) return node * lib/dns: refactor [Message.Unpack] to [UnpackMessage] The previous API for Message is a little bit weird. Its provides creating Message manually, but expose the method [UnpackHeaderQuestion], meanwhile the field packet itself is unexported. In order to make it more clear we refactor [Message.Unpack] to function [UnpackMessage] that accept raw DNS packet. === New features * test/httptest: new helper for testing HTTP server handler The Simulate function simulate HTTP server handler by generating [http.Request] from fields in [SimulateRequest]; and then call [http.HandlerFunc]. The HTTP response from serve along with its raw body and original HTTP request then returned in [*SimulateResult]. * lib/dns: implements RFC 9460 for SVCB RR and HTTPS RR The dns package now support packing and unpacking DNS with record type 64 (SVCB) and 65 (HTTPS). * cmd/ansua: command line interface to help tracking time Usage, ansua <duration> [ "<command>" ] ansua execute a timer on defined duration and optionally run a command when timer finished. When ansua timer is running, one can pause the timer by pressing p+Enter, and resume it by pressing r+Enter, or stopping it using CTRL+c. === Bug fixes * lib/memfs: trim trailing slash ("/") in the path of Get method The MemFS always store directory without slash. If caller request a directory node with slash, it will always return nil. * lib/dns: use ParseUint to parse escaped octet in "\NNN" format Previously, we use ParseInt to parse escaped octet "\NNN", but using this method only allow decimal from 0 to 127, while the specification allow 0 to 255. === Enhancements * lib/http: handle CORS independently Previously, if [CORSOptions.AllowOrigins] not found we return it immediately without checking request "Access-Control-Request-Method", "Access-Control-Request-Headers", and other CORS options. This changes check each of them, a missing allow origins does not means empty allowed method, headers, MaxAge, or credentials. * lib/bytes: add parameter networkByteOrder to ParseHexDump If networkByteOrder is true, the ParseHexDump read each hex string in network byte order or as order defined in text. While at it, fix reading and parsing single byte hex. * cmd/httpdfs: set default include options to empty By default httpdfs now serve all files under base directory.
2024-04-04lib/dns: check for possible packet misformat in SVCB RR and TCP clientShulhan
If the length of packet is not as expected, return immendiately with an error. This is to prevent panic when unpacking the response message.
2024-04-03lib/dns: fix unpacking ipv4hint on SVCB recordShulhan
Somehow the test passed on my main machine, but failed on my laptop. Weird.
2024-04-03cmd/httpdfs: set default include options to emptyShulhan
By default httpdfs now serve all files under base directory.
2024-04-03_AUR: update to include new CLI "ansua"Shulhan
While at it, update the script to help testing building package using local repository.
2024-04-03cmd/ansua: command line interface to help tracking timeShulhan
Usage, ansua <duration> [ "<command>" ] ansua execute a timer on defined duration and optionally run a command when timer finished. When ansua timer is running, one can pause the timer by pressing p+Enter, and resume it by pressing r+Enter, or stopping it using CTRL+c.
2024-03-27lib/dns: refactor [Message.Unpack] to [UnpackMessage]Shulhan
The previous API for Message is a little bit weird. Its provides creating Message manually, but expose the method [UnpackHeaderQuestion], meanwhile the field packet itself is unexported. In order to make it more clear we refactor [Message.Unpack] to function [UnpackMessage] that accept raw DNS packet.