mirror of
https://github.com/jetzig-framework/jetzig.git
synced 2025-05-14 14:06:08 +00:00

Create mailers with `jetzig generate mailer <name>`. Mailers define default values for email fields (e.g. subject, from address, etc.). Mailers use Zmpl for rendering text/HTML parts. Send an email from a request with `request.mail()`. Call `deliver(.background, .{})` on the return value to use the built-in mail job to send the email asynchronously. Improve query/HTTP request body param parsing - unescape `+` and `%XX` characters.
87 lines
3.1 KiB
Zig
87 lines
3.1 KiB
Zig
const std = @import("std");
|
|
const args = @import("args");
|
|
const secret = @import("generate/secret.zig");
|
|
const util = @import("../util.zig");
|
|
|
|
const view = @import("generate/view.zig");
|
|
const partial = @import("generate/partial.zig");
|
|
const layout = @import("generate/layout.zig");
|
|
const middleware = @import("generate/middleware.zig");
|
|
const job = @import("generate/job.zig");
|
|
const mailer = @import("generate/mailer.zig");
|
|
|
|
/// Command line options for the `generate` command.
|
|
pub const Options = struct {
|
|
pub const meta = .{
|
|
.usage_summary = "[view|partial|layout|mailer|middleware|job|secret] [options]",
|
|
.full_text =
|
|
\\Generate scaffolding for views, middleware, and other objects.
|
|
\\
|
|
\\Pass `--help` to any generator for more information, e.g.:
|
|
\\
|
|
\\ jetzig generate view --help
|
|
\\
|
|
,
|
|
};
|
|
};
|
|
|
|
/// Run the `jetzig generate` command.
|
|
pub fn run(
|
|
allocator: std.mem.Allocator,
|
|
options: Options,
|
|
writer: anytype,
|
|
positionals: [][]const u8,
|
|
other_options: struct { help: bool },
|
|
) !void {
|
|
var cwd = try util.detectJetzigProjectDir();
|
|
defer cwd.close();
|
|
|
|
_ = options;
|
|
|
|
const Generator = enum { view, partial, layout, mailer, middleware, job, secret };
|
|
var sub_args = std.ArrayList([]const u8).init(allocator);
|
|
defer sub_args.deinit();
|
|
|
|
const map = std.ComptimeStringMap(Generator, .{
|
|
.{ "view", .view },
|
|
.{ "partial", .partial },
|
|
.{ "layout", .layout },
|
|
.{ "job", .job },
|
|
.{ "mailer", .mailer },
|
|
.{ "middleware", .middleware },
|
|
.{ "secret", .secret },
|
|
});
|
|
|
|
var available_buf = std.ArrayList([]const u8).init(allocator);
|
|
defer available_buf.deinit();
|
|
for (map.kvs) |kv| try available_buf.append(kv.key);
|
|
const available_help = try std.mem.join(allocator, "|", available_buf.items);
|
|
defer allocator.free(available_help);
|
|
|
|
const generate_type: ?Generator = if (positionals.len > 0) map.get(positionals[0]) else null;
|
|
|
|
if (positionals.len > 1) {
|
|
for (positionals[1..]) |arg| try sub_args.append(arg);
|
|
}
|
|
|
|
if (other_options.help and generate_type == null) {
|
|
try args.printHelp(Options, "jetzig generate", writer);
|
|
return;
|
|
} else if (generate_type == null) {
|
|
std.debug.print("Missing sub-command. Expected: [{s}]\n", .{available_help});
|
|
return error.JetzigCommandError;
|
|
}
|
|
|
|
if (generate_type) |capture| {
|
|
return switch (capture) {
|
|
.view => view.run(allocator, cwd, sub_args.items, other_options.help),
|
|
.partial => partial.run(allocator, cwd, sub_args.items, other_options.help),
|
|
.layout => layout.run(allocator, cwd, sub_args.items, other_options.help),
|
|
.mailer => mailer.run(allocator, cwd, sub_args.items, other_options.help),
|
|
.job => job.run(allocator, cwd, sub_args.items, other_options.help),
|
|
.middleware => middleware.run(allocator, cwd, sub_args.items, other_options.help),
|
|
.secret => secret.run(allocator, cwd, sub_args.items, other_options.help),
|
|
};
|
|
}
|
|
}
|