Template-EmbeddedPerl

 view release on metacpan or  search on metacpan

lib/Template/EmbeddedPerl/Utils.pm  view on Meta::CPAN

  normalize_linefeeds
  uri_escape
  escape_javascript
  decorate_render_error
  generate_error_message
);

# uri_escape is a function from URI::Escape
# it is used to escape the uri string.
# uri_escape('http://www.google.com') => 'http%3A%2F%2Fwww.google.com'

sub uri_escape {
  my ($string) = @_;
  return URI::Escape::uri_escape($string);
}

# normalized the line endings to \n from mac and windows format.

sub normalize_linefeeds {
  my ($template) = @_;
  $template =~ s/\r\n/\n/g;
  $template =~ s/\r/\n/g;
  return $template;
}

# Create a JSON encoder
my $json = JSON::MaybeXS->new(utf8 => 0, ascii => 1, allow_nonref => 1);

# Define the escape_javascript function
sub escape_javascript {
    my ($javascript) = @_;
    return '' unless defined $javascript;

    # Encode the string as a JSON string
    my $escaped = $json->encode($javascript);

    # Remove the surrounding quotes added by JSON encoding
    $escaped =~ s/^"(.*)"$/$1/;

    # Escape additional characters not handled by JSON encoding
    $escaped =~ s/`/\\`/g;   # Escape backticks
    $escaped =~ s/\$/\\\$/g; # Escape dollar signs
    $escaped =~ s/'/\\'/g;   # Escape single quotes
    $escaped =~ s{</}{<\\/}g; # Prevent closing an enclosing script element

    return $escaped;
}

sub diagnostic_source_label {
  my ($source) = @_;
  my $label = defined($source) && length("$source") ? "$source" : 'unknown';
  $label =~ s/(?:\r\n?|\n)+/ /g;
  $label =~ tr/"/'/;
  $label =~ s/[\x00-\x1f\x7f]/?/g;
  return $label;
}

sub generate_error_message {
  my ($msg, $template, $source) = @_;

  warn "RAW MESSAGE: [$msg]" if $ENV{DEBUG_TEMPLATE_EMBEDDED_PERL};

  return $msg if _has_render_stack($msg);

  $source = diagnostic_source_label($source);

  my $text = '';
  my $has_template_location = 0;
  for my $diagnostic_line (split /(?<=\n)/, $msg) {
    my ($message, $line) = _template_location($diagnostic_line, $source);
    if (!defined $line) {
      $text .= $diagnostic_line;
      next;
    }

    $has_template_location = 1;
    $text .= "$message at $source line $line\n\n";

    $line--;
    my $start = $line -1 >= 0 ? $line -1 : 0;
    my $end = $line + 1 < scalar(@$template) ? $line + 1 : scalar(@$template) - 1;
    for my $i ($start..$end) {
      $text .= "@{[ $i+1 ]}: $template->[$i]\n";
    }
    $text .= "\n";
  }

  return $has_template_location ? $text : $msg;
}

sub _template_location {
  my ($diagnostic_line, $source) = @_;
  my $source_or_eval = qr/(?:\Q$source\E|\(eval \d+\))/;
  my ($message, $line);

  while ($diagnostic_line =~ /\s+at\s+$source_or_eval\s+line\s+(\d+)(?:\.\n?\z|,\s+at\s+EOF\n?\z)/g) {
    ($message, $line) = (substr($diagnostic_line, 0, $-[0]), $1);
  }

  return ($message, $line);
}

sub decorate_render_error {
  my ($error, $stack) = @_;

  return $error if _has_render_stack($error);
  return $error unless $stack && @$stack;

  my $separator = $error =~ /\n\z/ ? "\n" : "\n\n";
  my $render_stack = "Render stack:\n";
  for my $entry (@$stack) {
    my $kind = $entry->{kind};
    my $identifier = $entry->{identifier};
    my $source = defined($entry->{source}) && length($entry->{source})
      ? $entry->{source}
      : 'unknown';
    $render_stack .= "  $kind $identifier ($source)\n";
  }

  return $error . $separator . $render_stack;
}



( run in 1.292 second using v1.01-cache-2.11-cpan-0b58ddf2af1 )