Skip to content

Commit

Permalink
Unix data expression (#2675)
Browse files Browse the repository at this point in the history
* Create ExprUnixDate.java

* Create ExprUnixDate.sk
  • Loading branch information
Whimsyturtle authored and bensku committed Jan 10, 2020
1 parent 1726477 commit 84f928d
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 0 deletions.
57 changes: 57 additions & 0 deletions src/main/java/ch/njol/skript/expressions/ExprUnixDate.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/**
* This file is part of Skript.
*
* Skript is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Skript is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Skript. If not, see <http://www.gnu.org/licenses/>.
*
*
* Copyright 2011-2017 Peter Güttinger and contributors
*/
package ch.njol.skript.expressions;

import org.eclipse.jdt.annotation.Nullable;

import ch.njol.skript.doc.Description;
import ch.njol.skript.doc.Examples;
import ch.njol.skript.doc.Name;
import ch.njol.skript.doc.Since;
import ch.njol.skript.expressions.base.SimplePropertyExpression;
import ch.njol.skript.util.Date;

@Name("Unix Date")
@Description("Converts given Unix timestamp to a date. The Unix timespan represents the number of seconds elapsed since 1 January 1970.")
@Examples("unix date of 946684800 #1 January 2000 12:00 AM (UTC Time)")
@Since("INSERT VERSION")
public class ExprUnixDate extends SimplePropertyExpression<Number, Date> {

static {
register(ExprUnixDate.class, Date.class, "unix date", "numbers");
}

@Override
@Nullable
public Date convert(Number n) {
return new Date((long)(n.doubleValue() * 1000));
}

@Override
protected String getPropertyName() {
return "unix date";
}

@Override
public Class<? extends Date> getReturnType() {
return Date.class;
}

}
3 changes: 3 additions & 0 deletions src/test/skript/tests/syntaxes/expressions/ExprUnixDate.sk
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
test "unix date":
set {_now} to now
assert unix date of (unix timestamp of {_now}) is {_now} with "unix date failed"

0 comments on commit 84f928d

Please sign in to comment.