1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
|
/*
* This file is part of the MediaWiki extension MultimediaViewer.
*
* MultimediaViewer 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 2 of the License, or
* (at your option) any later version.
*
* MultimediaViewer 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 MultimediaViewer. If not, see <http://www.gnu.org/licenses/>.
*/
( function () {
var IP;
/**
* Represents information about a single image
*
* @class mw.mmv.model.Image
* @constructor
* @param {mw.Title} title
* @param {string} name Image name (e.g. title of the artwork) or human-readable file if there is no better title
* @param {number} size Filesize in bytes of the original image
* @param {number} width Width of the original image
* @param {number} height Height of the original image
* @param {string} mimeType
* @param {string} url URL to the image itself (original version)
* @param {string} descriptionUrl URL to the image description page
* @param {string} descriptionShortUrl A short URL to the description page for the image, using curid=...
* @param {string} pageID pageId of the description page for the image
* @param {string} repo The repository this image belongs to
* @param {string} uploadDateTime The time and date the last upload occurred
* @param {string} anonymizedUploadDateTime Anonymized and EL-friendly version of uploadDateTime
* @param {string} creationDateTime The time and date the original upload occurred
* @param {string} description
* @param {string} source
* @param {string} author
* @param {number} authorCount
* @param {mw.mmv.model.License} license
* @param {string} permission
* @param {string} attribution Custom attribution string that replaces credit line when set
* @param {string} deletionReason
* @param {number} latitude
* @param {number} longitude
* @param {string[]} restrictions
*/
function Image(
title,
name,
size,
width,
height,
mimeType,
url,
descriptionUrl,
descriptionShortUrl,
pageID,
repo,
uploadDateTime,
anonymizedUploadDateTime,
creationDateTime,
description,
source,
author,
authorCount,
license,
permission,
attribution,
deletionReason,
latitude,
longitude,
restrictions
) {
/** @property {mw.Title} title The title of the image file */
this.title = title;
/** @property {string} name Image name (e.g. title of the artwork) or human-readable file if there is no better title */
this.name = name;
/** @property {number} size The filesize, in bytes, of the original image */
this.size = size;
/** @property {number} width The width, in pixels, of the original image */
this.width = width;
/** @property {number} height The height, in pixels, of the original image */
this.height = height;
/** @property {string} mimeType The MIME type of the original image */
this.mimeType = mimeType;
/** @property {string} url The URL to the original image */
this.url = url;
/** @property {string} descriptionUrl The URL to the description page for the image */
this.descriptionUrl = descriptionUrl;
/** @property {string} descriptionShortUrl A short URL to the description page for the image, using curid=... */
this.descriptionShortUrl = descriptionShortUrl;
/** @property {number} pageId of the description page for the image */
this.pageID = pageID;
/** @property {string} repo The name of the repository where this image is stored */
this.repo = repo;
/** @property {string} uploadDateTime The date and time of the last upload */
this.uploadDateTime = uploadDateTime;
/** @property {string} anonymizedUploadDateTime The anonymized date and time of the last upload */
this.anonymizedUploadDateTime = anonymizedUploadDateTime;
/** @property {string} creationDateTime The date and time that the image was created */
this.creationDateTime = creationDateTime;
/** @property {string} description The description from the file page - unsafe HTML sometimes goes here */
this.description = description;
/** @property {string} source The source for the image (could be an organization, e.g.) - unsafe HTML sometimes goes here */
this.source = source;
/** @property {string} author The author of the image - unsafe HTML sometimes goes here */
this.author = author;
/** @property {number} authorCount The number of different authors of the image. This is guessed by the
* number of templates with author fields, so might be less than the number of actual authors. */
this.authorCount = authorCount;
/** @property {mw.mmv.model.License} license The license under which the image is distributed */
this.license = license;
/** @property {string} additional license conditions by the author (note that this is usually a big ugly HTML blob) */
this.permission = permission;
/** @property {string} attribution custom attribution string set by uploader that replaces credit line */
this.attribution = attribution;
/** @property {string|null} reason for pending deletion, null if image is not about to be deleted */
this.deletionReason = deletionReason;
/** @property {number} latitude The latitude of the place where the image was created */
this.latitude = latitude;
/** @property {number} longitude The longitude of the place where the image was created */
this.longitude = longitude;
/** @property {string[]} restrictions Any re-use restrictions for the image, eg trademarked */
this.restrictions = restrictions;
/**
* @property {Object} thumbUrls
* An object indexed by image widths
* with URLs to appropriately sized thumbnails
*/
this.thumbUrls = {};
}
IP = Image.prototype;
/**
* Constructs a new Image object out of an object containing
*
* imageinfo data from an API response.
*
* @static
* @param {mw.Title} title
* @param {Object} imageInfo
* @return {mw.mmv.model.Image}
*/
Image.newFromImageInfo = function ( title, imageInfo ) {
var name, uploadDateTime, anonymizedUploadDateTime, creationDateTime, imageData,
description, source, author, authorCount, license, permission, attribution,
deletionReason, latitude, longitude, restrictions,
innerInfo = imageInfo.imageinfo[ 0 ],
extmeta = innerInfo.extmetadata;
if ( extmeta ) {
creationDateTime = this.parseExtmeta( extmeta.DateTimeOriginal, 'plaintext' );
uploadDateTime = this.parseExtmeta( extmeta.DateTime, 'plaintext' ).toString();
// Convert to "timestamp" format commonly used in EventLogging
anonymizedUploadDateTime = uploadDateTime.replace( /[^\d]/g, '' );
// Anonymise the timestamp to avoid making the file identifiable
// We only need to know the day
anonymizedUploadDateTime = anonymizedUploadDateTime.substr( 0, anonymizedUploadDateTime.length - 6 ) + '000000';
name = this.parseExtmeta( extmeta.ObjectName, 'plaintext' );
description = this.parseExtmeta( extmeta.ImageDescription, 'string' );
source = this.parseExtmeta( extmeta.Credit, 'string' );
author = this.parseExtmeta( extmeta.Artist, 'string' );
authorCount = this.parseExtmeta( extmeta.AuthorCount, 'integer' );
license = this.newLicenseFromImageInfo( extmeta );
permission = this.parseExtmeta( extmeta.Permission, 'string' );
attribution = this.parseExtmeta( extmeta.Attribution, 'string' );
deletionReason = this.parseExtmeta( extmeta.DeletionReason, 'string' );
restrictions = this.parseExtmeta( extmeta.Restrictions, 'list' );
latitude = this.parseExtmeta( extmeta.GPSLatitude, 'float' );
longitude = this.parseExtmeta( extmeta.GPSLongitude, 'float' );
}
if ( !name ) {
name = title.getNameText();
}
imageData = new Image(
title,
name,
innerInfo.size,
innerInfo.width,
innerInfo.height,
innerInfo.mime,
innerInfo.url,
innerInfo.descriptionurl,
innerInfo.descriptionshorturl,
imageInfo.pageid,
imageInfo.imagerepository,
uploadDateTime,
anonymizedUploadDateTime,
creationDateTime,
description,
source,
author,
authorCount,
license,
permission,
attribution,
deletionReason,
latitude,
longitude,
restrictions
);
if ( innerInfo.thumburl ) {
imageData.addThumbUrl(
innerInfo.thumbwidth,
innerInfo.thumburl
);
}
return imageData;
};
/**
* Constructs a new License object out of an object containing
* imageinfo data from an API response.
*
* @static
* @param {Object} extmeta the extmeta array of the imageinfo data
* @return {mw.mmv.model.License|undefined}
*/
Image.newLicenseFromImageInfo = function ( extmeta ) {
var license;
if ( extmeta.LicenseShortName ) {
license = new mw.mmv.model.License(
this.parseExtmeta( extmeta.LicenseShortName, 'string' ),
this.parseExtmeta( extmeta.License, 'string' ),
this.parseExtmeta( extmeta.UsageTerms, 'string' ),
this.parseExtmeta( extmeta.LicenseUrl, 'string' ),
this.parseExtmeta( extmeta.AttributionRequired, 'boolean' ),
this.parseExtmeta( extmeta.NonFree, 'boolean' )
);
}
return license;
};
/**
* Reads and parses a value from the imageinfo API extmetadata field.
*
* @param {Array} data
* @param {string} type one of 'plaintext', 'string', 'float', 'boolean', 'list'
* @return {string|number|boolean|Array} value or undefined if it is missing
*/
Image.parseExtmeta = function ( data, type ) {
var value = data && data.value;
if ( value === null || value === undefined ) {
return undefined;
} else if ( type === 'plaintext' ) {
return value.toString().replace( /<.*?>/g, '' );
} else if ( type === 'string' ) {
return value.toString();
} else if ( type === 'integer' ) {
return parseInt( value, 10 );
} else if ( type === 'float' ) {
return parseFloat( value );
} else if ( type === 'boolean' ) {
value = value.toString().toLowerCase().replace( /^\s+|\s+$/g, '' );
if ( value in { 1: null, yes: null, true: null } ) {
return true;
} else if ( value in { 0: null, no: null, false: null } ) {
return false;
} else {
return undefined;
}
} else if ( type === 'list' ) {
return value === '' ? [] : value.split( '|' );
} else {
throw new Error( 'mw.mmv.model.Image.parseExtmeta: unknown type' );
}
};
/**
* Add a thumb URL
*
* @param {number} width
* @param {string} url
*/
IP.addThumbUrl = function ( width, url ) {
this.thumbUrls[ width ] = url;
};
/**
* Get a thumb URL if we have it.
*
* @param {number} width
* @return {string|undefined}
*/
IP.getThumbUrl = function ( width ) {
return this.thumbUrls[ width ];
};
/**
* Check whether the image has geolocation data.
*
* @return {boolean}
*/
IP.hasCoords = function () {
return this.latitude !== undefined && this.latitude !== null &&
this.longitude !== undefined && this.longitude !== null;
};
mw.mmv.model.Image = Image;
}() );
|