models.register({
    name: '\u306B\u3083\u304A\u88CF',
    ICON: 'http://img.unker.org/images/favicon.ico',
    check: function (ps) {
        return /photo/.test(ps.type);
    },
    post: function (ps) {
        if (ps.file) {
            return request(
                'http://img.unker.org/picture/upload', {
                    sendContent: {
                        comment: ps.tags && ps.tags.join(' '),
                        image: ps.file
                    }
                }
            );
        } else {
            return request(
                'http://img.unker.org/picture/fetch', {
                    sendContent: {
                        comment: ps.tags && ps.tags.join(' '),
                        url: ps.itemUrl
                    }
                }
            );
        }
    }
});
