This repository has been archived on 2022-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
dotplan-online/server.pl

193 lines
4.9 KiB
Perl
Raw Normal View History

2020-07-16 20:48:53 -05:00
#!/usr/bin/env perl
use utf8;
use strict;
use warnings;
use open qw(:std :utf8);
######################
# Server Configuration
######################
my $server_port = 4227;
2020-07-16 23:55:59 -05:00
my $pid_file = './dotplan.pid';
2020-07-16 20:48:53 -05:00
#########################################
# dotplan.online Reference Implementation
#########################################
{
package DotplanApi;
use base qw(HTTP::Server::Simple::CGI);
2020-07-16 23:55:59 -05:00
use DBD::SQLite;
use Crypt::Eksblowfish::Bcrypt qw(bcrypt_hash en_base64 de_base64);
2020-07-16 20:48:53 -05:00
use POSIX qw(strftime);
use JSON qw(encode_json decode_json);
use HTML::Entities qw(encode_entities);
###############
# Common Errors
###############
my $not_found = encode_json({error => 'Not found.'});
my $not_implemented = encode_json({error => 'Not implemented yet.'});
2020-07-16 23:55:59 -05:00
my $not_allowed = encode_json({error => 'HTTP method not supported.'});
my $resp_header = {
200 => 'OK',
404 => 'Not Found',
501 => 'Not Implemented',
405 => 'Method Not Allowed'
};
2020-07-16 20:48:53 -05:00
#################
# Request Routing
#################
sub handle_request {
my ($self, $cgi) = @_;
my $path = $cgi->path_info();
my $method = $cgi->request_method();
if ($method eq 'GET') {
2020-07-16 23:55:59 -05:00
if ($path =~ /^\/users\/([^\/]*)$/) {
validate_email($1, $cgi);
2020-07-16 20:48:53 -05:00
} elsif ($path =~ /^\/users\/([^\/]*)\/token$/) {
get_token($1, $cgi);
2020-07-16 23:55:59 -05:00
} elsif ($path =~ /^\/users\/([^\/]*)\/pwtoken$/) {
get_pwtoken($1, $cgi);
} elsif ($path =~ /^\/plan\/(.*)$/) {
get_plan($1, $cgi);
2020-07-16 20:48:53 -05:00
} else {
print_response(404, $not_found);
}
} elsif ($method eq 'POST') {
2020-07-16 23:55:59 -05:00
if ($path =~ /^\/users\/([^\/]*)$/) {
create_user($1, $cgi);
} elsif ($path =~ /^\/verify\/([^\/]*)$/) {
verify_plan($1, $cgi);
} elsif ($path =~ /^\/multi$/) {
multi_plan($cgi);
2020-07-16 20:48:53 -05:00
} else {
print_response(404, $not_found);
}
} elsif ($method eq 'PUT') {
2020-07-16 23:55:59 -05:00
if ($path =~ /^\/users\/([^\/]*)$/) {
update_password($1, $cgi);
} elsif ($path =~ /^\/plan\/(.*)$/) {
update_plan($1, $cgi);
2020-07-16 20:48:53 -05:00
} else {
print_response(404, $not_found);
}
} elsif ($method eq 'DELETE') {
if ($path =~ /^\/users\/([^\/]*)\/token$/) {
delete_token($1, $cgi);
} else {
print_response(404, $not_found);
}
} else {
2020-07-16 23:55:59 -05:00
print_response(405, $not_allowed);
2020-07-16 20:48:53 -05:00
}
}
##################
# Response Handler
##################
sub print_response {
my ($code, $body, $type) = @_;
2020-07-16 23:55:59 -05:00
my $header = $resp_header->{$code};
2020-07-16 20:48:53 -05:00
if (!defined $type) {
$type = 'application/json';
}
my $length = length($body);
my $date = strftime("%a, %d %b %Y %H:%M:%S %z", localtime(time()));
print <<EOF;
2020-07-16 23:55:59 -05:00
HTTP/1.0 $code $header
2020-07-16 20:48:53 -05:00
Server: DotplanApi
Date: $date
Content-Type: $type
Content-Length: $length
EOF
print "\n$body";
}
####################
# API Implementation
####################
2020-07-16 23:55:59 -05:00
##### POST /users/{email}
sub create_user { print_response(501, $not_implemented); }
##### GET /users/{email}?token={token}
sub validate_email { print_response(501, $not_implemented); }
##### GET /users/{email}/token
sub get_token { print_response(501, $not_implemented); }
##### DELETE /users/{email}/token
sub delete_token { print_response(501, $not_implemented); }
##### GET /users/{email}/pwtoken
sub get_pwtoken { print_response(501, $not_implemented); }
##### PUT /users/{email}
sub update_password { print_response(501, $not_implemented); }
##### PUT /plan/{email}
sub update_plan { print_response(501, $not_implemented); }
2020-07-16 20:48:53 -05:00
##### GET /plan/{email}
sub get_plan {
my ($email, $cgi) = @_;
2020-07-16 23:55:59 -05:00
my $plan = util_get_plan($email);
2020-07-16 20:48:53 -05:00
2020-07-16 23:55:59 -05:00
if (defined $plan) {
# found plan, render response
my $accept = $cgi->http('Accept');
my $format = lc($cgi->param('format') || $cgi->http('Accept'));
my $body;
if ($format eq 'json' || $format eq 'application/json') {
$format = 'application/json';
$body = encode_json($plan);
} elsif ($format eq 'html' || $format eq 'text/html') {
$format = 'text/html';
$body = encode_entities($plan->{'plan'});
} else {
$format = 'text/plain';
$body = $plan->{'plan'};
}
2020-07-16 20:48:53 -05:00
2020-07-16 23:55:59 -05:00
print_response(200, $body, $format);
2020-07-16 20:48:53 -05:00
} else {
2020-07-16 23:55:59 -05:00
print_response(404, $not_found);
2020-07-16 20:48:53 -05:00
}
}
2020-07-16 23:55:59 -05:00
##### POST /verify/{email}
sub verify_plan { print_response(501, $not_implemented); }
2020-07-16 20:48:53 -05:00
2020-07-16 23:55:59 -05:00
##### POST /multi
sub multi_plan { print_response(501, $not_implemented); }
2020-07-16 20:48:53 -05:00
2020-07-16 23:55:59 -05:00
###################
# Utility Functions
###################
2020-07-16 20:48:53 -05:00
2020-07-16 23:55:59 -05:00
sub util_get_plan {
my $email = shift;
# return {plan => 'I have no plans & aspirations in life. </sarcasm>'};
return undef;
}
2020-07-16 20:48:53 -05:00
}
# start server in background
my $pid = DotplanApi->new($server_port)->background();
2020-07-16 23:55:59 -05:00
open(my $pidout, '>', $pid_file) || die "Error writing pid: $!";
print $pidout "$pid";
close($pidout);
2020-07-16 20:48:53 -05:00
print "Use 'kill $pid' to stop server.\n";